1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
import * as NightShiftDark from "./themes/night-shift-dark";
import * as NightShiftLight from "./themes/night-shift-light";
import * as MacOSDark from "./themes/mac-os-dark";
import * as MacOSLight from "./themes/mac-os-light";
import * as OneDark from "./themes/one-dark";
import * as OneLight from "./themes/one-light";
import * as GruvboxDark from "./themes/gruvbox-dark";
import * as GruvboxLight from "./themes/gruvbox-light";
import * as GruvboxMaterial from "./themes/gruvbox-material";
import * as Dracula from "./themes/dracula";
import * as Nord from "./themes/nord";
import * as Amarena from "./themes/amarena";
import * as SolarizedLight from "./themes/solarized-light";
import * as SolarizedDark from "./themes/solarized-dark";
import * as Cisco from "./themes/cisco";
import * as Sylens from "./themes/sylens";
import * as SpaceDuck from "./themes/spaceduck";
import * as MidsummerNightDark from "./themes/midsummer-night-dark";
import * as CatppuccinOld from "./themes/catppuccin";
import * as CatppuccinLatte from "./themes/catppuccin-latte.js";
import * as CatppuccinFrappe from "./themes/catppuccin-frappe.js";
import * as CatppuccinMacchiato from "./themes/catppuccin-macchiato.js";
import * as CatppuccinMocha from "./themes/catppuccin-mocha.js";
import * as TokyoNight from "./themes/tokyo-night";
import * as MaterialOcean from "./themes/material-ocean";
import * as NightOwl from "./themes/night-owl";
import * as NightfoxDark from "./themes/nightfox-dark";
import * as NightfoxLight from "./themes/nightfox-light";
import * as VscodeDarkModern from "./themes/vscode-dark-modern";
import * as RosePine from "./themes/rose-pine";
import * as RosePineMoon from "./themes/rose-pine-moon";
import * as RosePineDawn from "./themes/rose-pine-dawn";
import * as CyberdreamLight from "./themes/cyberdream-light.js";
import * as CyberdreamDark from "./themes/cyberdream-dark.js";
// Entire collection of themes available in simple-bar
export const collection = {
NightShiftDark: NightShiftDark.theme,
NightShiftLight: NightShiftLight.theme,
MacOSDark: MacOSDark.theme,
MacOSLight: MacOSLight.theme,
OneDark: OneDark.theme,
OneLight: OneLight.theme,
GruvboxDark: GruvboxDark.theme,
GruvboxLight: GruvboxLight.theme,
GruvboxMaterial: GruvboxMaterial.theme,
Dracula: Dracula.theme,
Nord: Nord.theme,
Amarena: Amarena.theme,
SolarizedLight: SolarizedLight.theme,
SolarizedDark: SolarizedDark.theme,
Cisco: Cisco.theme,
Sylens: Sylens.theme,
SpaceDuck: SpaceDuck.theme,
MidsummerNightDark: MidsummerNightDark.theme,
Catppuccin: CatppuccinOld.theme,
CatppuccinLatte: CatppuccinLatte.theme,
CatppuccinFrappe: CatppuccinFrappe.theme,
CatppuccinMacchiato: CatppuccinMacchiato.theme,
CatppuccinMocha: CatppuccinMocha.theme,
TokyoNight: TokyoNight.theme,
MaterialOcean: MaterialOcean.theme,
NightOwl: NightOwl.theme,
NightfoxDark: NightfoxDark.theme,
NightfoxLight: NightfoxLight.theme,
VscodeDarkModern: VscodeDarkModern.theme,
RosePine: RosePine.theme,
RosePineMoon: RosePineMoon.theme,
RosePineDawn: RosePineDawn.theme,
CyberdreamLight: CyberdreamLight.theme,
CyberdreamDark: CyberdreamDark.theme,
};
|