Add project files.
This commit is contained in:
10
Examples/Nodify.Playground/Themes/Brushes.xaml
Normal file
10
Examples/Nodify.Playground/Themes/Brushes.xaml
Normal file
@@ -0,0 +1,10 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:o="http://schemas.microsoft.com/winfx/2006/xaml/presentation/options">
|
||||
|
||||
<SolidColorBrush x:Key="PanelBackgroundBrush"
|
||||
o:Freeze="True"
|
||||
Color="{DynamicResource PanelBackgroundColor}"
|
||||
Opacity="0.8" />
|
||||
|
||||
</ResourceDictionary>
|
||||
10
Examples/Nodify.Playground/Themes/Dark.xaml
Normal file
10
Examples/Nodify.Playground/Themes/Dark.xaml
Normal file
@@ -0,0 +1,10 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="Brushes.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
|
||||
<Color x:Key="PanelBackgroundColor">#1A1A1A</Color>
|
||||
|
||||
</ResourceDictionary>
|
||||
10
Examples/Nodify.Playground/Themes/Light.xaml
Normal file
10
Examples/Nodify.Playground/Themes/Light.xaml
Normal file
@@ -0,0 +1,10 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="Brushes.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
|
||||
<Color x:Key="PanelBackgroundColor">#E9EEFE</Color>
|
||||
|
||||
</ResourceDictionary>
|
||||
10
Examples/Nodify.Playground/Themes/Nodify.xaml
Normal file
10
Examples/Nodify.Playground/Themes/Nodify.xaml
Normal file
@@ -0,0 +1,10 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="Brushes.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
|
||||
<Color x:Key="PanelBackgroundColor">#2A1B47</Color>
|
||||
|
||||
</ResourceDictionary>
|
||||
Reference in New Issue
Block a user