New Theme

This commit is contained in:
BubbaGumpShrump 2024-12-05 22:58:56 -05:00
parent 53c3b3e41a
commit 5a574486c9
4 changed files with 15 additions and 1 deletions

Binary file not shown.

After

(image error) Size: 51 KiB

View file

@ -12,6 +12,7 @@
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\AVSQN.png" />
<None Remove="Assets\D3VL.png" />
<None Remove="Assets\EMP.png" />
<None Remove="Assets\HIT.png" />
@ -30,6 +31,9 @@
</ItemGroup>
<ItemGroup>
<Resource Include="Assets\AVSQN.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Resource Include="Assets\D3VL.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>

View file

@ -77,7 +77,7 @@
<TextBlock Text="Theme:" Foreground="{DynamicResource TextBrush}" FontSize="16" Margin="0,7,0,5"/>
<Slider x:Name="ThemeSlider"
Minimum="0"
Maximum="10"
Maximum="11"
Value="0"
TickFrequency="1"
IsSnapToTickEnabled="True"

View file

@ -241,6 +241,16 @@ namespace AutoTrackR2
);
ChangeLogo("/Assets/EMP.png", (Color)ColorConverter.ConvertFromString("#F3BD9B"));
break;
case 11: // AVS Theme
UpdateThemeColors(
(Color)ColorConverter.ConvertFromString("#3fbcff"), // Accent/Border
(Color)ColorConverter.ConvertFromString("#060606"), // Button
(Color)ColorConverter.ConvertFromString("#333333"), // Background
(Color)ColorConverter.ConvertFromString("#e8e8e8"), // Text
(Color)ColorConverter.ConvertFromString("#A88F2C") // AltText
);
ChangeLogo("/Assets/AVSQN.png", (Color)ColorConverter.ConvertFromString("#3fbcff"));
break;
}
}