plane/app/constants/themes.ts

36 lines
530 B
TypeScript
Raw Permalink Normal View History

2023-04-21 23:30:36 +00:00
export const THEMES = [
"light",
"dark",
"light-contrast",
"dark-contrast",
// "custom"
];
export const THEMES_OBJ = [
{
value: "light",
label: "Light",
type: "light",
},
{
value: "dark",
label: "Dark",
type: "dark",
},
{
value: "light-contrast",
label: "Light High Contrast",
type: "light",
},
{
value: "dark-contrast",
label: "Dark High Contrast",
type: "dark",
},
// {
// value: "custom",
// label: "Custom",
// type: "light",
// },
];