Created
November 18, 2016 21:37
-
-
Save carl0zen/891d2f20f65f16bfb7c17a0e0afd4e16 to your computer and use it in GitHub Desktop.
Global Theme
This file contains 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
export const theme = { | |
color: { | |
primary: "#47C51D", | |
secondary: '#53C1DE', | |
white: "#FFF", | |
black: "#222", | |
border: "rgba(0,0,0,0.1)", | |
base: "rgba(0,0,0,0.4)", | |
alert: '#FF4258', | |
success: 'mediumseagreen', | |
info: '#4C98E6', | |
link: '#41bbe1' | |
}, | |
icon: { | |
color: "gray", | |
size: "15px" | |
}, | |
font: { | |
family: ` | |
-apple-system, | |
BlinkMacSystemFont, | |
'Segoe UI', | |
Roboto, | |
Helvetica, | |
Arial, | |
sans-serif, | |
'Apple Color Emoji', | |
'Segoe UI Emoji', | |
'Segoe UI Symbol'`, | |
base: '13px', | |
small: '11px', | |
xsmall: '9px', | |
large: '20px', | |
xlarge: '30px', | |
xxlarge: '50px', | |
}, | |
headings: { | |
family: 'Helvetica Neue', | |
}, | |
gutter: '2em', | |
transition: '300ms ease-in-out' | |
}; | |
export default theme; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment