aboutsummaryrefslogtreecommitdiff
path: root/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes.js
diff options
context:
space:
mode:
Diffstat (limited to 'users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes.js')
-rwxr-xr-xusers/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes.js72
1 files changed, 72 insertions, 0 deletions
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes.js b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes.js
new file mode 100755
index 0000000..ff5a24c
--- /dev/null
+++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes.js
@@ -0,0 +1,72 @@
1import * as NightShiftDark from "./themes/night-shift-dark";
2import * as NightShiftLight from "./themes/night-shift-light";
3import * as MacOSDark from "./themes/mac-os-dark";
4import * as MacOSLight from "./themes/mac-os-light";
5import * as OneDark from "./themes/one-dark";
6import * as OneLight from "./themes/one-light";
7import * as GruvboxDark from "./themes/gruvbox-dark";
8import * as GruvboxLight from "./themes/gruvbox-light";
9import * as GruvboxMaterial from "./themes/gruvbox-material";
10import * as Dracula from "./themes/dracula";
11import * as Nord from "./themes/nord";
12import * as Amarena from "./themes/amarena";
13import * as SolarizedLight from "./themes/solarized-light";
14import * as SolarizedDark from "./themes/solarized-dark";
15import * as Cisco from "./themes/cisco";
16import * as Sylens from "./themes/sylens";
17import * as SpaceDuck from "./themes/spaceduck";
18import * as MidsummerNightDark from "./themes/midsummer-night-dark";
19import * as CatppuccinOld from "./themes/catppuccin";
20import * as CatppuccinLatte from "./themes/catppuccin-latte.js";
21import * as CatppuccinFrappe from "./themes/catppuccin-frappe.js";
22import * as CatppuccinMacchiato from "./themes/catppuccin-macchiato.js";
23import * as CatppuccinMocha from "./themes/catppuccin-mocha.js";
24import * as TokyoNight from "./themes/tokyo-night";
25import * as MaterialOcean from "./themes/material-ocean";
26import * as NightOwl from "./themes/night-owl";
27import * as NightfoxDark from "./themes/nightfox-dark";
28import * as NightfoxLight from "./themes/nightfox-light";
29import * as VscodeDarkModern from "./themes/vscode-dark-modern";
30import * as RosePine from "./themes/rose-pine";
31import * as RosePineMoon from "./themes/rose-pine-moon";
32import * as RosePineDawn from "./themes/rose-pine-dawn";
33import * as CyberdreamLight from "./themes/cyberdream-light.js";
34import * as CyberdreamDark from "./themes/cyberdream-dark.js";
35
36// Entire collection of themes available in simple-bar
37export const collection = {
38 NightShiftDark: NightShiftDark.theme,
39 NightShiftLight: NightShiftLight.theme,
40 MacOSDark: MacOSDark.theme,
41 MacOSLight: MacOSLight.theme,
42 OneDark: OneDark.theme,
43 OneLight: OneLight.theme,
44 GruvboxDark: GruvboxDark.theme,
45 GruvboxLight: GruvboxLight.theme,
46 GruvboxMaterial: GruvboxMaterial.theme,
47 Dracula: Dracula.theme,
48 Nord: Nord.theme,
49 Amarena: Amarena.theme,
50 SolarizedLight: SolarizedLight.theme,
51 SolarizedDark: SolarizedDark.theme,
52 Cisco: Cisco.theme,
53 Sylens: Sylens.theme,
54 SpaceDuck: SpaceDuck.theme,
55 MidsummerNightDark: MidsummerNightDark.theme,
56 Catppuccin: CatppuccinOld.theme,
57 CatppuccinLatte: CatppuccinLatte.theme,
58 CatppuccinFrappe: CatppuccinFrappe.theme,
59 CatppuccinMacchiato: CatppuccinMacchiato.theme,
60 CatppuccinMocha: CatppuccinMocha.theme,
61 TokyoNight: TokyoNight.theme,
62 MaterialOcean: MaterialOcean.theme,
63 NightOwl: NightOwl.theme,
64 NightfoxDark: NightfoxDark.theme,
65 NightfoxLight: NightfoxLight.theme,
66 VscodeDarkModern: VscodeDarkModern.theme,
67 RosePine: RosePine.theme,
68 RosePineMoon: RosePineMoon.theme,
69 RosePineDawn: RosePineDawn.theme,
70 CyberdreamLight: CyberdreamLight.theme,
71 CyberdreamDark: CyberdreamDark.theme,
72};