27 lines
546 B
JavaScript
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;
|