Created
October 29, 2020 09:30
-
-
Save shadcn/b2c3ecee900c74fe11ff827b7511a492 to your computer and use it in GitHub Desktop.
Custom theme for Reflex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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