Lower the default state intensities

Nate Butler created

Change summary

crates/ui2/src/color.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Detailed changes

crates/ui2/src/color.rs 🔗

@@ -166,13 +166,13 @@ impl ThemeColor {
             surface: theme.middle.base.default.background,
             background: theme.lowest.base.default.background,
             filled_element: theme.lowest.base.default.background,
-            filled_element_hover: hsla(0.0, 0.0, 100.0, 0.16),
-            filled_element_active: hsla(0.0, 0.0, 100.0, 0.32),
+            filled_element_hover: hsla(0.0, 0.0, 100.0, 0.12),
+            filled_element_active: hsla(0.0, 0.0, 100.0, 0.16),
             filled_element_selected: theme.lowest.accent.default.background,
             filled_element_disabled: transparent,
             ghost_element: transparent,
             ghost_element_hover: hsla(0.0, 0.0, 100.0, 0.08),
-            ghost_element_active: hsla(0.0, 0.0, 100.0, 0.16),
+            ghost_element_active: hsla(0.0, 0.0, 100.0, 0.12),
             ghost_element_selected: theme.lowest.accent.default.background,
             ghost_element_disabled: transparent,
             text: theme.lowest.base.default.foreground,