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 };