Files
Shrlalgo.RvKits/NeoUI/Melskin/Appearance/ThemeMode.cs

41 lines
755 B
C#
Raw Normal View History

2025-07-31 20:12:24 +08:00
using System.ComponentModel;
2026-01-02 17:30:30 +08:00
namespace VariaStudio.Appearance;
2025-07-31 20:12:24 +08:00
/// <summary>
/// 明暗模式切换
/// </summary>
public enum ThemeMode
{
/// <summary>
/// 表示明亮模式,适用于偏好浅色背景的用户界面设置。
/// </summary>
Light,
/// <summary>
/// 表示暗模式,适用于偏好深色背景的用户界面设置。
/// </summary>
2025-08-20 12:10:35 +08:00
Dark,
2025-07-31 20:12:24 +08:00
}
/// <summary>
/// 主题色切换
/// </summary>
public enum ThemePalette
{
2025-08-20 12:10:13 +08:00
/// <summary>
2025-08-20 12:10:35 +08:00
/// 天蓝
2025-08-20 12:10:13 +08:00
/// </summary>
2025-08-20 12:10:35 +08:00
[Description("天蓝")]
Blue,
2025-08-20 12:10:13 +08:00
/// <summary>
2025-08-20 12:10:35 +08:00
/// 墨绿
2025-08-20 12:10:13 +08:00
/// </summary>
2025-08-20 12:10:35 +08:00
[Description("墨绿")]
Green,
2025-08-20 12:10:13 +08:00
/// <summary>
2025-08-20 12:10:35 +08:00
/// 火山红
2025-08-20 12:10:13 +08:00
/// </summary>
2025-08-20 12:10:35 +08:00
[Description("浅紫")]
Purple,
2025-07-31 20:12:24 +08:00
}