Massive/options.ts
Brandon Presley f778426aba Run prettier
Something happened with the deno formatter,
I can't remember what! Hahahahahaahahaha
2023-08-12 15:23:02 +12:00

20 lines
448 B
TypeScript

import { darkColors, lightColors } from "./colors";
export const themeOptions = [
{ label: "System", value: "system" },
{ label: "Dark", value: "dark" },
{ label: "Light", value: "light" },
];
export const lightOptions = lightColors.map((color) => ({
label: color.name,
value: color.hex,
color: color.hex,
}));
export const darkOptions = darkColors.map((color) => ({
label: color.name,
value: color.hex,
color: color.hex,
}));