Files
sol-journal/src/styles/theme.js
2019-03-27 22:30:07 -06:00

27 lines
546 B
JavaScript

const theme = {
LIGHT: {
colors: {
primary: "#2E3136",
secondary: "#999",
tertiary: "#C4C4C4",
quarternary: "#EAEAEA",
headerBackground: "#FAFBFC",
bodyBackground: "#FFF",
hover: "hsla(233, 5%, 31%, 0.12)"
}
},
DARK: {
colors: {
primary: "#F3F6F8",
secondary: "#9Ba3B0",
tertiary: "#6F7682",
quarternary: "#3E4B62",
headerBackground: "#272f3d",
bodyBackground: "#262B34",
hover: "hsla(233, 100%, 96%, 0.12)"
}
}
};
export default theme;