Skip to content

Commit

Permalink
Added dark theme (colors) (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Peyronnet committed Mar 21, 2021
1 parent 5768197 commit 79e07d6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions InternetTest/InternetTest/Themes/Dark.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:InternetTest.Themes"
xmlns:sys="clr-namespace:System;assembly=mscorlib">

<sys:String x:Key="Background1">#0A0A1E</sys:String>
<sys:String x:Key="Background2">#141428</sys:String>
<sys:String x:Key="Foreground1">#FFFFFF</sys:String>
<sys:String x:Key="WindowButtonsHover1">#141428</sys:String>
<sys:String x:Key="WindowButtonsPressed1">#1E1E32</sys:String>
<sys:String x:Key="MainWindowBackground">/Images/BackgroundBlack.png</sys:String>
<sys:String x:Key="WindowButtonsHoverForeground1">#ffffff</sys:String>
<sys:String x:Key="AccentColor">#2153E0</sys:String>
<sys:String x:Key="LightAccentColor">#0A1943</sys:String>
<sys:String x:Key="Gray">#5A5A6E</sys:String>
<sys:String x:Key="Green">#25DE0F</sys:String>
<sys:String x:Key="Red">#FF321E</sys:String>

</ResourceDictionary>

0 comments on commit 79e07d6

Please sign in to comment.