From e010f835963ae4bc3799459f01fcdfe92413968a Mon Sep 17 00:00:00 2001 From: James Brumond Date: Sat, 6 May 2023 19:39:24 -0700 Subject: [PATCH] add list of themes --- index.ts | 5 +++++ 1 file changed, 5 insertions(+) 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'