parent
e544812c48
commit
b0d40697bb
@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
x:Class="ex_CustomToolbar.ColorBlindTheme">
|
||||||
|
<Color x:Key="PrimaryBackgroundColor">#92CCDC</Color>
|
||||||
|
<Color x:Key="SecondaryBackgroundColor">#E1C2CE</Color>
|
||||||
|
|
||||||
|
<Color x:Key="PrimaryForegroundColor">#163D42</Color>
|
||||||
|
<Color x:Key="SecondaryForegroundColor">#446E77</Color>
|
||||||
|
</ResourceDictionary>
|
@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
x:Class="ex_CustomToolbar.DarkTheme">
|
||||||
|
|
||||||
|
<Color x:Key="PrimaryBackgroundColor">#2F2883</Color>
|
||||||
|
<Color x:Key="SecondaryBackgroundColor">#36743B</Color>
|
||||||
|
|
||||||
|
<Color x:Key="PrimaryForegroundColor">#96CBEA</Color>
|
||||||
|
<Color x:Key="SecondaryForegroundColor">#DBCB82</Color>
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
x:Class="ex_CustomToolbar.LightTheme">
|
||||||
|
<Color x:Key="PrimaryBackgroundColor">#96CBEA</Color>
|
||||||
|
<Color x:Key="SecondaryBackgroundColor">#DBCB82</Color>
|
||||||
|
|
||||||
|
<Color x:Key="PrimaryForegroundColor">#2F2883</Color>
|
||||||
|
<Color x:Key="SecondaryForegroundColor">#36743B</Color>
|
||||||
|
</ResourceDictionary>
|
Loading…
Reference in new issue