You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1002 B
30 lines
1002 B
import { light, dark } from './color'; |
|
|
|
export default class NoobStyle { |
|
size = 'small'; //总体尺寸 |
|
// bodyBg = light[0]; //全局背景颜色 |
|
bodyBg = light[7]; //全局背景颜色 |
|
titleColor = light[0]; //标题颜色 |
|
color = '#4e5969'; //全局字体颜色 |
|
|
|
// headBg = '#2e8ae3'; //头部背景颜色 |
|
headBg = '#40c9c6'; //头部背景颜色 |
|
|
|
menuBg = '#323e4d'; //菜单背景颜色 |
|
menuActiveBg = '#28323e'; //菜单激活背景颜色 |
|
menuColor = light[7]; //菜单文字颜色 |
|
menuActiveColor = '#409eff'; //激活菜单文字颜色 |
|
menuDefaultIcon = 'Minus'; //菜单默认图标 |
|
|
|
mainShadowColor = light[4]; //主窗口阴影颜色 |
|
|
|
searchRowBg = light[8]; |
|
itemBg = light[2]; |
|
itemSelectColor = '#409eff'; |
|
|
|
tableBg = light[0]; //表格背景颜色 |
|
tableHeadBg = light[0]; //表头行背景颜色 |
|
tableCurBg = light[0]; //当前行背景颜色 |
|
tableColor = dark[0]; //表格字体颜色 |
|
tableBorderColor = light[9]; //行底部边框颜色 |
|
}
|
|
|