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", // }, ];