add ComboBox / Textarea darkmode

This commit is contained in:
DB p 2021-11-16 20:45:45 +09:00
parent f473a7efb4
commit 28dd3992b1
4 changed files with 181 additions and 89 deletions

View file

@ -855,8 +855,8 @@
<Setter TargetName="ContentPresenter" Property="Foreground" Value="{DynamicResource CheckBoxForegroundUnchecked}" />
<Setter TargetName="RootGrid" Property="Background" Value="{DynamicResource CheckBoxBackgroundUnchecked}" />
<Setter TargetName="RootGrid" Property="BorderBrush" Value="{DynamicResource CheckBoxBorderBrushUnchecked}" />
<Setter TargetName="NormalRectangle" Property="Stroke" Value="#868686" />
<Setter TargetName="NormalRectangle" Property="Fill" Value="#ededed" />
<Setter TargetName="NormalRectangle" Property="Stroke" Value="{DynamicResource CheckBoxCheckBackgroundStrokeUnchecked}" />
<Setter TargetName="NormalRectangle" Property="Fill" Value="{DynamicResource CheckBoxCheckBackgroundFillUnchecked}" />
<Setter TargetName="CheckGlyph" Property="Foreground" Value="{DynamicResource CheckBoxCheckGlyphForegroundUnchecked}" />
</MultiTrigger>
<!-- UncheckedPointerOver -->
@ -867,9 +867,9 @@
</MultiTrigger.Conditions>
<Setter TargetName="ContentPresenter" Property="Foreground" Value="{DynamicResource CheckBoxForegroundUncheckedPointerOver}" />
<Setter TargetName="RootGrid" Property="Background" Value="{DynamicResource CheckBoxBackgroundUncheckedPointerOver}" />
<Setter TargetName="RootGrid" Property="BorderBrush" Value="#868686" />
<Setter TargetName="NormalRectangle" Property="Stroke" Value="#868686" />
<Setter TargetName="NormalRectangle" Property="Fill" Value="#e5e5e5" />
<Setter TargetName="RootGrid" Property="BorderBrush" Value="{DynamicResource CheckBoxBorderBrushUncheckedPointerOver}" />
<Setter TargetName="NormalRectangle" Property="Stroke" Value="{DynamicResource CheckBoxCheckBackgroundStrokeUncheckedPointerOver}" />
<Setter TargetName="NormalRectangle" Property="Fill" Value="{DynamicResource CheckBoxCheckBackgroundFillUncheckedPointerOver}" />
<Setter TargetName="CheckGlyph" Property="Foreground" Value="{DynamicResource CheckBoxCheckGlyphForegroundUncheckedPointerOver}" />
</MultiTrigger>
<!-- UncheckedPressed -->
@ -880,9 +880,9 @@
</MultiTrigger.Conditions>
<Setter TargetName="ContentPresenter" Property="Foreground" Value="{DynamicResource CheckBoxForegroundUncheckedPressed}" />
<Setter TargetName="RootGrid" Property="Background" Value="{DynamicResource CheckBoxBackgroundUncheckedPressed}" />
<Setter TargetName="RootGrid" Property="BorderBrush" Value="#b7b7b7" />
<Setter TargetName="NormalRectangle" Property="Stroke" Value="#b7b7b7" />
<Setter TargetName="NormalRectangle" Property="Fill" Value="#dcdcdc" />
<Setter TargetName="RootGrid" Property="BorderBrush" Value="{DynamicResource CheckBoxBorderBrushUncheckedPressed}" />
<Setter TargetName="NormalRectangle" Property="Stroke" Value="{DynamicResource CheckBoxCheckBackgroundStrokeUncheckedPressed}" />
<Setter TargetName="NormalRectangle" Property="Fill" Value="{DynamicResource CheckBoxCheckBackgroundFillUncheckedPressed}" />
<Setter TargetName="CheckGlyph" Property="Foreground" Value="{DynamicResource CheckBoxCheckGlyphForegroundUncheckedPressed}" />
</MultiTrigger>
<!-- UncheckedDisabled -->
@ -1304,16 +1304,16 @@
Grid.Row="1"
Grid.Column="0"
Grid.ColumnSpan="2"
BorderBrush="#e5e5e5"
BorderThickness="1,1,1,0"
BorderBrush="{DynamicResource CustomComboOutline}"
BorderThickness="{DynamicResource CustomComboOutlineThickness}"
CornerRadius="4">
<Border
x:Name="Background"
MinWidth="{DynamicResource ComboBoxThemeMinWidth}"
ui:ValidationHelper.IsTemplateValidationAdornerSite="True"
Background="{TemplateBinding Background}"
BorderBrush="#cccccc"
BorderThickness="0,0,0,2"
BorderBrush="{DynamicResource CustomComboInline}"
BorderThickness="{DynamicResource CustomComboInlineThickness}"
CornerRadius="4" />
</Border>
<Border
@ -1436,7 +1436,7 @@
<Border
x:Name="PopupBorder"
HorizontalAlignment="Stretch"
Background="#f6f6f6"
Background="{DynamicResource PopUpBorderBG}"
CornerRadius="{DynamicResource OverlayCornerRadius}">
<Border
Padding="{DynamicResource ComboBoxDropdownBorderPadding}"
@ -1463,35 +1463,35 @@
<ControlTemplate.Triggers>
<!-- PointerOver -->
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="Background" Property="Background" Value="#f6f6f6" />
<Setter TargetName="Background" Property="Background" Value="{DynamicResource CustomComboHoverBG}" />
<Setter TargetName="ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource ComboBoxForegroundPointerOver}" />
<Setter TargetName="PlaceholderTextBlock" Property="Foreground" Value="{DynamicResource ComboBoxPlaceHolderForegroundPointerOver}" />
</Trigger>
<!-- Pressed -->
<Trigger SourceName="ToggleButton" Property="IsPressed" Value="True">
<Setter TargetName="Background" Property="Background" Value="#f6f6f6" />
<Setter TargetName="Background" Property="Background" Value="{DynamicResource CustomComboPressedBG}" />
<Setter TargetName="Background" Property="BorderThickness" Value="0" />
<Setter TargetName="Background" Property="BorderBrush" Value="{DynamicResource ComboBoxBorderBrushPressed}" />
<Setter TargetName="OutLine" Property="BorderBrush" Value="#e5e5e5" />
<Setter TargetName="OutLine" Property="BorderThickness" Value="1,1,1,1" />
<Setter TargetName="ContentPresenter" Property="TextElement.Foreground" Value="#878787" />
<Setter TargetName="OutLine" Property="BorderBrush" Value="{DynamicResource CustomComboPressedOutLine}" />
<Setter TargetName="OutLine" Property="BorderThickness" Value="{DynamicResource PressedCustomComboOutlineThickness}" />
<Setter TargetName="ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource CustomComboPressedText}" />
<Setter TargetName="PlaceholderTextBlock" Property="Foreground" Value="{DynamicResource ComboBoxPlaceHolderForegroundPressed}" />
</Trigger>
<!-- Disabled -->
<Trigger Property="IsEnabled" Value="False">
<Setter TargetName="Background" Property="Background" Value="#f6f6f6" />
<Setter TargetName="Background" Property="Background" Value="{DynamicResource CustomComboDisabledBG}" />
<Setter TargetName="Background" Property="BorderThickness" Value="0" />
<Setter TargetName="Background" Property="BorderBrush" Value="{DynamicResource ComboBoxBorderBrushPressed}" />
<Setter TargetName="OutLine" Property="BorderBrush" Value="#e5e5e5" />
<Setter TargetName="OutLine" Property="BorderThickness" Value="1,1,1,1" />
<Setter TargetName="ContentPresenter" Property="TextElement.Foreground" Value="#878787" />
<Setter TargetName="OutLine" Property="BorderBrush" Value="{DynamicResource CustomComboDisabledOutLine}" />
<Setter TargetName="OutLine" Property="BorderThickness" Value="{DynamicResource DisabledCustomComboOutlineThickness}" />
<Setter TargetName="ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource CustomComboDisabledText}" />
<Setter TargetName="PlaceholderTextBlock" Property="Foreground" Value="{DynamicResource ComboBoxPlaceHolderForegroundPressed}" />
</Trigger>
<!-- Focused -->
<Trigger Property="ui:FocusVisualHelper.ShowFocusVisual" Value="True">
<Setter TargetName="HighlightBackground" Property="Opacity" Value="1" />
<Setter TargetName="HighlightBackground" Property="Background" Value="#f0f0f0" />
<Setter TargetName="HighlightBackground" Property="Background" Value="{DynamicResource CustomComboHighlightBG}" />
<Setter TargetName="HighlightBackground" Property="BorderBrush" Value="{DynamicResource ComboBoxBackgroundBorderBrushFocused}" />
<Setter TargetName="ContentPresenter" Property="TextElement.Foreground" Value="{DynamicResource ComboBoxForegroundFocused}" />
<Setter TargetName="PlaceholderTextBlock" Property="Foreground" Value="{DynamicResource ComboBoxPlaceHolderForegroundFocused}" />
@ -1735,9 +1735,9 @@
Grid.RowSpan="1"
Grid.Column="0"
Grid.ColumnSpan="2"
Background="#fbfbfb"
BorderBrush="#E5E5E5"
BorderThickness="1,1,1,1"
Background="{DynamicResource CustomTextBoxBG}"
BorderBrush="{DynamicResource CustomTextBoxOutline}"
BorderThickness="{DynamicResource CustomTextBoxOutlineThickness}"
CornerRadius="4">
<Border
x:Name="BorderElement"
@ -1745,8 +1745,8 @@
MinHeight="{TemplateBinding MinHeight}"
ui:ValidationHelper.IsTemplateValidationAdornerSite="True"
Background="{TemplateBinding Background}"
BorderBrush="#868686"
BorderThickness="0,0,0,1"
BorderBrush="{DynamicResource CustomTextBoxInline}"
BorderThickness="{DynamicResource CustomTextBoxInlineThickness}"
CornerRadius="{TemplateBinding ui:ControlHelper.CornerRadius}" />
</Border>
<ScrollViewer
@ -1830,7 +1830,7 @@
</Trigger>
<Trigger Property="IsMouseOver" Value="true">
<Setter TargetName="BorderElement" Property="BorderBrush" Value="{DynamicResource TextControlBorderBrushPointerOver}" />
<Setter Property="Background" Value="#f6f6f6" />
<Setter Property="Background" Value="{DynamicResource CustomTextBoxHoverBG}" />
<Setter TargetName="PlaceholderTextContentPresenter" Property="Foreground" Value="{DynamicResource TextControlPlaceholderForegroundPointerOver}" />
<Setter Property="Foreground" Value="{DynamicResource TextControlForegroundPointerOver}" />
</Trigger>
@ -2053,7 +2053,7 @@
Fill="{DynamicResource ToggleSwitchFillOff}"
RadiusX="10"
RadiusY="10"
Stroke="#5a5a5a"
Stroke="{DynamicResource ToggleSwitchStrokeOff}"
StrokeThickness="{DynamicResource ToggleSwitchOuterBorderStrokeThickness}" />
<Rectangle
x:Name="SwitchKnobBounds"
@ -2084,7 +2084,7 @@
x:Name="SwitchKnobOff"
Width="10"
Height="10"
Fill="#5a5a5a" />
Fill="{DynamicResource ToggleSwitchKnobFillOff}" />
<Grid.RenderTransform>
<TranslateTransform x:Name="KnobTranslateTransform" />
</Grid.RenderTransform>
@ -2290,9 +2290,9 @@
<Condition Property="IsMouseOver" Value="true" />
<Condition SourceName="SwitchThumb" Property="IsDragging" Value="false" />
</MultiTrigger.Conditions>
<Setter TargetName="OuterBorder" Property="Stroke" Value="#5a5a5a" />
<Setter TargetName="OuterBorder" Property="Fill" Value="#E5E5E5" />
<Setter TargetName="SwitchKnobOff" Property="Fill" Value="#5a5a5a" />
<Setter TargetName="OuterBorder" Property="Stroke" Value="{DynamicResource ToggleSwitchStrokeOffPointerOver}" />
<Setter TargetName="OuterBorder" Property="Fill" Value="{DynamicResource ToggleSwitchFillOffPointerOver}" />
<Setter TargetName="SwitchKnobOff" Property="Fill" Value="{DynamicResource ToggleSwitchKnobFillOffPointerOver}" />
<Setter TargetName="SwitchKnobOn" Property="Fill" Value="{DynamicResource ToggleSwitchKnobFillOnPointerOver}" />
<Setter TargetName="SwitchKnobBounds" Property="Fill" Value="{DynamicResource ToggleSwitchFillOnPointerOver}" />
<Setter TargetName="SwitchKnobBounds" Property="Stroke" Value="{DynamicResource ToggleSwitchStrokeOnPointerOver}" />
@ -2300,9 +2300,9 @@
</MultiTrigger>
<!-- Pressed -->
<Trigger SourceName="SwitchThumb" Property="IsDragging" Value="true">
<Setter TargetName="OuterBorder" Property="Stroke" Value="#5a5a5a" />
<Setter TargetName="OuterBorder" Property="Fill" Value="#dcdcdc" />
<Setter TargetName="SwitchKnobOff" Property="Fill" Value="#5a5a5a" />
<Setter TargetName="OuterBorder" Property="Stroke" Value="{DynamicResource ToggleSwitchStrokeOffPressed}" />
<Setter TargetName="OuterBorder" Property="Fill" Value="{DynamicResource ToggleSwitchFillOffPressed}" />
<Setter TargetName="SwitchKnobOff" Property="Fill" Value="{DynamicResource ToggleSwitchKnobFillOffPressed}" />
<Setter TargetName="SwitchKnobOn" Property="Fill" Value="{DynamicResource ToggleSwitchKnobFillOnPressed}" />
<Setter TargetName="SwitchKnobBounds" Property="Fill" Value="{DynamicResource ToggleSwitchFillOnPressed}" />
<Setter TargetName="SwitchKnobBounds" Property="Stroke" Value="{DynamicResource ToggleSwitchStrokeOnPressed}" />

