mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-09 20:57:21 +08:00
refactor(system/dict): 优化字典项颜色
This commit is contained in:
@@ -25,29 +25,29 @@ package top.continew.admin.common.constant;
|
||||
public class UiConstants {
|
||||
|
||||
/**
|
||||
* 主色(极致蓝)
|
||||
* 主要色(极致蓝)
|
||||
*/
|
||||
public static final String COLOR_PRIMARY = "arcoblue";
|
||||
public static final String COLOR_PRIMARY = "primary";
|
||||
|
||||
/**
|
||||
* 成功色(仙野绿)
|
||||
*/
|
||||
public static final String COLOR_SUCCESS = "green";
|
||||
public static final String COLOR_SUCCESS = "success";
|
||||
|
||||
/**
|
||||
* 警告色(活力橙)
|
||||
*/
|
||||
public static final String COLOR_WARNING = "orangered";
|
||||
public static final String COLOR_WARNING = "warning";
|
||||
|
||||
/**
|
||||
* 错误色(浪漫红)
|
||||
*/
|
||||
public static final String COLOR_ERROR = "red";
|
||||
public static final String COLOR_ERROR = "error";
|
||||
|
||||
/**
|
||||
* 默认色(中性灰)
|
||||
*/
|
||||
public static final String COLOR_DEFAULT = "gray";
|
||||
public static final String COLOR_DEFAULT = "default";
|
||||
|
||||
private UiConstants() {
|
||||
}
|
||||
|
Reference in New Issue
Block a user