2018-06-07 18:27:50 +02:00
|
|
|
<ResourceDictionary
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
2018-07-12 18:19:26 +02:00
|
|
|
|
2018-07-25 18:08:59 +02:00
|
|
|
<!-- Common theme values -->
|
|
|
|
<x:Double x:Key="MenuSize">60</x:Double>
|
2020-04-14 13:44:07 +02:00
|
|
|
<x:Double x:Key="ExpandedMenuSize">300</x:Double>
|
2018-07-25 18:08:59 +02:00
|
|
|
<GridLength x:Key="MenuGridLength">60</GridLength>
|
2020-04-14 13:44:07 +02:00
|
|
|
<GridLength x:Key="ExpandedMenuGridLength">300</GridLength>
|
2018-07-25 18:08:59 +02:00
|
|
|
<!-- Only available for Windows 10 -->
|
|
|
|
<!--<SolidColorBrush x:Key="MainColor" Color="{ThemeResource SystemAccentColor}" />
|
2020-04-29 16:39:20 +02:00
|
|
|
<SolidColorBrush x:Key="TextColor" Color="{ThemeResource SystemColorHighlightTextColor}" />
|
|
|
|
|
|
|
|
<SolidColorBrush x:Key="CheckBoxForegroundChecked" Color="{ThemeResource MainColor}"/>
|
|
|
|
<SolidColorBrush x:Key="CheckBoxCheckGlyphForegroundChecked" Color="{ThemeResource TextColorLight}"/>
|
|
|
|
<SolidColorBrush x:Key="CheckBoxCheckBackgroundStrokeChecked" Color="{ThemeResource MainColor}"/>
|
|
|
|
<SolidColorBrush x:Key="CheckBoxCheckBackgroundFillChecked" Color="{ThemeResource MainColor}"/>-->
|
|
|
|
|
|
|
|
<Color x:Key="MainColor">SlateBlue</Color>
|
|
|
|
<Color x:Key="MainColorLight">MediumPurple</Color>
|
|
|
|
<Color x:Key="MainColorDark">Indigo</Color>
|
|
|
|
<Color x:Key="TextColorLight">WhiteSmoke</Color>
|
|
|
|
<Color x:Key="TextColorDark">DarkSlateGray</Color>
|
|
|
|
<Color x:Key="BorderColor">DarkGray</Color>
|
|
|
|
|
|
|
|
<SolidColorBrush x:Key="MainColorBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="MainColorLightBrush" Color="{ThemeResource MainColorLight}" />
|
|
|
|
<SolidColorBrush x:Key="MainColorDarkBrush" Color="{ThemeResource MainColorDark}" />
|
|
|
|
<SolidColorBrush x:Key="TextColorLightBrush" Color="{ThemeResource TextColorLight}" />
|
|
|
|
<SolidColorBrush x:Key="TextColorDarkBrush" Color="{ThemeResource TextColorDark}" />
|
2018-07-25 18:08:59 +02:00
|
|
|
|
|
|
|
<Style TargetType="TextBlock" x:Key="TextBlockSettingsHeaderStyle" >
|
2018-06-07 18:27:50 +02:00
|
|
|
<Setter Property="FontFamily" Value="Segoe UI" />
|
|
|
|
<Setter Property="FontSize" Value="14.667" />
|
|
|
|
<Setter Property="FontWeight" Value="SemiLight" />
|
|
|
|
</Style>
|
|
|
|
|
2020-04-29 16:39:20 +02:00
|
|
|
<SolidColorBrush x:Key="TextBoxForegroundThemeBrush" Color="{ThemeResource TextColorDark}" />
|
|
|
|
<SolidColorBrush x:Key="TextBoxBorderThemeBrush" Color="{ThemeResource BorderColor}" />
|
|
|
|
<SolidColorBrush x:Key="TextSelectionHighlightColorThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
|
|
|
|
<SolidColorBrush x:Key="CheckBoxPointerOverBorderThemeBrush" Color="{ThemeResource MainColor}"/>
|
|
|
|
<SolidColorBrush x:Key="CheckBoxPointerOverForegroundThemeBrush" Color="{ThemeResource MainColor}"/>
|
|
|
|
<SolidColorBrush x:Key="CheckBoxForegroundThemeBrush" Color="{ThemeResource MainColor}"/>
|
|
|
|
|
|
|
|
<SolidColorBrush x:Key="RadioButtonPointerOverBorderThemeBrush" Color="{ThemeResource MainColor}"/>
|
|
|
|
<SolidColorBrush x:Key="RadioButtonPointerOverForegroundThemeBrush" Color="{ThemeResource MainColor}"/>
|
|
|
|
<SolidColorBrush x:Key="RadioButtonForegroundThemeBrush" Color="{ThemeResource MainColor}"/>
|
|
|
|
|
|
|
|
<SolidColorBrush x:Key="HyperlinkForegroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="HyperlinkPointerOverForegroundThemeBrush" Color="{ThemeResource MainColorLight}" />
|
|
|
|
|
|
|
|
<SolidColorBrush x:Key="SearchBoxPointerOverBorderThemeBrush" Color="{ThemeResource MainColorLight}" />
|
|
|
|
<SolidColorBrush x:Key="SearchBoxPointerOverTextThemeBrush" Color="{ThemeResource MainColorLight}" />
|
|
|
|
<SolidColorBrush x:Key="SearchBoxFocusedBorderThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="SearchBoxButtonBackgroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="SearchBoxHitHighlightForegroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="SearchBoxHitHighlightSelectedForegroundThemeBrush" Color="{ThemeResource TextColorLight}" />
|
|
|
|
|
|
|
|
<SolidColorBrush x:Key="ToggleSwitchCurtainPointerOverBackgroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="ToggleSwitchCurtainPressedBackgroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="ToggleSwitchCurtainBackgroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
|
|
|
|
<SolidColorBrush x:Key="ComboBoxItemPointerOverBackgroundThemeBrush" Color="{ThemeResource MainColorLight}" />
|
|
|
|
<SolidColorBrush x:Key="ComboBoxItemPointerOverForegroundThemeBrush" Color="{ThemeResource TextColorLight}" />
|
|
|
|
<SolidColorBrush x:Key="ComboBoxItemPressedBackgroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="ComboBoxItemPressedForegroundThemeBrush" Color="{ThemeResource TextColorLight}" />
|
|
|
|
<SolidColorBrush x:Key="ComboBoxItemSelectedBackgroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="ComboBoxItemSelectedForegroundThemeBrush" Color="{ThemeResource TextColorLight}" />
|
|
|
|
<SolidColorBrush x:Key="ComboBoxItemSelectedPointerOverBackgroundThemeBrush" Color="{ThemeResource MainColorLight}" />
|
|
|
|
|
|
|
|
<SolidColorBrush x:Key="ComboBoxSelectedPointerOverBackgroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="ComboBoxPressedBackgroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="ComboBoxPressedBorderThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="ComboBoxPressedForegroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="ComboBoxSelectedBackgroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
|
|
|
|
<SolidColorBrush x:Key="ButtonBackgroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="ButtonForegroundThemeBrush" Color="{ThemeResource TextColorLight}" />
|
|
|
|
<SolidColorBrush x:Key="ButtonPointerOverBackgroundThemeBrush" Color="{ThemeResource MainColorLight}" />
|
|
|
|
|
|
|
|
<SolidColorBrush x:Key="SliderTrackDecreaseBackgroundThemeBrush" Color="{ThemeResource MainColor}" />
|
|
|
|
<SolidColorBrush x:Key="SliderTrackDecreasePressedBackgroundThemeBrush" Color="{ThemeResource MainColorDark}" />
|
|
|
|
<SolidColorBrush x:Key="SliderTrackDecreasePointerOverBackgroundThemeBrush" Color="{ThemeResource MainColorLight}" />
|
2018-06-07 18:27:50 +02:00
|
|
|
</ResourceDictionary>
|