Files
cursor-lang/CursorLang.Core/Models/AppTheme.cs
T
alex 6259dbd6b3
Pull request / build (pull_request) Successful in 53s
lightweight variant
2026-08-12 16:01:54 +05:00

13 lines
264 B
C#

namespace CursorLang.Core.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
}