add list of themes

This commit is contained in:
James Brumond 2023-05-06 19:39:24 -07:00
parent 61e7a08c3f
commit e010f83596
Signed by: james
GPG Key ID: E8F2FC44BAA3357A

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'