13 lines
264 B
C#
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
|
|
}
|