10.10综合交易所原始源码-管理后台
1
admin
2026-01-06 089bf5d2378b3c4a61d795b2a92bede2c193b771
src/assets/css/variable.less
New file
@@ -0,0 +1,30 @@
//主题皮肤 - 预留功能
:root {
    --themeBagColor: red;
}
// 默认主题
.theme-default {
    --themeBagColor: #fff;
}
// 深黑主题
.theme-dark {
    --themeBagColor: black;
}
// 红色主题
.theme-red {
    --themeBagColor: red;
}
// 浅蓝主题
.theme-blue {
    --themeBagColor: blue;
}
// ------- 定义 Less 变量 -------
@themeBagColor: var(--themeBagColor);
// 遮罩层背景颜色
@maskBagColor: rgba(31, 35, 41, .3);