mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-23 09:08:32 +02:00
2024.5.0 (#39)
This commit is contained in:
22
src-web/lib/theme/themes.ts
Normal file
22
src-web/lib/theme/themes.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
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,
|
||||
];
|
||||
Reference in New Issue
Block a user