Skip to content

Commit

Permalink
Fixed an issue with light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Peyronnet committed Feb 16, 2022
1 parent 8de992f commit 6a0a5c3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ColorPicker/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@

<SolidColorBrush x:Key="Expander.Static.Circle.Stroke" Color="Transparent"/>
<SolidColorBrush x:Key="Expander.Static.Circle.Fill" Color="Transparent"/>
<SolidColorBrush x:Key="Expander.Static.Arrow.Stroke" Color="{Binding Source={StaticResource Gray}}"/>
<SolidColorBrush x:Key="Expander.Static.Arrow.Stroke" Color="{Binding Source={StaticResource DarkGray}}"/>
<SolidColorBrush x:Key="Expander.MouseOver.Circle.Stroke" Color="Transparent"/>
<SolidColorBrush x:Key="Expander.MouseOver.Circle.Fill" Color="Transparent"/>
<SolidColorBrush x:Key="Expander.MouseOver.Arrow.Stroke" Color="{Binding Source={StaticResource Foreground1}}"/>
Expand Down
3 changes: 2 additions & 1 deletion ColorPicker/Themes/Dark.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
<sys:String x:Key="AccentColor">#59ADFF</sys:String>
<sys:String x:Key="LightAccentColor">#004C99</sys:String>
<sys:String x:Key="Gray">#5A5A6E</sys:String>

<sys:String x:Key="DarkGray">#646464</sys:String>

</ResourceDictionary>
1 change: 1 addition & 0 deletions ColorPicker/Themes/Light.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
<sys:String x:Key="AccentColor">#59ADFF</sys:String>
<sys:String x:Key="LightAccentColor">#CCE5FF</sys:String>
<sys:String x:Key="Gray">#DEDEDE</sys:String>
<sys:String x:Key="DarkGray">#969696</sys:String>

</ResourceDictionary>

0 comments on commit 6a0a5c3

Please sign in to comment.