Skip to content

Commit

Permalink
Update light theme tab background for greater contrast. (#12529)
Browse files Browse the repository at this point in the history
Changes the tab view BG to `#e8e8e8`, as discussed in mail thread.

Closes #12398

(cherry picked from commit c62705e)
  • Loading branch information
zadjii-msft authored and DHowett committed Mar 10, 2022
1 parent bc166b8 commit 4f2bce1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/cascadia/TerminalApp/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,16 @@

<ResourceDictionary x:Key="Light">
<!-- Define resources for Light mode here -->

<!--
The Dark mode BG uses
ApplicationPageBackgroundThemeBrush, but we're
manually setting the Light BG to e8e8e8 here, at the
guidance of the WinUI team. Otherwise, there's just
not enough contrast in light mode. GH #12398
-->
<SolidColorBrush x:Key="TabViewBackground"
Color="#F3F3F3" />
Color="#E8E8E8" />

<StaticResource x:Key="UnfocusedBorderBrush"
ResourceKey="ApplicationPageBackgroundThemeBrush" />
Expand Down

0 comments on commit 4f2bce1

Please sign in to comment.