Skip to content

Commit

Permalink
Increase minimap colors contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
miroiu committed Jul 23, 2024
1 parent b8cc232 commit 9f073b2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Nodify/Themes/Dark.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@

<!--MINIMAP-->
<Color x:Key="Minimap.BackgroundColor">#121212</Color>
<Color x:Key="Minimap.ViewportStrokeColor">DodgerBlue</Color>
<Color x:Key="Minimap.ViewportBackgroundColor">DodgerBlue</Color>
<Color x:Key="MinimapItem.BackgroundColor">#2D2D30</Color>
<Color x:Key="Minimap.ViewportStrokeColor">#74747c</Color>
<Color x:Key="Minimap.ViewportBackgroundColor">#74747c</Color>
<Color x:Key="MinimapItem.BackgroundColor">DodgerBlue</Color>

</ResourceDictionary>
2 changes: 1 addition & 1 deletion Nodify/Themes/Light.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@
<Color x:Key="Minimap.BackgroundColor">#f2f3f5</Color>
<Color x:Key="Minimap.ViewportStrokeColor">DodgerBlue</Color>
<Color x:Key="Minimap.ViewportBackgroundColor">DodgerBlue</Color>
<Color x:Key="MinimapItem.BackgroundColor">#5C6A98</Color>
<Color x:Key="MinimapItem.BackgroundColor">#5c6a98</Color>

</ResourceDictionary>
6 changes: 3 additions & 3 deletions Nodify/Themes/Nodify.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@

<!--MINIMAP-->
<Color x:Key="Minimap.BackgroundColor">#2A1B47</Color>
<Color x:Key="Minimap.ViewportStrokeColor">#FD5618</Color>
<Color x:Key="Minimap.ViewportBackgroundColor">#FD5618</Color>
<Color x:Key="MinimapItem.BackgroundColor">#662D91</Color>
<Color x:Key="Minimap.ViewportStrokeColor">#9b44dd</Color>
<Color x:Key="Minimap.ViewportBackgroundColor">#9b44dd</Color>
<Color x:Key="MinimapItem.BackgroundColor">#FD5618</Color>

</ResourceDictionary>
6 changes: 3 additions & 3 deletions Nodify/Themes/Styles/Minimap.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@
Color="#121212"
Opacity="0.7" />
<SolidColorBrush x:Key="MinimapItemBackground"
Color="#2D2D30"
Color="DodgerBlue"
Opacity="0.8" />

<Style x:Key="ViewportRectStyle"
TargetType="Rectangle">
<Setter Property="Stroke"
Value="DodgerBlue" />
Value="#74747c" />
<Setter Property="StrokeThickness"
Value="3" />
<Setter Property="Fill">
<Setter.Value>
<SolidColorBrush Color="DodgerBlue"
<SolidColorBrush Color="#74747c"
Opacity="0.2" />
</Setter.Value>
</Setter>
Expand Down

0 comments on commit 9f073b2

Please sign in to comment.