EllieHub/EllieHub/Enums/ThemeType.cs
2023-10-05 00:44:51 +13:00

22 lines
No EOL
363 B
C#

namespace EllieHub.Enums;
/// <summary>
/// The types of themes available.
/// </summary>
public enum ThemeType
{
/// <summary>
/// Either Light or Dark, according to the OS preferences.
/// </summary>
Auto,
/// <summary>
/// Light theme.
/// </summary>
Light,
/// <summary>
/// Dark theme.
/// </summary>
Dark
}