Skip to content

Commit 197be57

Browse files
committed
Theme tweaks
1 parent 9b13845 commit 197be57

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/StructuredLogViewer/Controls/SearchAndResultsControl.xaml

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
VirtualizingPanel.IsVirtualizing="True"
4040
VirtualizingPanel.VirtualizationMode="Recycling"
4141
BorderThickness="0"
42+
Background="{DynamicResource Theme_ToolWindowBackground}"
4243
local:ScrollViewerHelper.ShiftWheelScrollsHorizontally="True" />
4344
<ScrollViewer x:Name="watermarkScrollViewer"
4445
HorizontalScrollBarVisibility="Disabled"

src/StructuredLogViewer/themes/ThemeManager.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public static bool UseAdonisDarkTheme
7979

8080
public static void UpdateTheme()
8181
{
82-
var buttonStaticBackground = "#FFDDDDDD";
82+
var buttonStaticBackground = "#FFF0F0F0";
8383
var buttonStaticBorder = "#FF707070";
8484
var buttonMouseOverBackground = "#FFBEE6FD";
8585
var buttonMouseOverBorder = "#FF3C7FB1";
@@ -178,7 +178,7 @@ public static void UpdateTheme()
178178

179179
SetResource("Theme_Background", LighterBackgroundBrush);
180180
SetResource("Theme_WhiteBackground", BackgroundBrush);
181-
SetResource("Theme_ToolWindowBackground", LighterBackgroundBrush);
181+
SetResource("Theme_ToolWindowBackground", BackgroundBrush);
182182
SetResource("Theme_InfoBarBackground", GetBrush("#202040"));
183183

184184
UseAdonisDarkTheme = false;

0 commit comments

Comments
 (0)