-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.axaml
More file actions
16 lines (15 loc) · 705 Bytes
/
App.axaml
File metadata and controls
16 lines (15 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="MoSpeedUI.App"
RequestedThemeVariant="Light">
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
<Application.Resources>
<FontFamily x:Key="SuseFont">avares://MoSpeedUI/Assets/Fonts#SUSE</FontFamily>
</Application.Resources>
<Application.Styles>
<FluentTheme />
<Style Selector="ContentPresenter">
<Setter Property="FontFamily" Value="{StaticResource SuseFont}" />
</Style>
</Application.Styles>
</Application>