Files
cursor-lang/CursorLang/Models/AppTheme.cs
T
2026-08-09 20:02:23 +05:00

13 lines
259 B
C#

namespace CursorLang.Models;
/// <summary>
/// The look of the settings window. By default the application follows the Windows
/// theme, but the user can pin the light or the dark one.
/// </summary>
public enum AppTheme
{
System,
Light,
Dark
}