users/ryan/modules/simple-bar/simple-bar-source/lib/styles/themes.js
0fcaad38a78d872e8e7fee332986d7b1efc05bb7
· 3.1 KB · 72 lines
raw
| 1 | import * as NightShiftDark from "./themes/night-shift-dark"; |
| 2 | import * as NightShiftLight from "./themes/night-shift-light"; |
| 3 | import * as MacOSDark from "./themes/mac-os-dark"; |
| 4 | import * as MacOSLight from "./themes/mac-os-light"; |
| 5 | import * as OneDark from "./themes/one-dark"; |
| 6 | import * as OneLight from "./themes/one-light"; |
| 7 | import * as GruvboxDark from "./themes/gruvbox-dark"; |
| 8 | import * as GruvboxLight from "./themes/gruvbox-light"; |
| 9 | import * as GruvboxMaterial from "./themes/gruvbox-material"; |
| 10 | import * as Dracula from "./themes/dracula"; |
| 11 | import * as Nord from "./themes/nord"; |
| 12 | import * as Amarena from "./themes/amarena"; |
| 13 | import * as SolarizedLight from "./themes/solarized-light"; |
| 14 | import * as SolarizedDark from "./themes/solarized-dark"; |
| 15 | import * as Cisco from "./themes/cisco"; |
| 16 | import * as Sylens from "./themes/sylens"; |
| 17 | import * as SpaceDuck from "./themes/spaceduck"; |
| 18 | import * as MidsummerNightDark from "./themes/midsummer-night-dark"; |
| 19 | import * as CatppuccinOld from "./themes/catppuccin"; |
| 20 | import * as CatppuccinLatte from "./themes/catppuccin-latte.js"; |
| 21 | import * as CatppuccinFrappe from "./themes/catppuccin-frappe.js"; |
| 22 | import * as CatppuccinMacchiato from "./themes/catppuccin-macchiato.js"; |
| 23 | import * as CatppuccinMocha from "./themes/catppuccin-mocha.js"; |
| 24 | import * as TokyoNight from "./themes/tokyo-night"; |
| 25 | import * as MaterialOcean from "./themes/material-ocean"; |
| 26 | import * as NightOwl from "./themes/night-owl"; |
| 27 | import * as NightfoxDark from "./themes/nightfox-dark"; |
| 28 | import * as NightfoxLight from "./themes/nightfox-light"; |
| 29 | import * as VscodeDarkModern from "./themes/vscode-dark-modern"; |
| 30 | import * as RosePine from "./themes/rose-pine"; |
| 31 | import * as RosePineMoon from "./themes/rose-pine-moon"; |
| 32 | import * as RosePineDawn from "./themes/rose-pine-dawn"; |
| 33 | import * as CyberdreamLight from "./themes/cyberdream-light.js"; |
| 34 | import * as CyberdreamDark from "./themes/cyberdream-dark.js"; |
| 35 | |
| 36 | // Entire collection of themes available in simple-bar |
| 37 | export 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 | }; |