mod.rs

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