From 3ab2acc2ad4970d06b2e07acc12eed49009ea3b9 Mon Sep 17 00:00:00 2001 From: Sagar Date: Sat, 28 Mar 2026 03:12:50 +0530 Subject: [PATCH] Fix Settings tab color mismatch with Settings page background (#19999) ## Summary The Settings tab color (`SettingsUiTabBrush`) was out of sync with the Settings page background (`SettingsPageBackground`), causing a visible mismatch - the tab appeared black while the page was dark gray. ## Changes Aligned `SettingsUiTabBrush` in `App.xaml` to match `SettingsPageBackground` from `MainPage.xaml`: ## Validation - Built and deployed locally as Windows Terminal Dev - Verified Settings tab and page backgrounds match in Dark and Light themes - No impact on other tab colors or theming Closes #19873 Co-authored-by: Sagar Bhure --- src/cascadia/TerminalApp/App.xaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cascadia/TerminalApp/App.xaml b/src/cascadia/TerminalApp/App.xaml index 4210b65b0a..62c3b1db1c 100644 --- a/src/cascadia/TerminalApp/App.xaml +++ b/src/cascadia/TerminalApp/App.xaml @@ -192,7 +192,7 @@ ResourceKey="TabViewBackground" /> + Color="#282828" /> @@ -211,7 +211,7 @@ ResourceKey="TabViewBackground" /> + Color="#F9F9F9" /> @@ -234,7 +234,7 @@ ResourceKey="SystemColorButtonFaceColorBrush" /> + ResourceKey="SystemColorWindowBrush" />