-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from takenet/feature/dark_mode_lime_console
[FEATURE] Implement Dark Mode and solving Json Field Bugs
- Loading branch information
Showing
17 changed files
with
422 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<ResourceDictionary | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:vw="clr-namespace:Lime.Client.TestConsole.Views" | ||
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit" | ||
xmlns:xcad="http://schemas.xceed.com/wpf/xaml/avalondock" | ||
mc:Ignorable="d" | ||
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" > | ||
|
||
<SolidColorBrush x:Key="DarkModeColor">#2D2D2D</SolidColorBrush> | ||
<SolidColorBrush x:Key="DarkModeDataGridHeader">#18191A</SolidColorBrush> | ||
|
||
<Style x:Key="darkMode" TargetType="Control"> | ||
<Setter Property="Foreground" Value="White"></Setter> | ||
<Setter Property="Background" Value="{DynamicResource DarkModeColor}"></Setter> | ||
<Style.Resources> | ||
<Style TargetType="Label"> | ||
<Setter Property="Foreground" Value="White"></Setter> | ||
</Style> | ||
<Style TargetType="TextBlock"> | ||
<Setter Property="Foreground" Value="White"></Setter> | ||
</Style> | ||
<Style TargetType="CheckBox"> | ||
<Setter Property="Foreground" Value="White"></Setter> | ||
</Style> | ||
<Style TargetType="TextBox"> | ||
<Setter Property="Foreground" Value="White"></Setter> | ||
<Setter Property="CaretBrush" Value="White"></Setter> | ||
<Setter Property="Background" Value="Transparent"></Setter> | ||
</Style> | ||
<Style TargetType="xctk:WatermarkTextBox"> | ||
<Setter Property="Foreground" Value="White"></Setter> | ||
<Setter Property="CaretBrush" Value="White"></Setter> | ||
<Setter Property="Background" Value="Transparent"></Setter> | ||
</Style> | ||
<Style TargetType="ListBox"> | ||
<Setter Property="Foreground" Value="White"></Setter> | ||
<Setter Property="Background" Value="Transparent"></Setter> | ||
</Style> | ||
<Style TargetType="xctk:IntegerUpDown"> | ||
<Setter Property="Foreground" Value="White"></Setter> | ||
<Setter Property="Background" Value="Transparent"></Setter> | ||
</Style> | ||
<Style TargetType="MenuItem"> | ||
<Setter Property="Foreground" Value="White"></Setter> | ||
<Setter Property="Background" Value="Transparent"></Setter> | ||
</Style> | ||
<Style TargetType="DataGridRow"> | ||
<Setter Property="Foreground" Value="White"></Setter> | ||
<Setter Property="Background" Value="{DynamicResource DarkModeColor}"></Setter> | ||
</Style> | ||
<Style TargetType="StackPanel"> | ||
<Setter Property="Background" Value="Transparent"></Setter> | ||
</Style> | ||
<Style TargetType="StatusBar"> | ||
<Setter Property="Background" Value="Transparent"></Setter> | ||
</Style> | ||
<Style TargetType="GridSplitter"> | ||
<Setter Property="Background" Value="Transparent"></Setter> | ||
</Style> | ||
<Style TargetType="Button"> | ||
<Setter Property="Foreground" Value="White"></Setter> | ||
<Setter Property="Background" Value="Transparent"></Setter> | ||
<Setter Property="Margin" Value="0,0,5,0" /> | ||
<Setter Property="Padding" Value="15,2" /> | ||
</Style> | ||
<Style TargetType="DataGridColumnHeader"> | ||
<Setter Property="Foreground" Value="White"></Setter> | ||
<Setter Property="Background" Value="{DynamicResource DarkModeDataGridHeader}"></Setter> | ||
</Style> | ||
</Style.Resources> | ||
</Style> | ||
</ResourceDictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.