theme: fallback theme should be dark

this default was deeply cursed
This commit is contained in:
William Casarin
2024-12-11 15:20:47 -08:00
parent 9e67f9dc8c
commit a429ff689c

View File

@@ -13,7 +13,7 @@ const THEME_FILE: &str = "theme.txt";
impl ThemeHandler {
pub fn new(path: &DataPath) -> Self {
let directory = Directory::new(path.path(DataPathType::Setting));
let fallback_theme = ThemePreference::Light;
let fallback_theme = ThemePreference::Dark;
Self {
directory,
fallback_theme,