2023-05-11 13:10:17 +00:00
|
|
|
export const THEMES = ["light", "dark", "light-contrast", "dark-contrast", "custom"];
|
2023-04-20 08:11:24 +00:00
|
|
|
|
2023-10-17 07:16:38 +00:00
|
|
|
export interface I_THEME_OPTION {
|
|
|
|
value: string;
|
|
|
|
label: string;
|
|
|
|
type: string;
|
|
|
|
icon: {
|
|
|
|
border: string;
|
|
|
|
color1: string;
|
|
|
|
color2: string;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export const THEME_OPTIONS: I_THEME_OPTION[] = [
|
2023-08-03 09:58:22 +00:00
|
|
|
{
|
|
|
|
value: "system",
|
|
|
|
label: "System Preference",
|
|
|
|
type: "light",
|
|
|
|
icon: {
|
|
|
|
border: "#DEE2E6",
|
|
|
|
color1: "#FAFAFA",
|
|
|
|
color2: "#3F76FF",
|
|
|
|
},
|
|
|
|
},
|
2023-04-20 08:11:24 +00:00
|
|
|
{
|
|
|
|
value: "light",
|
|
|
|
label: "Light",
|
|
|
|
type: "light",
|
2023-05-11 13:10:17 +00:00
|
|
|
icon: {
|
|
|
|
border: "#DEE2E6",
|
|
|
|
color1: "#FAFAFA",
|
|
|
|
color2: "#3F76FF",
|
|
|
|
},
|
2023-04-20 08:11:24 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
value: "dark",
|
|
|
|
label: "Dark",
|
|
|
|
type: "dark",
|
2023-05-11 13:10:17 +00:00
|
|
|
icon: {
|
|
|
|
border: "#2E3234",
|
|
|
|
color1: "#191B1B",
|
|
|
|
color2: "#3C85D9",
|
|
|
|
},
|
2023-04-20 08:11:24 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
value: "light-contrast",
|
|
|
|
label: "Light High Contrast",
|
|
|
|
type: "light",
|
2023-05-11 13:10:17 +00:00
|
|
|
icon: {
|
|
|
|
border: "#000000",
|
|
|
|
color1: "#FFFFFF",
|
|
|
|
color2: "#3F76FF",
|
|
|
|
},
|
2023-04-20 08:11:24 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
value: "dark-contrast",
|
|
|
|
label: "Dark High Contrast",
|
|
|
|
type: "dark",
|
2023-05-11 13:10:17 +00:00
|
|
|
icon: {
|
|
|
|
border: "#FFFFFF",
|
|
|
|
color1: "#030303",
|
|
|
|
color2: "#3A8BE9",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: "custom",
|
2023-07-17 10:58:23 +00:00
|
|
|
label: "Custom Theming",
|
2023-05-11 13:10:17 +00:00
|
|
|
type: "light",
|
|
|
|
icon: {
|
|
|
|
border: "#FFC9C9",
|
|
|
|
color1: "#FFF7F7",
|
|
|
|
color2: "#FF5151",
|
|
|
|
},
|
2023-04-20 08:11:24 +00:00
|
|
|
},
|
|
|
|
];
|