feat: dark/light theming with emotion

This commit is contained in:
Kyle Gill
2019-03-27 21:45:55 -06:00
parent 043acd30cf
commit 49bb678bfa
9 changed files with 140 additions and 25 deletions

22
src/styles/theme.js Normal file
View File

@@ -0,0 +1,22 @@
const theme = {
LIGHT: {
colors: {
primary: "#2E3136",
secondary: "#999",
tertiary: "#C4C4C4",
quarternary: "#EAEAEA",
background: "#FAFBFC"
}
},
DARK: {
colors: {
primary: "#F3F6F8",
secondary: "#9Ba3B0",
tertiary: "#6F7682",
quarternary: "#3E4B62",
background: "#2E3136"
}
}
};
export default theme;