1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// This file was generated by the `theme_importer`.
// Be careful when modifying it by hand.

mod andromeda;
mod ayu;
mod dracula;
mod gruvbox;
mod night_owl;
mod noctis;
mod nord;
mod palenight;
mod rose_pine;
mod solarized;
mod synthwave_84;

pub use andromeda::*;
pub use ayu::*;
pub use dracula::*;
pub use gruvbox::*;
pub use night_owl::*;
pub use noctis::*;
pub use nord::*;
pub use palenight::*;
pub use rose_pine::*;
pub use solarized::*;
pub use synthwave_84::*;

use crate::UserThemeFamily;

pub(crate) fn all_user_themes() -> Vec<UserThemeFamily> {
    vec![
        rose_pine(),
        night_owl(),
        andromeda(),
        synthwave_84(),
        palenight(),
        dracula(),
        solarized(),
        nord(),
        noctis(),
        ayu(),
        gruvbox(),
    ]
}