|
@@ -155,30 +155,30 @@ export enum TYPE_ITEM {
|
|
|
}
|
|
|
|
|
|
export enum WaterColors {
|
|
|
- Purple = 1, // 紫
|
|
|
- Magenta = 2, // 紫红
|
|
|
- Pink = 3, // 粉
|
|
|
- Red = 4, // 红
|
|
|
- Yellow = 5, // 黄
|
|
|
- Green = 6, // 绿
|
|
|
- Cyan = 7, // 青
|
|
|
- Blue = 8, // 蓝
|
|
|
- DarkBlue = 9, // 深蓝
|
|
|
+ Red = 1, // 红
|
|
|
+ Orange = 2, // 橙
|
|
|
+ Yellow = 3, // 黄
|
|
|
+ Green = 4, // 绿
|
|
|
+ Cyan = 5, // 青
|
|
|
+ Blue = 6, // 蓝
|
|
|
+ Purple = 7, // 紫
|
|
|
+ Palm = 8, // 棕
|
|
|
+ Pink = 9, // 粉
|
|
|
Black = 10, // 黑
|
|
|
White = 11, // 白
|
|
|
}
|
|
|
|
|
|
// 定义对应的十六进制颜色值
|
|
|
export const WaterColorHex: Record<WaterColors, string> = {
|
|
|
- [WaterColors.Blue]: "#317EFE",
|
|
|
- [WaterColors.Green]: "#4CF02F",
|
|
|
- [WaterColors.Red]: "#FF3939",
|
|
|
- [WaterColors.Cyan]: "#37F5FD",
|
|
|
- [WaterColors.Yellow]: "#FEF344",
|
|
|
- [WaterColors.Pink]: "#FD9FD2",
|
|
|
- [WaterColors.Purple]: "#D62F9C",
|
|
|
- [WaterColors.Magenta]: "#EE60FE",
|
|
|
- [WaterColors.DarkBlue]: "#3052A1",
|
|
|
+ [WaterColors.Blue]: "#0160FF",
|
|
|
+ [WaterColors.Green]: "#37FF13",
|
|
|
+ [WaterColors.Red]: "#FF0707",
|
|
|
+ [WaterColors.Cyan]: "#00F5FF",
|
|
|
+ [WaterColors.Yellow]: "#FFF10A",
|
|
|
+ [WaterColors.Purple]: "#E500FF",
|
|
|
+ [WaterColors.Orange]: "#FF9202",
|
|
|
+ [WaterColors.Pink]: "#FF61B7",
|
|
|
+ [WaterColors.Palm]: "#B45422",
|
|
|
[WaterColors.Black]: "#131313",
|
|
|
[WaterColors.White]: "#FFFFFF"
|
|
|
};
|
|
@@ -191,8 +191,8 @@ export const WaterColorLog: Record<WaterColors, string> = {
|
|
|
[WaterColors.Yellow]: "黄色",
|
|
|
[WaterColors.Pink]: "粉色",
|
|
|
[WaterColors.Purple]: "紫色",
|
|
|
- [WaterColors.Magenta]: '紫红色',
|
|
|
- [WaterColors.DarkBlue]: '深蓝色',
|
|
|
+ [WaterColors.Orange]: '橙色',
|
|
|
+ [WaterColors.Palm]: '棕色',
|
|
|
[WaterColors.Black]: '黑色',
|
|
|
[WaterColors.White]: '白色'
|
|
|
};
|