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.
23 lines
636 B
23 lines
636 B
// 黑白主题(左侧菜单黑,顶部白)
|
|
export default {
|
|
// 左侧菜单样式
|
|
leftMenu: {
|
|
backgroundColor: "#191a23",
|
|
subBackgroundColor:"#101117",
|
|
textColor: "rgba(255,255,255,0.9)",
|
|
activeTextColor: "#ffffff",
|
|
activeBackgroundColor: "#2d8cf0",
|
|
collapseActiveTextColor:"#2d8cf0",
|
|
collapseActiveBackgroundColor: "#2c3239",
|
|
hoverTextColor: "#ffffff",
|
|
hoverBackgroundColor: "#545f6c",
|
|
boxShadow: "0px 0 0px rgba(0,21,4,0.25)",
|
|
//boxShadow: "2px 0 4px rgba(0,21,4,0.25)",
|
|
//borderTop: "1px solid #101117"
|
|
},
|
|
// 顶部菜单样式
|
|
topMenu: {
|
|
backgroundColor: "#ffffff",
|
|
textColor: "#999999",
|
|
}
|
|
}
|