app

Local-first trade for farms and co-ops
git clone https://radroots.dev/git/app.git
Log | Files | Refs | README | LICENSE

commit ad0998b50272099a9f21af09a5d85f055f0525c3
parent 43a68f5c32dd9e34eda2c5565dd55a9c7a0aeb08
Author: triesap <tyson@radroots.org>
Date:   Sun, 19 Apr 2026 20:26:28 +0000

ui: fix input text visibility

Diffstat:
Mcrates/launchers/desktop/src/app.rs | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/crates/launchers/desktop/src/app.rs b/crates/launchers/desktop/src/app.rs @@ -1,4 +1,5 @@ use gpui::Application; +use gpui_component::{Theme, ThemeMode}; use radroots_app_core::{ APP_PROJECTION_SOURCE, AppBuildIdentity, AppRuntimeConfig, AppRuntimeConfigError, AppRuntimeSnapshot, bootstrap_logging, install_panic_hook, launch_startup_event, @@ -38,6 +39,7 @@ pub fn launch() -> Result<(), AppLaunchError> { app.run(move |cx| { gpui_component::init(cx); + Theme::change(ThemeMode::Light, None, cx); select_locale_from_host(&snapshot.host.host_locale); install_native_app_menu(runtime.clone(), cx);