From f8efd1a31ad305ca45fc3ef08c1e183f58009c37 Mon Sep 17 00:00:00 2001 From: Bad3r Date: Tue, 3 Dec 2024 17:57:33 +0300 Subject: [PATCH] fix: Add Missing Themes Moonlight & Dracula (#133) Signed-off-by: Bad3r --- src-web/lib/theme/themes.ts | 4 ++++ 1 file changed, 4 insertions(+) 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, ];