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.
17 lines
495 B
17 lines
495 B
2 years ago
|
import NoobStyle from './noob';
|
||
|
import {light, dark, grey} from './color';
|
||
|
|
||
|
export default class Light extends NoobStyle {
|
||
|
bodyBg = light[0]; //全局背景颜色
|
||
|
titleColor = dark[0]; //标题颜色
|
||
|
|
||
|
headBg = light[0]; //头部背景颜色
|
||
|
menuBg = light[0]; //菜单背景颜色
|
||
|
menuActiveBg = light[1]; //菜单激活背景颜色
|
||
|
menuColor = dark[0]; //菜单文字颜色
|
||
|
menuActiveColor = '#4f5dfd'; //激活菜单文字颜色
|
||
|
|
||
|
searchRowBg = light[0];
|
||
|
itemBg = light[1];
|
||
|
}
|