File size: 697 Bytes
1c4658f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Application
    x:Class="FastSeek.WinUI.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Application.Resources>
        <ResourceDictionary>
            <Color x:Key="Bg">#161A1D</Color>
            <Color x:Key="Panel">#20262B</Color>
            <Color x:Key="Accent">#4FC3F7</Color>
            <SolidColorBrush x:Key="BgBrush" Color="{StaticResource Bg}" />
            <SolidColorBrush x:Key="PanelBrush" Color="{StaticResource Panel}" />
            <SolidColorBrush x:Key="AccentBrush" Color="{StaticResource Accent}" />
        </ResourceDictionary>
    </Application.Resources>
</Application>