| 12345678910111213141516171819202122232425262728293031 | <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">    <SolidColorBrush x:Key="MainTitleColor" Color="#24272c"/>    <SolidColorBrush x:Key="WindowColor" Color="#7ebeff"/>    <SolidColorBrush x:Key="ThemeColor" Color="#076db6"/>    <SolidColorBrush x:Key="SubThemeColor" Color="#0099ff"/>    <SolidColorBrush x:Key="LightThemeColor" Color="#aaddff"/>    <SolidColorBrush x:Key="DarkBorderColor" Color="#8a8a8a"/>    <SolidColorBrush x:Key="BorderBackgroundColor" Color="#e6e6e6"/>    <SolidColorBrush x:Key="BackgroundColor" Color="#ddf0ff"/>    <SolidColorBrush x:Key="BackgroundDarkColor" Color="#d6d6d6"/>    <SolidColorBrush x:Key="TextColor" Color="#fdfdfd"/>    <SolidColorBrush x:Key="TextDarkColor" Color="#1e1e1e"/>    <SolidColorBrush x:Key="NormalColor" Color="#14dd7c"/>    <SolidColorBrush x:Key="WarningColor" Color="#FF9933"/>    <SolidColorBrush x:Key="EmergencyColor" Color="#ff6666"/>    <SolidColorBrush x:Key="DisableColor" Color="#888888"/>    <SolidColorBrush x:Key="LightNormalColor" Color="#d1f7e4"/>    <SolidColorBrush x:Key="LightWarningColor" Color="#ffd8b2"/>    <SolidColorBrush x:Key="LightEmergencyColor" Color="#ffc5c5"/>    <SolidColorBrush x:Key="LightDisableColor" Color="#cccccc"/>    <SolidColorBrush x:Key="NiceBlue" Color="#0083ff"/>    <SolidColorBrush x:Key="NiceLightBlue" Color="#aaddff"/>    <SolidColorBrush x:Key="NiceGreen" Color="#00CC33"/></ResourceDictionary>
 |