|
| 1 | +<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| 2 | + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
| 3 | + |
| 4 | + <!-- |
| 5 | + Typography Definitions for PrettyScreenSHOT |
| 6 | +
|
| 7 | + Defines text styles for consistent typography across the application. |
| 8 | + --> |
| 9 | + |
| 10 | + <!-- Title Styles --> |
| 11 | + <Style x:Key="TitleLargeText" TargetType="TextBlock"> |
| 12 | + <Setter Property="FontSize" Value="28"/> |
| 13 | + <Setter Property="FontWeight" Value="SemiBold"/> |
| 14 | + <Setter Property="Margin" Value="0,0,0,16"/> |
| 15 | + </Style> |
| 16 | + |
| 17 | + <Style x:Key="TitleText" TargetType="TextBlock"> |
| 18 | + <Setter Property="FontSize" Value="24"/> |
| 19 | + <Setter Property="FontWeight" Value="SemiBold"/> |
| 20 | + <Setter Property="Margin" Value="0,0,0,12"/> |
| 21 | + </Style> |
| 22 | + |
| 23 | + <Style x:Key="SubtitleText" TargetType="TextBlock"> |
| 24 | + <Setter Property="FontSize" Value="20"/> |
| 25 | + <Setter Property="FontWeight" Value="SemiBold"/> |
| 26 | + <Setter Property="Margin" Value="0,0,0,12"/> |
| 27 | + </Style> |
| 28 | + |
| 29 | + <!-- Header Styles --> |
| 30 | + <Style x:Key="HeaderText" TargetType="TextBlock"> |
| 31 | + <Setter Property="FontSize" Value="18"/> |
| 32 | + <Setter Property="FontWeight" Value="SemiBold"/> |
| 33 | + <Setter Property="Margin" Value="0,0,0,8"/> |
| 34 | + </Style> |
| 35 | + |
| 36 | + <Style x:Key="SubheaderText" TargetType="TextBlock"> |
| 37 | + <Setter Property="FontSize" Value="16"/> |
| 38 | + <Setter Property="FontWeight" Value="Medium"/> |
| 39 | + <Setter Property="Margin" Value="0,0,0,8"/> |
| 40 | + </Style> |
| 41 | + |
| 42 | + <!-- Body Styles --> |
| 43 | + <Style x:Key="BodyLargeText" TargetType="TextBlock"> |
| 44 | + <Setter Property="FontSize" Value="15"/> |
| 45 | + <Setter Property="FontWeight" Value="Regular"/> |
| 46 | + </Style> |
| 47 | + |
| 48 | + <Style x:Key="BodyText" TargetType="TextBlock"> |
| 49 | + <Setter Property="FontSize" Value="14"/> |
| 50 | + <Setter Property="FontWeight" Value="Regular"/> |
| 51 | + </Style> |
| 52 | + |
| 53 | + <Style x:Key="BodySmallText" TargetType="TextBlock"> |
| 54 | + <Setter Property="FontSize" Value="13"/> |
| 55 | + <Setter Property="FontWeight" Value="Regular"/> |
| 56 | + </Style> |
| 57 | + |
| 58 | + <!-- Caption/Label Styles --> |
| 59 | + <Style x:Key="CaptionText" TargetType="TextBlock"> |
| 60 | + <Setter Property="FontSize" Value="12"/> |
| 61 | + <Setter Property="FontWeight" Value="Regular"/> |
| 62 | + <Setter Property="Foreground" Value="{DynamicResource TextFillColorSecondaryBrush}"/> |
| 63 | + </Style> |
| 64 | + |
| 65 | + <Style x:Key="LabelText" TargetType="TextBlock"> |
| 66 | + <Setter Property="FontSize" Value="13"/> |
| 67 | + <Setter Property="FontWeight" Value="SemiBold"/> |
| 68 | + <Setter Property="Margin" Value="0,0,0,4"/> |
| 69 | + </Style> |
| 70 | + |
| 71 | + <!-- Monospace Styles --> |
| 72 | + <Style x:Key="MonospaceText" TargetType="TextBlock"> |
| 73 | + <Setter Property="FontFamily" Value="Consolas, Courier New, monospace"/> |
| 74 | + <Setter Property="FontSize" Value="13"/> |
| 75 | + </Style> |
| 76 | + |
| 77 | +</ResourceDictionary> |
0 commit comments