Skip to content

Instantly share code, notes, and snippets.

@shadcn
Created October 29, 2020 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shadcn/b2c3ecee900c74fe11ff827b7511a492 to your computer and use it in GitHub Desktop.
Save shadcn/b2c3ecee900c74fe11ff827b7511a492 to your computer and use it in GitHub Desktop.
Custom theme for Reflex
import { merge } from "theme-ui"
import base from "@reflexjs/preset-base"
export default merge(base, {
colors: {
text: "#000",
background: "#fff",
primary: "#2a9d8f",
secondary: "#e76f51",
},
fonts: {
body: '"Segoe UI", Roboto, "Helvetica Neue", sans-serif',
heading: "Georgia, serif",
monospace: "Menlo, monospace",
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment