Files
yaak-mountain-loop/src-web/lib/theme/themes.ts
Gregory Schier 671885fc8c More themes!
2024-05-23 09:40:11 -07:00

19 lines
502 B
TypeScript

import { catppuccin } from './themes/catppuccin';
import { github } from './themes/github';
import { monokaiPro } from './themes/monokai-pro';
import { relaxing } from './themes/relaxing';
import { rosePine } from './themes/rose-pine';
import { yaak, yaakDark, yaakLight } from './themes/yaak';
export const yaakThemes = [
...yaak,
...catppuccin,
...relaxing,
...rosePine,
...github,
...monokaiPro,
];
export const defaultDarkTheme = yaakDark;
export const defaultLightTheme = yaakLight;