Co-Authored-By: Marshall Bowers <1486634+maxdeviant@users.noreply.github.com>
45 lines
794 B
Rust
45 lines
794 B
Rust
// 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(),
|
|
]
|
|
}
|