mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-24 09:48:28 +02:00
More themes!
This commit is contained in:
20
src-web/lib/theme/themes/relaxing.ts
Normal file
20
src-web/lib/theme/themes/relaxing.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import { Color } from '../color';
|
||||
import type { YaakTheme } from '../window';
|
||||
|
||||
const relaxingDefault: YaakTheme = {
|
||||
name: 'Relaxing',
|
||||
id: 'relaxing',
|
||||
background: new Color('#2b1e3b', 'dark'),
|
||||
foreground: new Color('#ede2f5', 'dark'),
|
||||
colors: {
|
||||
primary: new Color('#cba6f7', 'dark'),
|
||||
secondary: new Color('#bac2de', 'dark'),
|
||||
info: new Color('#89b4fa', 'dark'),
|
||||
success: new Color('#a6e3a1', 'dark'),
|
||||
notice: new Color('#f9e2af', 'dark'),
|
||||
warning: new Color('#fab387', 'dark'),
|
||||
danger: new Color('#f38ba8', 'dark'),
|
||||
},
|
||||
};
|
||||
|
||||
export const relaxing = [relaxingDefault];
|
||||
Reference in New Issue
Block a user