oliverbooth.dev/OliverBooth/Data/SiteTheme.cs

23 lines
349 B
C#
Raw Normal View History

2024-11-03 14:49:23 +00:00
namespace OliverBooth.Data;
/// <summary>
/// An enumeration of site themes.
/// </summary>
public enum SiteTheme
{
/// <summary>
/// Dark mode.
/// </summary>
Dark,
/// <summary>
/// Light mode.
/// </summary>
Light,
/// <summary>
/// Follow system settings.
/// </summary>
Auto
}