Created
February 9, 2019 16:16
-
-
Save carlrip/5c09d41b92f592a31afd87e8d8ab2b9d to your computer and use it in GitHub Desktop.
Playing with styled components - global style variable
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
| // Grays | |
| export const gray1 = '#383737'; | |
| export const gray2 = '#565555'; | |
| export const gray3 = '#857c81'; | |
| export const gray4 = '#b9b9b9'; | |
| export const gray5 = '#e0dddd'; | |
| // Colors | |
| export const primary1 = '#6ca583'; | |
| export const accent1 = '#9b8dab'; | |
| // Fonts | |
| export const fontFamily = "'Segoe UI', 'Helvetica Neue',sansserif"; | |
| export const fontSize = '15px'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment