mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 04:07:40 +02:00
35 lines
1.3 KiB
Plaintext
35 lines
1.3 KiB
Plaintext
|
|
<ResourceDictionary
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:system="clr-namespace:System;assembly=System.Runtime">
|
||
|
|
|
||
|
|
<!-- Metadata -->
|
||
|
|
<system:String x:Key="Theme.Name">Light.Accent1</system:String>
|
||
|
|
<system:String x:Key="Theme.Origin">PowerToysRun</system:String>
|
||
|
|
<system:String x:Key="Theme.DisplayName">Accent1 (Light)</system:String>
|
||
|
|
<system:String x:Key="Theme.BaseColorScheme">Light</system:String>
|
||
|
|
<system:String x:Key="Theme.ColorScheme">Accent1</system:String>
|
||
|
|
<Color x:Key="Theme.PrimaryAccentColor">White</Color>
|
||
|
|
|
||
|
|
<SolidColorBrush x:Key="SecondaryBackgroundBrush" Color="#FFEEEEEE" />
|
||
|
|
<SolidColorBrush
|
||
|
|
x:Key="PrimaryBackgroundBrush"
|
||
|
|
Opacity="0.25"
|
||
|
|
Color="#FFFFFFFF" />
|
||
|
|
<SolidColorBrush
|
||
|
|
x:Key="WindowBorderBrush"
|
||
|
|
Opacity="0.4"
|
||
|
|
Color="#FF757575" />
|
||
|
|
<SolidColorBrush
|
||
|
|
x:Key="DividerBorderBrush"
|
||
|
|
Opacity="0.0578"
|
||
|
|
Color="#FF000000" />
|
||
|
|
<SolidColorBrush
|
||
|
|
x:Key="PrimaryForegroundBrush"
|
||
|
|
Opacity="0.8956"
|
||
|
|
Color="#FF000000" />
|
||
|
|
<SolidColorBrush
|
||
|
|
x:Key="SecondaryForegroundBrush"
|
||
|
|
Opacity="0.6189"
|
||
|
|
Color="#FF000000" />
|
||
|
|
</ResourceDictionary>
|