ZIm/crates/theme2/src/themes/mod.rs
2023-11-06 14:54:21 -05:00

23 lines
No EOL
420 B
Rust

mod andromeda;
mod dracula;
mod nord;
mod notctis;
mod ayu;
mod gruvbox;
pub use andromeda::*;
pub use dracula::*;
pub use nord::*;
pub use notctis::*;
pub use ayu::*;
pub use gruvbox::*;
use crate::ThemeFamily;
pub(crate) fn all_imported_themes() -> Vec<ThemeFamily> {
vec![andromeda(), dracula(), nord(), notctis(), ayu(), gruvbox()]
}