Files
yaak/src-web/lib/theme/themes.ts
Gregory Schier 16739d9a37 Dracula theme
2024-05-30 11:56:57 -07:00

23 lines
634 B
TypeScript

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 { rosePine } from './themes/rose-pine';
import { yaak, yaakDark, yaakLight } from './themes/yaak';
export const defaultDarkTheme = yaakDark;
export const defaultLightTheme = yaakLight;
export const yaakThemes = [
...yaak,
...catppuccin,
...rosePine,
...monokaiPro,
...github,
...moonlight,
...dracula,
...hotdogStand,
];