standard-cv/src/theme/constants.js
2022-09-07 19:34:36 +03:00

30 lines
463 B
JavaScript

const theme = {
TURQUOISE: "turquoise",
BLUE: "blue",
GREEN: "green",
BROWN: "brown",
ORANGE: "orange",
PURPLE: "purple",
PINK: "pink",
CORAL: "coral",
NUDE: "nude",
RAINBOW: "rainbow"
};
const themes = [
theme.TURQUOISE,
theme.BLUE,
theme.GREEN,
theme.BROWN,
theme.ORANGE,
theme.PURPLE,
theme.PINK,
theme.CORAL,
theme.NUDE,
theme.RAINBOW
];
const defaultTheme = theme.TURQUOISE;
export { defaultTheme, theme, themes };