<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-namespace:System;assembly=mscorlib" > <SolidColorBrush x:Key="Color_title" Color="#FF464646"/> <SolidColorBrush x:Key="Color_unit" Color="#FF464646"/> <SolidColorBrush x:Key="Color_text" Color="#FF0b0b0b"/> <SolidColorBrush x:Key="Color_title_activity" Color="#FF008BE5"/> <SolidColorBrush x:Key="Color_text_activity" Color="#FF005083"/> <SolidColorBrush x:Key="Color_button1_b" Color="#FF008BE5"/> <SolidColorBrush x:Key="Color_button2_b" Color="#FF919191"/> <SolidColorBrush x:Key="Color_button_f" Color="#FFf1f1f1"/> <sys:Double x:Key="FontSize_title">18</sys:Double> <sys:Double x:Key="FontSize_unit">18</sys:Double> <sys:Double x:Key="FontSize_text">48</sys:Double> <Style x:Key="TextBlockStyle_title" TargetType="TextBlock"> <Setter Property="FontSize" Value="{StaticResource FontSize_title}"/> <Setter Property="Foreground" Value="{DynamicResource Color_title}"/> </Style> <Style x:Key="RunStyle_unit" TargetType="Run"> <Setter Property="FontSize" Value="{StaticResource FontSize_unit}"/> <Setter Property="Foreground" Value="{DynamicResource Color_unit}"/> </Style> <Style x:Key="RunStyle_text" TargetType="Run"> <Setter Property="FontSize" Value="{StaticResource FontSize_text}"/> <Setter Property="Foreground" Value="{DynamicResource Color_text}"/> </Style> <Style x:Key="TextBlockStyle_title_activity" TargetType="TextBlock"> <Setter Property="FontSize" Value="{StaticResource FontSize_title}"/> <Setter Property="Foreground" Value="{DynamicResource Color_title_activity}"/> </Style> <Style x:Key="RunStyle_text_activity" TargetType="Run"> <Setter Property="FontSize" Value="{StaticResource FontSize_text}"/> <Setter Property="Foreground" Value="{DynamicResource Color_text_activity}"/> </Style> </ResourceDictionary>