View file

@ -6,6 +6,7 @@
xmlns:primitives="http://schemas.modernwpf.com/2019"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<SolidColorBrush x:Key="Color00B" Color="#2b2b2b" />
<SolidColorBrush x:Key="Color01B" Color="#202020" />
<SolidColorBrush x:Key="Color02B" Color="#2b2b2b" />
<SolidColorBrush x:Key="Color03B" Color="#1d1d1d" />
@ -22,6 +23,15 @@
<SolidColorBrush x:Key="Color14B" Color="#3f3f3f" />
<SolidColorBrush x:Key="Color15B" Color="#5d5d5d" />
<SolidColorBrush x:Key="Color16B" Color="#434343" />
<SolidColorBrush x:Key="Color17B" Color="#cccccc" />
<SolidColorBrush x:Key="Color18B" Color="#999999" />
<SolidColorBrush x:Key="Color19B" Color="#2a2a2a" />
<SolidColorBrush x:Key="Color20B" Color="#303030" />
<SolidColorBrush x:Key="Color21B" Color="#464646" />
<SolidColorBrush x:Key="Color22B" Color="#3c3c3c" />
<SolidColorBrush x:Key="Color23B" Color="#272727" />
<SolidColorBrush x:Key="Color24B" Color="#9a9a9a" />
<SolidColorBrush x:Key="Color25B" Color="#323232" />
<Color x:Key="Color01">#202020</Color>
<Color x:Key="Color02">#2b2b2b</Color>
<Color x:Key="Color03">#1d1d1d</Color>
@ -38,11 +48,21 @@
<Color x:Key="Color14">#3f3f3f</Color>
<Color x:Key="Color15">#5d5d5d</Color>
<Color x:Key="Color16">#434343</Color>
<Color x:Key="Color17">#cccccc</Color>
<Color x:Key="Color18">#999999</Color>
<Color x:Key="Color19">#2a2a2a</Color>
<Color x:Key="Color20">#303030</Color>
<Color x:Key="Color21">#464646</Color>
<Color x:Key="Color22">#3c3c3c</Color>
<Color x:Key="Color23">#272727</Color>
<Color x:Key="Color24">#9a9a9a</Color>
<Color x:Key="Color25">#323232</Color>
<SolidColorBrush x:Key="ButtonOutBorder" Color="Transparent" />
<SolidColorBrush x:Key="ButtonInsideBorder" Color="#3f3f3f" />
<SolidColorBrush x:Key="ButtonBackgroundColor" Color="#373737" />
<SolidColorBrush x:Key="ButtonMouseOver" Color="#323232" />
<SolidColorBrush x:Key="ButtonMouseOver" Color="#3c3c3c" />
<SolidColorBrush x:Key="ButtonInsideMouseOverBorder" Color="#3f3f3f" />
<SolidColorBrush x:Key="ButtonMousePressed" Color="#272727" />
<SolidColorBrush x:Key="ButtonMousePressedInsideBorder" Color="#2a2a2a" />
@ -64,7 +84,36 @@
<SolidColorBrush x:Key="PressedCustomRadioBorder" Color="#b4b4b4" />
<SolidColorBrush x:Key="PressedCustomRadioBackground" Color="#1d1d1d" />
<CornerRadius x:Key="ControlCornerRadius">2,2,2,2</CornerRadius>
<m:StaticResource x:Key="CustomComboOutline" ResourceKey="Color13B" />
<m:StaticResource x:Key="CustomComboInline" ResourceKey="Color21B" />
<m:StaticResource x:Key="PopUpBorderBG" ResourceKey="Color07B" />
<m:StaticResource x:Key="CustomComboHoverBG" ResourceKey="Color22B" />
<m:StaticResource x:Key="CustomComboPressedBG" ResourceKey="Color23B" />
<m:StaticResource x:Key="CustomComboPressedOutLine" ResourceKey="Color19B" />
<m:StaticResource x:Key="CustomComboPressedText" ResourceKey="Color08B" />
<m:StaticResource x:Key="CustomComboDisabledBG" ResourceKey="Color07B" />
<m:StaticResource x:Key="CustomComboDisabledOutLine" ResourceKey="Color13B" />
<m:StaticResource x:Key="CustomComboDisabledText" ResourceKey="Color08B" />
<m:StaticResource x:Key="CustomComboHighlightBG" ResourceKey="Color22B" />
<Thickness x:Key="CustomComboOutlineThickness">1,1,1,1</Thickness>
<Thickness x:Key="CustomComboInlineThickness">0,0,0,0</Thickness>
<Thickness x:Key="PressedCustomComboOutlineThickness">1,1,1,1</Thickness>
<Thickness x:Key="DisabledCustomComboOutlineThickness">1,1,1,1</Thickness>
<m:StaticResource x:Key="CustomTextBoxOutline" ResourceKey="Color20B" />
<m:StaticResource x:Key="CustomTextBoxBG" ResourceKey="Color06B" />
<m:StaticResource x:Key="CustomTextBoxInline" ResourceKey="Color24B" />
<m:StaticResource x:Key="CustomTextBoxHoverBG" ResourceKey="Color25B" />
<Thickness x:Key="CustomTextBoxOutlineThickness">1,1,1,1</Thickness>
<Thickness x:Key="CustomTextBoxInlineThickness">0,0,0,1</Thickness>
<CornerRadius x:Key="ControlCornerRadius">4,4,4,4</CornerRadius>
<CornerRadius x:Key="OverlayCornerRadius">4,4,4,4</CornerRadius>
<SolidColorBrush x:Key="SystemAccentColorDark1Brush" Color="{m:DynamicColor SystemAccentColorDark1}" />
@ -517,11 +566,11 @@
<m:StaticResource x:Key="CheckBoxBorderBrushIndeterminateDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeUnchecked" ResourceKey="SystemControlForegroundBaseMediumBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeUncheckedPointerOver" ResourceKey="SystemControlHighlightBaseMediumHighBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeUncheckedPressed" ResourceKey="SystemControlHighlightBaseHighBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeUncheckedPressed" ResourceKey="Color21B" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeUncheckedDisabled" ResourceKey="SystemControlDisabledBaseMediumLowBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeChecked" ResourceKey="SystemControlHighlightTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeCheckedPointerOver" ResourceKey="SystemAccentColorDark1Brush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeCheckedPressed" ResourceKey="SystemAccentColorLight1Brush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeCheckedPointerOver" ResourceKey="SystemAccentColorLight1Brush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeCheckedPressed" ResourceKey="SystemControlBackgroundAccentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeCheckedDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeIndeterminate" ResourceKey="SystemControlForegroundAccentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeIndeterminatePointerOver" ResourceKey="SystemAccentColorLight1Brush" />
@ -529,11 +578,11 @@
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeIndeterminateDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillUnchecked" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillUncheckedPointerOver" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillUncheckedPressed" ResourceKey="SystemControlBackgroundBaseMediumLowBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillUncheckedPressed" ResourceKey="Color20B" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillUncheckedDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillChecked" ResourceKey="SystemControlHighlightAccentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillChecked" ResourceKey="SystemAccentColorLight2Brush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillCheckedPointerOver" ResourceKey="SystemAccentColorLight1Brush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillCheckedPressed" ResourceKey="SystemAccentColorDark1Brush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillCheckedPressed" ResourceKey="SystemControlBackgroundAccentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillCheckedDisabled" ResourceKey="SystemControlBackgroundBaseMediumLowBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillIndeterminate" ResourceKey="SystemControlHighlightAccentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillIndeterminatePointerOver" ResourceKey="SystemAccentColorLight1Brush" />
@ -543,9 +592,9 @@
<m:StaticResource x:Key="CheckBoxCheckGlyphForegroundUncheckedPointerOver" ResourceKey="SystemControlHighlightAltChromeWhiteBrush" />
<m:StaticResource x:Key="CheckBoxCheckGlyphForegroundUncheckedPressed" ResourceKey="SystemControlHighlightAltChromeWhiteBrush" />
<m:StaticResource x:Key="CheckBoxCheckGlyphForegroundUncheckedDisabled" ResourceKey="SystemControlHighlightAltChromeWhiteBrush" />
<m:StaticResource x:Key="CheckBoxCheckGlyphForegroundChecked" ResourceKey="SystemControlHighlightAltChromeWhiteBrush" />
<m:StaticResource x:Key="CheckBoxCheckGlyphForegroundCheckedPointerOver" ResourceKey="SystemControlHighlightAltChromeWhiteBrush" />
<m:StaticResource x:Key="CheckBoxCheckGlyphForegroundCheckedPressed" ResourceKey="SystemControlHighlightAltChromeWhiteBrush" />
<m:StaticResource x:Key="CheckBoxCheckGlyphForegroundChecked" ResourceKey="Color02B" />
<m:StaticResource x:Key="CheckBoxCheckGlyphForegroundCheckedPointerOver" ResourceKey="Color02B" />
<m:StaticResource x:Key="CheckBoxCheckGlyphForegroundCheckedPressed" ResourceKey="Color02B" />
<m:StaticResource x:Key="CheckBoxCheckGlyphForegroundCheckedDisabled" ResourceKey="SystemControlHighlightAltChromeWhiteBrush" />
<m:StaticResource x:Key="CheckBoxCheckGlyphForegroundIndeterminate" ResourceKey="SystemControlHighlightAltChromeWhiteBrush" />
<m:StaticResource x:Key="CheckBoxCheckGlyphForegroundIndeterminatePointerOver" ResourceKey="SystemControlHighlightAltChromeWhiteBrush" />
@ -559,8 +608,8 @@
<Thickness x:Key="ComboBoxDropdownBorderPadding">0</Thickness>
<Thickness x:Key="ComboBoxDropdownContentMargin">0,4,0,4</Thickness>
<FontWeight x:Key="ComboBoxHeaderThemeFontWeight">Normal</FontWeight>
<m:StaticResource x:Key="ComboBoxBackground" ResourceKey="SystemControlBackgroundAltMediumLowBrush" />
<m:StaticResource x:Key="ComboBoxBackgroundPointerOver" ResourceKey="SystemControlPageBackgroundAltMediumBrush" />
<m:StaticResource x:Key="ComboBoxBackground" ResourceKey="Color12B" />
<m:StaticResource x:Key="ComboBoxBackgroundPointerOver" ResourceKey="Color22B" />
<m:StaticResource x:Key="ComboBoxBackgroundPressed" ResourceKey="SystemControlBackgroundListMediumBrush" />
<m:StaticResource x:Key="ComboBoxBackgroundDisabled" ResourceKey="SystemControlBackgroundBaseLowBrush" />
<m:StaticResource x:Key="ComboBoxBackgroundUnfocused" ResourceKey="SystemControlHighlightListAccentLowBrush" />
@ -611,7 +660,7 @@
<m:StaticResource x:Key="ComboBoxItemForegroundSelectedPressed" ResourceKey="SystemControlHighlightAltBaseHighBrush" />
<m:StaticResource x:Key="ComboBoxItemForegroundSelectedPointerOver" ResourceKey="SystemControlHighlightAltBaseHighBrush" />
<m:StaticResource x:Key="ComboBoxItemForegroundSelectedDisabled" ResourceKey="SystemControlDisabledBaseMediumLowBrush" />
<m:StaticResource x:Key="ComboBoxItemBackground" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ComboBoxItemBackground" ResourceKey="Color12B" />
<m:StaticResource x:Key="ComboBoxItemBackgroundPressed" ResourceKey="SystemControlHighlightListMediumBrush" />
<m:StaticResource x:Key="ComboBoxItemBackgroundPointerOver" ResourceKey="SystemControlHighlightListLowBrush" />
<m:StaticResource x:Key="ComboBoxItemBackgroundDisabled" ResourceKey="SystemControlTransparentBrush" />
@ -1216,23 +1265,23 @@
<m:StaticResource x:Key="SliderContainerBackgroundPointerOver" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="SliderContainerBackgroundPressed" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="SliderContainerBackgroundDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="SliderThumbBackground" ResourceKey="SystemControlForegroundAccentBrush" />
<m:StaticResource x:Key="SliderThumbBackground" ResourceKey="SystemAccentColorLight2Brush" />
<m:StaticResource x:Key="SliderThumbBackgroundPointerOver" ResourceKey="SystemAccentColorLight1Brush" />
<m:StaticResource x:Key="SliderThumbBackgroundPressed" ResourceKey="SystemAccentColorDark1Brush" />
<m:StaticResource x:Key="SliderThumbBackgroundDisabled" ResourceKey="SystemControlDisabledChromeDisabledHighBrush" />
<m:StaticResource x:Key="SliderTrackFill" ResourceKey="SystemControlForegroundBaseMediumLowBrush" />
<m:StaticResource x:Key="SliderTrackFillPointerOver" ResourceKey="SystemControlForegroundBaseMediumBrush" />
<m:StaticResource x:Key="SliderTrackFillPointerOver" ResourceKey="SystemControlForegroundBaseMediumLowBrush" />
<m:StaticResource x:Key="SliderTrackFillPressed" ResourceKey="SystemControlForegroundBaseMediumLowBrush" />
<m:StaticResource x:Key="SliderTrackFillDisabled" ResourceKey="SystemControlDisabledChromeDisabledHighBrush" />
<m:StaticResource x:Key="SliderTrackValueFill" ResourceKey="SystemControlHighlightAccentBrush" />
<m:StaticResource x:Key="SliderTrackValueFillPointerOver" ResourceKey="SystemControlHighlightAccentBrush" />
<m:StaticResource x:Key="SliderTrackValueFill" ResourceKey="SystemAccentColorLight2Brush" />
<m:StaticResource x:Key="SliderTrackValueFillPointerOver" ResourceKey="SystemAccentColorLight1Brush" />
<m:StaticResource x:Key="SliderTrackValueFillPressed" ResourceKey="SystemControlHighlightAccentBrush" />
<m:StaticResource x:Key="SliderTrackValueFillDisabled" ResourceKey="SystemControlDisabledChromeDisabledHighBrush" />
<m:StaticResource x:Key="SliderHeaderForeground" ResourceKey="SystemControlForegroundBaseHighBrush" />
<m:StaticResource x:Key="SliderHeaderForegroundDisabled" ResourceKey="SystemControlDisabledBaseMediumLowBrush" />
<m:StaticResource x:Key="SliderTickBarFill" ResourceKey="SystemControlForegroundBaseMediumLowBrush" />
<m:StaticResource x:Key="SliderTickBarFillDisabled" ResourceKey="SystemControlDisabledBaseMediumLowBrush" />
<m:StaticResource x:Key="SliderInlineTickBarFill" ResourceKey="SystemControlBackgroundAltHighBrush" />
<m:StaticResource x:Key="SliderInlineTickBarFill" ResourceKey="SystemAccentColorLight2Brush" />
<!-- Resources for SplitButton -->
<m:StaticResource x:Key="SplitButtonBackground" ResourceKey="SystemControlBackgroundBaseLowBrush" />
@ -1393,15 +1442,15 @@
<m:StaticResource x:Key="ToggleSwitchContainerBackgroundPointerOver" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ToggleSwitchContainerBackgroundPressed" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ToggleSwitchContainerBackgroundDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ToggleSwitchFillOff" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ToggleSwitchFillOff" ResourceKey="Color19B" />
<m:StaticResource x:Key="ToggleSwitchFillOffPointerOver" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ToggleSwitchFillOffPressed" ResourceKey="SystemControlHighlightBaseMediumLowBrush" />
<m:StaticResource x:Key="ToggleSwitchFillOffDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ToggleSwitchStrokeOff" ResourceKey="SystemControlForegroundBaseMediumBrush" />
<m:StaticResource x:Key="ToggleSwitchStrokeOffPointerOver" ResourceKey="SystemControlHighlightBaseMediumHighBrush" />
<m:StaticResource x:Key="ToggleSwitchStrokeOffPressed" ResourceKey="SystemControlForegroundBaseHighBrush" />
<m:StaticResource x:Key="ToggleSwitchStrokeOff" ResourceKey="Color18B" />
<m:StaticResource x:Key="ToggleSwitchStrokeOffPointerOver" ResourceKey="Color18B" />
<m:StaticResource x:Key="ToggleSwitchStrokeOffPressed" ResourceKey="Color18B" />
<m:StaticResource x:Key="ToggleSwitchStrokeOffDisabled" ResourceKey="SystemControlDisabledBaseMediumLowBrush" />
<m:StaticResource x:Key="ToggleSwitchFillOn" ResourceKey="SystemControlHighlightAccentBrush" />
<m:StaticResource x:Key="ToggleSwitchFillOn" ResourceKey="SystemAccentColorLight2Brush" />
<m:StaticResource x:Key="ToggleSwitchFillOnPointerOver" ResourceKey="SystemAccentColorLight1Brush" />
<m:StaticResource x:Key="ToggleSwitchFillOnPressed" ResourceKey="SystemAccentColorDark1Brush" />
<m:StaticResource x:Key="ToggleSwitchFillOnDisabled" ResourceKey="SystemControlDisabledBaseLowBrush" />
@ -1409,13 +1458,13 @@
<m:StaticResource x:Key="ToggleSwitchStrokeOnPointerOver" ResourceKey="SystemAccentColorLight1Brush" />
<m:StaticResource x:Key="ToggleSwitchStrokeOnPressed" ResourceKey="SystemAccentColorDark1Brush" />
<m:StaticResource x:Key="ToggleSwitchStrokeOnDisabled" ResourceKey="SystemControlDisabledBaseMediumLowBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOff" ResourceKey="SystemControlHighlightBaseHighBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOff" ResourceKey="Color17B" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOffPointerOver" ResourceKey="SystemControlHighlightBaseHighBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOffPressed" ResourceKey="SystemControlHighlightBaseHighBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOffDisabled" ResourceKey="SystemControlDisabledBaseMediumLowBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOn" ResourceKey="SystemControlHighlightAltChromeWhiteBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOnPointerOver" ResourceKey="SystemControlHighlightChromeWhiteBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOnPressed" ResourceKey="SystemControlHighlightAltChromeWhiteBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOn" ResourceKey="Color02B" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOnPointerOver" ResourceKey="Color02B" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOnPressed" ResourceKey="Color02B" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOnDisabled" ResourceKey="SystemControlPageBackgroundBaseLowBrush" />
<!-- Resources for ToolTip -->
@ -1465,9 +1514,9 @@
<m:StaticResource x:Key="TextControlForegroundPointerOver" ResourceKey="SystemControlForegroundBaseHighBrush" />
<m:StaticResource x:Key="TextControlForegroundFocused" ResourceKey="SystemControlForegroundBaseHighBrush" />
<m:StaticResource x:Key="TextControlForegroundDisabled" ResourceKey="SystemControlDisabledChromeDisabledLowBrush" />
<m:StaticResource x:Key="TextControlBackground" ResourceKey="SystemControlBackgroundAltMediumLowBrush" />
<m:StaticResource x:Key="TextControlBackground" ResourceKey="Color09B" />
<m:StaticResource x:Key="TextControlBackgroundPointerOver" ResourceKey="SystemControlBackgroundAltMediumBrush" />
<m:StaticResource x:Key="TextControlBackgroundFocused" ResourceKey="SystemControlBackgroundAltHighBrush" />
<m:StaticResource x:Key="TextControlBackgroundFocused" ResourceKey="Color01B" />
<m:StaticResource x:Key="TextControlBackgroundDisabled" ResourceKey="SystemControlBackgroundBaseLowBrush" />
<m:StaticResource x:Key="TextControlBorderBrush" ResourceKey="SystemControlForegroundBaseMediumBrush" />
<m:StaticResource x:Key="TextControlBorderBrushPointerOver" ResourceKey="SystemControlHighlightBaseMediumHighBrush" />
@ -1479,7 +1528,7 @@
<m:StaticResource x:Key="TextControlPlaceholderForegroundDisabled" ResourceKey="SystemControlDisabledChromeDisabledLowBrush" />
<m:StaticResource x:Key="TextControlHeaderForeground" ResourceKey="SystemControlForegroundBaseHighBrush" />
<m:StaticResource x:Key="TextControlHeaderForegroundDisabled" ResourceKey="SystemControlDisabledBaseMediumLowBrush" />
<m:StaticResource x:Key="TextControlSelectionHighlightColor" ResourceKey="SystemControlHighlightAccentBrush" />
<m:StaticResource x:Key="TextControlSelectionHighlightColor" ResourceKey="SystemAccentColorLight2Brush" />
<m:StaticResource x:Key="TextControlButtonBackground" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="TextControlButtonBackgroundPointerOver" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="TextControlButtonBackgroundPressed" ResourceKey="SystemControlHighlightAccentBrush" />

