1// mod andromeda;
2// mod ayu;
3// mod dracula;
4// mod gruvbox;
5// mod night_owl;
6// mod nord;
7// mod notctis;
8// mod palenight;
9// mod rose_pine;
10// mod solarized;
11// mod synthwave_84;
12
13// pub use andromeda::*;
14// pub use ayu::*;
15// pub use dracula::*;
16// pub use gruvbox::*;
17// pub use night_owl::*;
18// pub use nord::*;
19// pub use notctis::*;
20// pub use palenight::*;
21// pub use rose_pine::*;
22// pub use solarized::*;
23// pub use synthwave_84::*;
24
25use crate::ThemeFamily;
26
27pub fn all_imported_themes() -> Vec<ThemeFamily> {
28 vec![
29 // rose_pine(),
30 // night_owl(),
31 // andromeda(),
32 // synthwave_84(),
33 // palenight(),
34 // dracula(),
35 // solarized(),
36 // nord(),
37 // notctis(),
38 // ayu(),
39 // gruvbox(),
40 ]
41}