Skip to content

Instantly share code, notes, and snippets.

@Char0394
Last active July 13, 2024 01:40
Show Gist options
  • Save Char0394/09d0c3ea0e0fcff2315c0ce230e5763f to your computer and use it in GitHub Desktop.
Save Char0394/09d0c3ea0e0fcff2315c0ce230e5763f to your computer and use it in GitHub Desktop.
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
<Style TargetType="Label" Class="Small">
<Setter Property="FontSize" Value="14" />
</Style>
<Style TargetType="Label" Class="Medium">
<Setter Property="FontSize" Value="16" />
</Style>
<Style TargetType="Label" Class="Bold" >
<Setter Property="FontFamily" Value="OpenSansSemibold" />
<Setter Property="TextColor" Value="Black" />
</Style>
<Style TargetType="Label" Class="Normal" >
<Setter Property="FontFamily" Value="OpenSansRegular" />
<Setter Property="TextColor" Value="CornflowerBlue" />
</Style>
</ResourceDictionary>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment