Skip to content

Commit e66239e

Browse files
committed
Update color definitions in App.xaml
Modified SolidColorBrush definitions: - Changed `DockStrokeDefaultBrush` from "Blue" to "Red". - Added `ControlFillColorDefaultBrush` with color "Green". - Reverted `DockStrokeActiveBrush` back to "Blue". These changes enhance the visual styling of the application.
1 parent 0fc0e17 commit e66239e

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

src/Examples/UnoApp/App.xaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@
99
</ResourceDictionary.MergedDictionaries>
1010

1111
<!--<SolidColorBrush x:Key="DockStrokeDefaultBrush"
12-
Color="Blue" />
12+
Color="Red" />
13+
14+
<SolidColorBrush x:Key="ControlFillColorDefaultBrush"
15+
Color="Green" />
1316
1417
<SolidColorBrush x:Key="DockStrokeActiveBrush"
15-
Color="Red" />-->
18+
Color="Blue" />-->
1619
</ResourceDictionary>
1720
</Application.Resources>
1821
</Application>

src/Examples/WinUIApp/App.xaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@
99
</ResourceDictionary.MergedDictionaries>
1010

1111
<!--<SolidColorBrush x:Key="DockStrokeDefaultBrush"
12-
Color="Blue" />
12+
Color="Red" />
13+
14+
<SolidColorBrush x:Key="ControlFillColorDefaultBrush"
15+
Color="Green" />
1316
1417
<SolidColorBrush x:Key="DockStrokeActiveBrush"
15-
Color="Red" />-->
18+
Color="Blue" />-->
1619
</ResourceDictionary>
1720
</Application.Resources>
1821
</Application>

0 commit comments

Comments
 (0)