View file

@ -6,11 +6,12 @@
xmlns:primitives="http://schemas.modernwpf.com/2019"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<SolidColorBrush x:Key="Color00B" Color="#fbfbfb" />
<SolidColorBrush x:Key="Color01B" Color="#f3f3f3" />
<SolidColorBrush x:Key="Color02B" Color="#ffffff" />
<SolidColorBrush x:Key="Color03B" Color="#e5e5e5" />
<SolidColorBrush x:Key="Color04B" Color="#5f5f5f" />
<SolidColorBrush x:Key="Color05B" Color="#000000" />
<SolidColorBrush x:Key="Color05B" Color="#1b1b1b" />
<SolidColorBrush x:Key="Color06B" Color="#eaeaea" />
<SolidColorBrush x:Key="Color07B" Color="#f6f6f6" />
<SolidColorBrush x:Key="Color08B" Color="#878787" />
@ -22,6 +23,12 @@
<SolidColorBrush x:Key="Color14B" Color="#d3d3d3" />
<SolidColorBrush x:Key="Color15B" Color="#5d5d5d" />
<SolidColorBrush x:Key="Color16B" Color="#f6f6f6" />
<SolidColorBrush x:Key="Color17B" Color="#868686" />
<SolidColorBrush x:Key="Color18B" Color="#b7b7b7" />
<SolidColorBrush x:Key="Color19B" Color="#dcdcdc" />
<SolidColorBrush x:Key="Color20B" Color="#5a5a5a" />
<SolidColorBrush x:Key="Color21B" Color="#cccccc" />
<SolidColorBrush x:Key="Color22B" Color="#f0f0f0" />
<Color x:Key="Color01">#f3f3f3</Color>
<Color x:Key="Color02">#ffffff</Color>
<Color x:Key="Color03">#e5e5e5</Color>
@ -38,6 +45,12 @@
<Color x:Key="Color14">#d3d3d3</Color>
<Color x:Key="Color15">#5d5d5d</Color>
<Color x:Key="Color16">#f6f6f6</Color>
<Color x:Key="Color17">#868686</Color>
<Color x:Key="Color18">#b7b7b7</Color>
<Color x:Key="Color19">#dcdcdc</Color>
<Color x:Key="Color20">#5a5a5a</Color>
<Color x:Key="Color21">#cccccc</Color>
<Color x:Key="Color22">#f0f0f0</Color>
<SolidColorBrush x:Key="ButtonOutBorder" Color="#e5e5e5" />
<SolidColorBrush x:Key="ButtonInsideBorder" Color="#d3d3d3" />
@ -54,8 +67,8 @@
<Thickness x:Key="CustomButtonInsideBorderThickness">0,0,0,2</Thickness>
<Thickness x:Key="PressedCustomButtonOutBorderThickness">1,1,1,1</Thickness>
<Thickness x:Key="PressedCustomButtonInsideBorderThickness">0,0,0,1</Thickness>
<Thickness x:Key="DisabledCustomButtonOutBorderThickness">1,1,1,0</Thickness>
<Thickness x:Key="DisabledCustomButtonInsideBorderThickness">0,0,0,1</Thickness>
<Thickness x:Key="DisabledCustomButtonOutBorderThickness">1,1,1,1</Thickness>
<Thickness x:Key="DisabledCustomButtonInsideBorderThickness">0,0,0,0</Thickness>
<SolidColorBrush x:Key="CustomRadioBorder" Color="#858585" />
<SolidColorBrush x:Key="CustomRadioBackground" Color="#ededed" />
@ -64,9 +77,39 @@
<SolidColorBrush x:Key="PressedCustomRadioBorder" Color="#b4b4b4" />
<SolidColorBrush x:Key="PressedCustomRadioBackground" Color="#dcdcdc" />
<m:StaticResource x:Key="CustomComboOutline" ResourceKey="Color13B" />
<m:StaticResource x:Key="CustomComboInline" ResourceKey="Color21B" />
<m:StaticResource x:Key="PopUpBorderBG" ResourceKey="Color07B" />
<m:StaticResource x:Key="CustomComboHoverBG" ResourceKey="Color07B" />
<m:StaticResource x:Key="CustomComboPressedBG" ResourceKey="Color07B" />
<m:StaticResource x:Key="CustomComboPressedOutLine" ResourceKey="Color13B" />
<m:StaticResource x:Key="CustomComboPressedText" ResourceKey="Color08B" />
<m:StaticResource x:Key="CustomComboDisabledBG" ResourceKey="Color07B" />
<m:StaticResource x:Key="CustomComboDisabledOutLine" ResourceKey="Color13B" />
<m:StaticResource x:Key="CustomComboDisabledText" ResourceKey="Color08B" />
<m:StaticResource x:Key="CustomComboHighlightBG" ResourceKey="Color22B" />
<Thickness x:Key="CustomComboOutlineThickness">1,1,1,0</Thickness>
<Thickness x:Key="CustomComboInlineThickness">0,0,0,2</Thickness>
<Thickness x:Key="PressedCustomComboOutlineThickness">1,1,1,1</Thickness>
<Thickness x:Key="DisabledCustomComboOutlineThickness">1,1,1,1</Thickness>
<m:StaticResource x:Key="CustomTextBoxOutline" ResourceKey="Color03B" />
<m:StaticResource x:Key="CustomTextBoxBG" ResourceKey="Color00B" />
<m:StaticResource x:Key="CustomTextBoxInline" ResourceKey="Color17B" />
<m:StaticResource x:Key="CustomTextBoxHoverBG" ResourceKey="Color16B" />
<Thickness x:Key="CustomTextBoxOutlineThickness">1,1,1,1</Thickness>
<Thickness x:Key="CustomTextBoxInlineThickness">0,0,0,1</Thickness>
<CornerRadius x:Key="ControlCornerRadius">2,2,2,2</CornerRadius>
<CornerRadius x:Key="OverlayCornerRadius">4,4,4,4</CornerRadius>
<SolidColorBrush x:Key="SystemAccentColorDark1Brush" Color="{m:DynamicColor SystemAccentColorDark1}" />
<SolidColorBrush x:Key="SystemAccentColorDark2Brush" Color="{m:DynamicColor SystemAccentColorDark2}" />
<SolidColorBrush x:Key="SystemAccentColorDark3Brush" Color="{m:DynamicColor SystemAccentColorDark3}" />
@ -504,8 +547,8 @@
<m:StaticResource x:Key="CheckBoxBackgroundIndeterminatePressed" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxBackgroundIndeterminateDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxBorderBrushUnchecked" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxBorderBrushUncheckedPointerOver" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxBorderBrushUncheckedPressed" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxBorderBrushUncheckedPointerOver" ResourceKey="Color17B" />
<m:StaticResource x:Key="CheckBoxBorderBrushUncheckedPressed" ResourceKey="Colr18B" />
<m:StaticResource x:Key="CheckBoxBorderBrushUncheckedDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxBorderBrushChecked" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxBorderBrushCheckedPointerOver" ResourceKey="SystemControlTransparentBrush" />
@ -515,9 +558,9 @@
<m:StaticResource x:Key="CheckBoxBorderBrushIndeterminatePointerOver" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxBorderBrushIndeterminatePressed" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxBorderBrushIndeterminateDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeUnchecked" ResourceKey="SystemControlForegroundBaseMediumBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeUncheckedPointerOver" ResourceKey="SystemControlHighlightBaseMediumHighBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeUncheckedPressed" ResourceKey="SystemControlHighlightBaseHighBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeUnchecked" ResourceKey="Color17B" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeUncheckedPointerOver" ResourceKey="Color17B" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeUncheckedPressed" ResourceKey="Color18B" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeUncheckedDisabled" ResourceKey="SystemControlDisabledBaseMediumLowBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeChecked" ResourceKey="SystemControlHighlightTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeCheckedPointerOver" ResourceKey="SystemAccentColorLight1Brush" />
@ -527,9 +570,9 @@
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeIndeterminatePointerOver" ResourceKey="SystemAccentColorLight1Brush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeIndeterminatePressed" ResourceKey="SystemAccentColorDark1Brush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundStrokeIndeterminateDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillUnchecked" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillUncheckedPointerOver" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillUncheckedPressed" ResourceKey="SystemControlBackgroundBaseMediumLowBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillUnchecked" ResourceKey="Color09B" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillUncheckedPointerOver" ResourceKey="Color13B" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillUncheckedPressed" ResourceKey="Color19B" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillUncheckedDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillChecked" ResourceKey="SystemControlHighlightAccentBrush" />
<m:StaticResource x:Key="CheckBoxCheckBackgroundFillCheckedPointerOver" ResourceKey="SystemAccentColorLight1Brush" />
@ -1395,13 +1438,13 @@
<m:StaticResource x:Key="ToggleSwitchContainerBackgroundPointerOver" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ToggleSwitchContainerBackgroundPressed" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ToggleSwitchContainerBackgroundDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ToggleSwitchFillOff" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ToggleSwitchFillOffPointerOver" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ToggleSwitchFillOffPressed" ResourceKey="SystemControlHighlightBaseMediumLowBrush" />
<m:StaticResource x:Key="ToggleSwitchFillOff" ResourceKey="Color09B" />
<m:StaticResource x:Key="ToggleSwitchFillOffPointerOver" ResourceKey="Color03B" />
<m:StaticResource x:Key="ToggleSwitchFillOffPressed" ResourceKey="Color19B" />
<m:StaticResource x:Key="ToggleSwitchFillOffDisabled" ResourceKey="SystemControlTransparentBrush" />
<m:StaticResource x:Key="ToggleSwitchStrokeOff" ResourceKey="SystemControlForegroundBaseMediumBrush" />
<m:StaticResource x:Key="ToggleSwitchStrokeOffPointerOver" ResourceKey="SystemControlHighlightBaseMediumHighBrush" />
<m:StaticResource x:Key="ToggleSwitchStrokeOffPressed" ResourceKey="SystemControlForegroundBaseHighBrush" />
<m:StaticResource x:Key="ToggleSwitchStrokeOff" ResourceKey="Color17B" />
<m:StaticResource x:Key="ToggleSwitchStrokeOffPointerOver" ResourceKey="Color17B" />
<m:StaticResource x:Key="ToggleSwitchStrokeOffPressed" ResourceKey="Color20B" />
<m:StaticResource x:Key="ToggleSwitchStrokeOffDisabled" ResourceKey="SystemControlDisabledBaseMediumLowBrush" />
<m:StaticResource x:Key="ToggleSwitchFillOn" ResourceKey="SystemControlHighlightAccentBrush" />
<m:StaticResource x:Key="ToggleSwitchFillOnPointerOver" ResourceKey="SystemAccentColorLight1Brush" />
@ -1411,9 +1454,9 @@
<m:StaticResource x:Key="ToggleSwitchStrokeOnPointerOver" ResourceKey="SystemControlHighlightListAccentHighBrush" />
<m:StaticResource x:Key="ToggleSwitchStrokeOnPressed" ResourceKey="SystemControlHighlightBaseMediumBrush" />
<m:StaticResource x:Key="ToggleSwitchStrokeOnDisabled" ResourceKey="SystemControlDisabledBaseMediumLowBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOff" ResourceKey="SystemControlForegroundBaseHighBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOffPointerOver" ResourceKey="SystemControlHighlightBaseHighBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOffPressed" ResourceKey="SystemControlHighlightBaseHighBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOff" ResourceKey="Color17B" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOffPointerOver" ResourceKey="Color17B" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOffPressed" ResourceKey="Color20B" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOffDisabled" ResourceKey="SystemControlDisabledBaseMediumLowBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOn" ResourceKey="SystemControlHighlightAltChromeWhiteBrush" />
<m:StaticResource x:Key="ToggleSwitchKnobFillOnPointerOver" ResourceKey="SystemControlHighlightChromeWhiteBrush" />

View file

@ -68,7 +68,7 @@
</Setter>
</Style>
<Style x:Key="SettingGroupBox" TargetType="{x:Type Border}">
<Setter Property="Background" Value="{StaticResource Color02B}" />
<Setter Property="Background" Value="{StaticResource Color00B}" />
<Setter Property="BorderBrush" Value="{StaticResource Color03B}" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="CornerRadius" Value="5" />