namespace BetterUI;
/// <summary>
/// A theme to apply to the UI.
/// </summary>
/// <remarks>
/// You can use this enum with <see cref="ThemeProvider"/> to apply a theme to your UI.
/// </remarks>
public enum Theme
{
/// <summary>
/// A light theme.
/// </summary>
Light,
/// <summary>
/// A dark theme.
/// </summary>
Dark,
}