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, };