mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-17 00:56:37 +01:00
21 lines
573 B
TypeScript
21 lines
573 B
TypeScript
import { catppuccin } from './themes/catppuccin';
|
|
import { github } from './themes/github';
|
|
import { hotdogStand } from './themes/hotdog-stand';
|
|
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 defaultDarkTheme = yaakDark;
|
|
export const defaultLightTheme = yaakLight;
|
|
|
|
export const yaakThemes = [
|
|
...yaak,
|
|
...catppuccin,
|
|
...relaxing,
|
|
...rosePine,
|
|
...github,
|
|
...monokaiPro,
|
|
...hotdogStand,
|
|
];
|