Last active
October 29, 2018 06:57
-
-
Save LironHazan/902327a9e4df68d61f66968f3295d8c3 to your computer and use it in GitHub Desktop.
for a medium post about css vars
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
export const themes = { | |
oceanBlueThemProps : { | |
'--background' : 'aliceblue', | |
'--text-color': '#0F0F0F', | |
'--tasks-background': 'cornflowerblue' | |
}, | |
deepPurpleThemProps: { | |
'--background' : 'purple', | |
'--text-color': 'whitesmoke', | |
'--tasks-background': 'rebeccapurple' | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment