notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit a429ff689c9f639fc323c856bb9b1e7750265055
parent 9e67f9dc8cbef6a4453b7a1809795178207cbc9f
Author: William Casarin <jb55@jb55.com>
Date:   Wed, 11 Dec 2024 15:20:47 -0800

theme: fallback theme should be dark

this default was deeply cursed

Diffstat:
Mcrates/notedeck_columns/src/theme_handler.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crates/notedeck_columns/src/theme_handler.rs b/crates/notedeck_columns/src/theme_handler.rs @@ -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,