From 771fd78416422f66726ce4da12bb536186cc975d Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Tue, 29 Jul 2025 14:42:46 +0800 Subject: [PATCH] tabs: Fix tab_bar_segmented default fallback color to secondary. (#1101) --- crates/ui/src/theme/schema.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ui/src/theme/schema.rs b/crates/ui/src/theme/schema.rs index d9e3ca96..59458ea5 100644 --- a/crates/ui/src/theme/schema.rs +++ b/crates/ui/src/theme/schema.rs @@ -520,7 +520,7 @@ impl Theme { apply_color!(tab_active, fallback = self.background); apply_color!(tab_active_foreground, fallback = self.foreground); apply_color!(tab_bar, fallback = self.background); - apply_color!(tab_bar_segmented, fallback = self.background); + apply_color!(tab_bar_segmented, fallback = self.secondary); apply_color!(tab_foreground, fallback = self.secondary_foreground); apply_color!(table, fallback = self.list); apply_color!(table_active, fallback = self.list_active);