Created
April 25, 2021 02:14
-
-
Save mrmrs/e260c383f96d50a0c64fddb49d012fb8 to your computer and use it in GitHub Desktop.
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
const theme = {` | |
breakpoints: [ 36, 48, 64 ], | |
fontFamily:[ '"Gotham", "Avenir Next", "Proxima Nova", "Helvetica"' ], | |
fontSize: [ | |
12, 14, 16, 20, 24, 32, 48, 64, 96, 128 | |
], | |
fontWeight: [ 400, 600, 700 ], | |
lineHeight: [ 1, 1.25, 1.5 ], | |
colors: [ | |
{ text: "#000", bg: "#fff" }, | |
{ text: "#374047", bg: "#f8f9f9" }, | |
{ text: "#7f8a93", bg: "#f8f9f9" }, | |
{ text: "#0077cc", bg: "#f8f9f9" }, | |
{ text: "#005da0", bg: "#f8f9f9" }, | |
{ text: "#00365d", bg: "#f8f9f9" }, | |
{ text: "#00a243", bg: "#fff" }, | |
], | |
borderStyle: [ | |
'solid', | |
'double', | |
'dotted' | |
], | |
borderWidth: [ 0, 1, 2, 4 ], | |
borderDirection: [ | |
'all', | |
'top', | |
'bottom' | |
], | |
radii: [ | |
0, 3, 5, 17, 9999 | |
], | |
space: [ | |
0, 2, 4, 8, 16, 32, 64, 128, 256, 512 | |
], | |
measure: [ '20em', '30em', '34em' ], | |
boxShadow: [ '0 0 16px rgba(0,0,0,.2)' ], | |
} | |
export default theme |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment