Skip to content

Commit

Permalink
Revert the changes I made to the default themes
Browse files Browse the repository at this point in the history
  • Loading branch information
zadjii-msft committed Aug 12, 2022
1 parent b38b704 commit 48deba0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 29 deletions.
4 changes: 2 additions & 2 deletions src/cascadia/TerminalApp/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
See GH #12356 for more history on the subject.
-->
<SolidColorBrush x:Key="TabViewBackground"
Color="#2e2e2e" />
Color="#0a0a0a" />

<StaticResource x:Key="UnfocusedBorderBrush"
ResourceKey="ApplicationPageBackgroundThemeBrush" />
Expand All @@ -165,7 +165,7 @@
GH #12398 has more history on this value, as well as GH #12400
-->
<SolidColorBrush x:Key="TabViewBackground"
Color="#e8e8e8" />
Color="#dadada" />

<StaticResource x:Key="UnfocusedBorderBrush"
ResourceKey="ApplicationPageBackgroundThemeBrush" />
Expand Down
30 changes: 3 additions & 27 deletions src/cascadia/TerminalSettingsModel/defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// Miscellaneous
"confirmCloseAllTabs": true,
"startOnUserLogin": false,
"theme": "dark",
"theme": "system",
"snapToGridOnResize": true,
"disableAnimations": false,
"startupActions": "",
Expand Down Expand Up @@ -283,44 +283,20 @@
"themes": [
{
"name": "light",
"window":
{
"window":{
"applicationTheme": "light"
},
"tab":
{
"background": "terminalBackground",
"unfocusedBackground": "#00000000"
},
"tabRow":
{
"unfocusedBackground": "#FFFFFFFF"
}
},
{
"name": "dark",
"window":
{
"window":{
"applicationTheme": "dark"
},
"tab":
{
"background": "terminalBackground",
"unfocusedBackground": "#00000000",
},
"tabRow":
{
"unfocusedBackground": "#333333FF"
}
},
{
"name": "system",
"window":{
"applicationTheme": "system"
},
"tab":{
"background": "terminalBackground",
"unfocusedBackground": "#00000000",
}
}
],
Expand Down

0 comments on commit 48deba0

Please sign in to comment.