mod.rs

 1// This file was generated by the `theme_importer`.
 2// Be careful when modifying it by hand.
 3
 4mod andromeda;
 5mod ayu;
 6mod dracula;
 7mod gruvbox;
 8mod night_owl;
 9mod nord;
10mod notctis;
11mod palenight;
12mod rose_pine;
13mod solarized;
14mod synthwave_84;
15
16pub use andromeda::*;
17pub use ayu::*;
18pub use dracula::*;
19pub use gruvbox::*;
20pub use night_owl::*;
21pub use nord::*;
22pub use notctis::*;
23pub use palenight::*;
24pub use rose_pine::*;
25pub use solarized::*;
26pub use synthwave_84::*;
27
28use crate::UserThemeFamily;
29
30pub(crate) fn all_user_themes() -> Vec<UserThemeFamily> {
31    vec![
32        rose_pine(),
33        night_owl(),
34        andromeda(),
35        synthwave_84(),
36        palenight(),
37        dracula(),
38        solarized(),
39        nord(),
40        notctis(),
41        ayu(),
42        gruvbox(),
43    ]
44}