Blame view
sources/RoboforkApp/Style/Commons.xaml
774 Bytes
6312cbd86
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <!--Define groups color for vehicle setting--> <SolidColorBrush x:Key="SettingGroupColor01" Color="Tomato"/> <SolidColorBrush x:Key="SettingGroupColor02" Color="Aqua"/> <SolidColorBrush x:Key="SettingGroupColor03" Color="Yellow"/> <SolidColorBrush x:Key="SettingGroupColor04" Color="Chartreuse"/> <SolidColorBrush x:Key="SettingGroupColor05" Color="DarkKhaki"/> <SolidColorBrush x:Key="SettingGroupColor06" Color="Violet"/> <!--Define color for background form loading--> <SolidColorBrush x:Key="TransparentBlack" Color="Black" Opacity="0.5" /> </ResourceDictionary> |