Skip to content

Commit

Permalink
Fixed export settings button is not readable (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
lpeyr committed Oct 30, 2023
1 parent 913bfe5 commit 76ec528
Showing 1 changed file with 19 additions and 16 deletions.
35 changes: 19 additions & 16 deletions PermaTop/Themes/Light.xaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<SolidColorBrush x:Key="Background1" Color="#FFFFFF"/>
<SolidColorBrush x:Key="Background2" Color="#e9e9e9"/>
<SolidColorBrush x:Key="Background3" Color="#f5f5f5"/>
<SolidColorBrush x:Key="CardBackground" Color="#FFFFFF"/>
<SolidColorBrush x:Key="Foreground1" Color="#000000"/>
<SolidColorBrush x:Key="WindowButtonsHover1" Color="#E5E5E5"/>
<SolidColorBrush x:Key="WindowButtonsPressed1" Color="#DBDBDB"/>
<SolidColorBrush x:Key="WindowButtonsHoverForeground1" Color="#FFFFFF"/>
<SolidColorBrush x:Key="Accent" Color="#e4572e"/>
<SolidColorBrush x:Key="LightAccent" Color="#ec8c6f"/>
<SolidColorBrush x:Key="Gray" Color="#DEDEDE"/>
<SolidColorBrush x:Key="DarkGray" Color="#969696"/>
<ImageBrush x:Key="BackgroundImg" ImageSource="/Images/Light.png"/>
<Color x:Key="LightAccentColor" R="236" G="140" B="111"/>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<SolidColorBrush x:Key="Background1" Color="#FFFFFF" />
<SolidColorBrush x:Key="Background2" Color="#e9e9e9" />
<SolidColorBrush x:Key="Background3" Color="#f5f5f5" />
<SolidColorBrush x:Key="CardBackground" Color="#FFFFFF" />
<SolidColorBrush x:Key="Foreground1" Color="#000000" />
<SolidColorBrush x:Key="WindowButtonsHover1" Color="#E5E5E5" />
<SolidColorBrush x:Key="WindowButtonsPressed1" Color="#DBDBDB" />
<SolidColorBrush x:Key="WindowButtonsHoverForeground1" Color="#FFFFFF" />
<SolidColorBrush x:Key="Accent" Color="#e4572e" />
<SolidColorBrush x:Key="LightAccent" Color="#F9DBD2" />
<SolidColorBrush x:Key="Gray" Color="#DEDEDE" />
<SolidColorBrush x:Key="DarkGray" Color="#969696" />
<ImageBrush x:Key="BackgroundImg" ImageSource="/Images/Light.png" />
<Color
x:Key="LightAccentColor"
B="111"
G="140"
R="236" />
</ResourceDictionary>

0 comments on commit 76ec528

Please sign in to comment.