From 1a54a47ec84d3b4fc544349a16eaa3cbcab70869 Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Thu, 27 Jun 2024 23:15:54 +0800 Subject: [PATCH] Update foreground color in dark mode. --- crates/ui/src/theme.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ui/src/theme.rs b/crates/ui/src/theme.rs index 416ab5c5..1283550a 100644 --- a/crates/ui/src/theme.rs +++ b/crates/ui/src/theme.rs @@ -173,7 +173,7 @@ impl Colors { Colors { title_bar_background: hsl(0., 0., 12.), background: hsl(0.0, 0.0, 6.0), - foreground: hsl(0., 0., 98.), + foreground: hsl(240., 5., 65.), card: hsl(299.0, 2., 9.), card_foreground: hsl(0.0, 0.0, 98.0), popover: hsl(240.0, 10.0, 3.9),