fix: Add Missing Themes Moonlight & Dracula (#133)

Signed-off-by: Bad3r <bad3r@pm.me>
This commit is contained in:
Bad3r
2024-12-03 17:57:33 +03:00
committed by GitHub
parent e1363cf151
commit f8efd1a31a

View File

@@ -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,
];