41 lines
809 B
C#
41 lines
809 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesignWPF.Appearance;
|
|
public enum ThemeMode
|
|
{
|
|
Light,
|
|
Dark
|
|
}
|
|
public enum ThemePalette
|
|
{
|
|
[Description("薄暮红")]
|
|
DustRed,
|
|
[Description("火山红")]
|
|
Volcano,
|
|
[Description("日落橙")]
|
|
SunsetOrange,
|
|
[Description("金盏花")]
|
|
CalendulaGold,
|
|
[Description("日出黄")]
|
|
SunriseYellow,
|
|
[Description("青柠绿")]
|
|
Lime,
|
|
[Description("极光绿")]
|
|
PolarGreen,
|
|
[Description("明青")]
|
|
Cyan,
|
|
[Description("拂晓蓝")]
|
|
DaybreakBlue,
|
|
[Description("极客蓝")]
|
|
GeekBlue,
|
|
[Description("酱紫")]
|
|
GoldenPurple,
|
|
[Description("法式洋红")]
|
|
Magenta,
|
|
}
|