Skip to content

Commit

Permalink
Refactor UI color resources in KubeDeckUi.ps1
Browse files Browse the repository at this point in the history
Signed-off-by: PixelRobots <[email protected]>
  • Loading branch information
PixelRobots committed Oct 23, 2024
1 parent b762f58 commit 8bd4b06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/KubeDeckUi.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function Start-KubeDeckLauncher {
WindowStartupLocation="CenterScreen"
Height="200"
Width="400"
Background="{StaticResource formBackColor}" <!-- Assuming it's defined as a resource -->
Background="$formBackColor"
WindowStyle="None"
ResizeMode="NoResize"
ShowInTaskbar="False">
Expand All @@ -70,7 +70,7 @@ function Start-KubeDeckLauncher {
HorizontalAlignment="Center"
FontFamily="Roboto"
FontSize="20"
Foreground="{StaticResource txtForeColor}"> <!-- Assuming it's defined as a resource -->
Foreground="$txtForeColor">
<Run Text="KubeDeck " FontSize="24"/>
<LineBreak/>
<Run Text="is checking and updating modules..."/>
Expand Down

0 comments on commit 8bd4b06

Please sign in to comment.