diff --git a/index.ts b/index.ts index ed4f848..49ef922 100644 --- a/index.ts +++ b/index.ts @@ -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'