diff --git a/src-web/lib/theme/themes.ts b/src-web/lib/theme/themes.ts index cce894f3..14acf7ed 100644 --- a/src-web/lib/theme/themes.ts +++ b/src-web/lib/theme/themes.ts @@ -1,9 +1,11 @@ import type { Appearance } from './appearance'; import { resolveAppearance } from './appearance'; import { catppuccin } from './themes/catppuccin'; +import { dracula } from './themes/dracula'; import { github } from './themes/github'; import { hotdogStand } from './themes/hotdog-stand'; import { monokaiPro } from './themes/monokai-pro'; +import { moonlight } from './themes/moonlight'; import { relaxing } from './themes/relaxing'; import { rosePine } from './themes/rose-pine'; import { yaak, yaakDark, yaakLight } from './themes/yaak'; @@ -15,10 +17,12 @@ export const defaultLightTheme = yaakLight; const allThemes = [ ...yaak, ...catppuccin, + ...dracula, ...relaxing, ...rosePine, ...github, ...monokaiPro, + ...moonlight, ...hotdogStand, ];