overhaul ThemeHelper

This commit is contained in:
Pilzinsel64
2024-11-29 07:58:35 +01:00
parent 55bf37619b
commit df264ac20d
3 changed files with 60 additions and 11 deletions

View File

@@ -0,0 +1,17 @@
namespace Pilz.UI.Telerik.Theming;
public class ThemeDefinition
{
public ApplicationTheme Theme { get; set; }
public HighContrastMode HighContrast { get; set; }
public ThemeDefinition()
{
}
public ThemeDefinition(ApplicationTheme theme, HighContrastMode highContrast)
{
Theme = theme;
HighContrast = highContrast;
}
}