Description
Background and Motivation
Since Windows 10 onwards, Accent color has been one of the key compoenents of visual styles in Windows controls. However, there is no easy way to get the system's accent color. Accent colors can be used in custom styles to align the styling of controls with what the OS is showing.
In earlier versions of Windows, visual styles were defined using system colors and brushes, and corresponding to that we had SystemColors
static class that contained getters to all the system colors, brushes and corresponding resource keys for using the colors and brushes in XAML.
Since, Accent color and it's variations are also system wide defined colors, we propose to expose them using the SystemColors
class.
API Proposal
public static class SystemColors
{
// Accent Colors
public static Color AccentColor;
public static Color AccentColorLight1;
public static Color AccentColorLight2;
public static Color AccentColorLight3;
public static Color AccentColorDark1;
public static Color AccentColorDark2;
public static Color AccentColorDark3;
// Accent Color Keys
public static ResourceKey AccentColorKey;
public static ResourceKey AccentColorLight1Key;
public static ResourceKey AccentColorLight2Key;
public static ResourceKey AccentColorLight3Key;
public static ResourceKey AccentColorDark1Key;
public static ResourceKey AccentColorDark2Key;
public static ResourceKey AccentColorDark3Key;
// Accent Color Brushes
public static SolidColorBrush AccentColorBrush;
public static SolidColorBrush AccentColorLight1Brush;
public static SolidColorBrush AccentColorLight2Brush;
public static SolidColorBrush AccentColorLight3Brush;
public static SolidColorBrush AccentColorDark1Brush;
public static SolidColorBrush AccentColorDark2Brush;
public static SolidColorBrush AccentColorDark3Brush;
// Accent Color Brush Keys
public static ResourceKey AccentColorBrushKey;
public static ResourceKey AccentColorLight1BrushKey;
public static ResourceKey AccentColorLight2BrushKey;
public static ResourceKey AccentColorLight3BrushKey;
public static ResourceKey AccentColorDark1BrushKey;
public static ResourceKey AccentColorDark2BrushKey;
public static ResourceKey AccentColorDark3BrushKey;
}
I think it may be possible to reduce the number of properties that we are exposing here, if the operations to calculate the variations of AccentColor are simpler. We don't know that yet so, I would like to keep these APIs experimental.
Alternative Design
Rather than having the accent colors defined here, we can introduce a new class, say AccentColorManager
which will store the system accent and opens up possibility for theme related customization.