forked from Viruaithal/ScriptPro
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathThemes.xaml
More file actions
24 lines (19 loc) · 1.05 KB
/
Themes.xaml
File metadata and controls
24 lines (19 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!-- Themes.xaml -->
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!-- Light Theme -->
<Color x:Key="PrimaryBackgroundColor">#FFF</Color>
<Color x:Key="PrimaryForegroundColor">#222</Color>
<!-- Dark Theme -->
<Color x:Key="DarkBackgroundColor">#1E1E1E</Color>
<Color x:Key="DarkForegroundColor">#EEE</Color>
<SolidColorBrush x:Key="WindowBackground" Color="{DynamicResource PrimaryBackgroundColor}"/>
<SolidColorBrush x:Key="WindowForeground" Color="{DynamicResource PrimaryForegroundColor}"/>
<Style TargetType="Ribbon" x:Key="ModernRibbonStyle">
<Setter Property="FontFamily" Value="Segoe UI"/>
<Setter Property="FontSize" Value="14"/>
<Setter Property="FontWeight" Value="Normal"/>
<Setter Property="Background" Value="{DynamicResource WindowBackground}"/>
<Setter Property="Foreground" Value="{DynamicResource WindowForeground}"/>
</Style>
</ResourceDictionary>