2023-05-11 18:40:17 +05:30
|
|
|
export const THEMES = ["light", "dark", "light-contrast", "dark-contrast", "custom"];
|
2023-04-20 13:41:24 +05:30
|
|
|
|
2023-10-17 12:46:38 +05:30
|
|
|
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 15:28:22 +05:30
|
|
|
{
|
|
|
|
|
value: "system",
|
|
|
|
|
label: "System Preference",
|
|
|
|
|
type: "light",
|
|
|
|
|
icon: {
|
|
|
|
|
border: "#DEE2E6",
|
|
|
|
|
color1: "#FAFAFA",
|
|
|
|
|
color2: "#3F76FF",
|
|
|
|
|
},
|
|
|
|
|
},
|
2023-04-20 13:41:24 +05:30
|
|
|
{
|
|
|
|
|
value: "light",
|
|
|
|
|
label: "Light",
|
|
|
|
|
type: "light",
|
2023-05-11 18:40:17 +05:30
|
|
|
icon: {
|
|
|
|
|
border: "#DEE2E6",
|
|
|
|
|
color1: "#FAFAFA",
|
|
|
|
|
color2: "#3F76FF",
|
|
|
|
|
},
|
2023-04-20 13:41:24 +05:30
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: "dark",
|
|
|
|
|
label: "Dark",
|
|
|
|
|
type: "dark",
|
2023-05-11 18:40:17 +05:30
|
|
|
icon: {
|
|
|
|
|
border: "#2E3234",
|
|
|
|
|
color1: "#191B1B",
|
|
|
|
|
color2: "#3C85D9",
|
|
|
|
|
},
|
2023-04-20 13:41:24 +05:30
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: "light-contrast",
|
|
|
|
|
label: "Light High Contrast",
|
|
|
|
|
type: "light",
|
2023-05-11 18:40:17 +05:30
|
|
|
icon: {
|
|
|
|
|
border: "#000000",
|
|
|
|
|
color1: "#FFFFFF",
|
|
|
|
|
color2: "#3F76FF",
|
|
|
|
|
},
|
2023-04-20 13:41:24 +05:30
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: "dark-contrast",
|
|
|
|
|
label: "Dark High Contrast",
|
|
|
|
|
type: "dark",
|
2023-05-11 18:40:17 +05:30
|
|
|
icon: {
|
|
|
|
|
border: "#FFFFFF",
|
|
|
|
|
color1: "#030303",
|
|
|
|
|
color2: "#3A8BE9",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: "custom",
|
2023-07-17 16:28:23 +05:30
|
|
|
label: "Custom Theming",
|
2023-05-11 18:40:17 +05:30
|
|
|
type: "light",
|
|
|
|
|
icon: {
|
|
|
|
|
border: "#FFC9C9",
|
|
|
|
|
color1: "#FFF7F7",
|
|
|
|
|
color2: "#FF5151",
|
|
|
|
|
},
|
2023-04-20 13:41:24 +05:30
|
|
|
},
|
|
|
|
|
];
|