summaryrefslogtreecommitdiffstats
path: root/src/config/clean/theme/mod.rs
blob: a9f7cbb57f198d7af4d690dead90895efcaf41cf (plain)
1
2
3
4
5
6
7
8
9
10
11
pub mod config;
pub mod style;
pub mod tab;

pub use config::*;

#[cfg(not(target_os = "windows"))]
const DEFAULT_CONFIG_FILE_PATH: &str = include_str!("../../../../config/theme.toml");

#[cfg(target_os = "windows")]
const DEFAULT_CONFIG_FILE_PATH: &str = include_str!("..\\..\\..\\..\\config\\theme.toml");