pcadmin-base
Version:
33 lines (28 loc) • 686 B
text/less
// less变量
@turquoise: #00d1b2;
@greenColor: #1ec773;
@blueColor: #00b0e5;
@redColor: #ff0000;
@orangeColor: #ff930f;
@grayColor: #cccccc;
@blackColor: hsl(0, 0%, 4%);
@smokeColor: whitesmoke;
@whiteColor: #ffffff;
// body全局顶层定义
@body-background-color: whitesmoke;
@body-family: Arial, Helvetica, sans-serif;
@body-size: 14px;
@body-color: @blackColor;
@link: @turquoise;
@link-hover: @blackColor;
// 请求进度条
@progressColor: @turquoise;
// button使用
@disabledColor: @grayColor;
@primaryColor: @blackColor;
@infoColor: @blueColor;
@successColor: @greenColor;
@warningColor: @orangeColor;
@dangerColor: @redColor;
// 分页使用
@currentColor: @greenColor;