nitai/projects
rblxtool / src / ui / RblxTool / Themes / Styles.xaml
42 lines · 1.7 KB Raw
1<ResourceDictionary
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
4
5 <x:Double x:Key="CardCornerRadiusValue">8</x:Double>
6 <Thickness x:Key="CardPadding">16</Thickness>
7 <Thickness x:Key="PagePadding">24,20,24,20</Thickness>
8
9 <Style x:Key="CardBorder" TargetType="Border">
10 <Setter Property="Background" Value="{ThemeResource CardBackgroundFillColorDefaultBrush}" />
11 <Setter Property="BorderBrush" Value="{ThemeResource CardStrokeColorDefaultBrush}" />
12 <Setter Property="BorderThickness" Value="1" />
13 <Setter Property="CornerRadius" Value="8" />
14 <Setter Property="Padding" Value="16" />
15 </Style>
16
17 <Style x:Key="SectionTitle" TargetType="TextBlock">
18 <Setter Property="FontSize" Value="20" />
19 <Setter Property="FontWeight" Value="SemiBold" />
20 <Setter Property="Margin" Value="0,0,0,12" />
21 </Style>
22
23 <Style x:Key="FieldLabel" TargetType="TextBlock">
24 <Setter Property="Opacity" Value="0.7" />
25 <Setter Property="FontSize" Value="12" />
26 <Setter Property="Margin" Value="0,0,0,4" />
27 </Style>
28
29 <Style x:Key="MetricValue" TargetType="TextBlock">
30 <Setter Property="FontSize" Value="26" />
31 <Setter Property="FontWeight" Value="SemiBold" />
32 <Setter Property="FontFamily" Value="Consolas" />
33 </Style>
34
35 <Style x:Key="LogText" TargetType="TextBlock">
36 <Setter Property="FontFamily" Value="Cascadia Mono, Consolas" />
37 <Setter Property="FontSize" Value="12" />
38 <Setter Property="TextWrapping" Value="NoWrap" />
39 <Setter Property="IsTextSelectionEnabled" Value="True" />
40 </Style>
41
42</ResourceDictionary>