rat_theme4/palettes/shell/
mod.rs

1//! Shell themes. These use almost no background color, letting
2//! the shell shine through.
3
4mod base16_shell;
5mod black_white_shell;
6mod embark_shell;
7mod everforest_shell;
8mod gatekeeper_shell;
9mod imperial_shell;
10mod material_shell;
11mod monekai_shell;
12mod monochrome_shell;
13mod nord_shell;
14mod ocean_shell;
15mod oxocarbon_shell;
16mod radium_shell;
17mod reds_shell;
18mod rust_shell;
19mod solarized_shell;
20mod tailwind_shell;
21mod tundra_shell;
22mod vscode_shell;
23
24pub use base16_shell::BASE16_SHELL;
25pub use black_white_shell::BLACK_WHITE_SHELL;
26pub use embark_shell::EMBARK_SHELL;
27pub use everforest_shell::EVERFOREST_SHELL;
28pub use gatekeeper_shell::GATEKEEPER_SHELL;
29pub use imperial_shell::IMPERIAL_SHELL;
30pub use material_shell::MATERIAL_SHELL;
31pub use monekai_shell::MONEKAI_SHELL;
32pub use monochrome_shell::MONOCHROME_SHELL;
33pub use nord_shell::NORD_SHELL;
34pub use ocean_shell::OCEAN_SHELL;
35pub use oxocarbon_shell::OXOCARBON_SHELL;
36pub use radium_shell::RADIUM_SHELL;
37pub use reds_shell::REDS_SHELL;
38pub use rust_shell::RUST_SHELL;
39pub use solarized_shell::SOLARIZED_SHELL;
40pub use tailwind_shell::TAILWIND_SHELL;
41pub use tundra_shell::TUNDRA_SHELL;
42pub use vscode_shell::VSCODE_SHELL;