add list of themes

This commit is contained in:
2023-05-06 19:39:24 -07:00
parent 61e7a08c3f
commit e010f83596

View File

@@ -20,6 +20,11 @@ export function validate_theme(theme: unknown) : asserts theme is ColorTheme {
// todo: validate
}
export const themes = [
'Minimal Dark',
'Minimal Light',
];
export type ColorThemeLabel
= 'light'
| 'dark'