mirror of
https://dev.azure.com/tstanciu94/Packages/_git/standard-cv
synced 2025-08-10 18:32:25 +03:00
30 lines
463 B
JavaScript
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 };
|