blackWhite.js 473 字节
Newer Older
VK1688's avatar
1.8.0  
VK1688 已提交
1 2 3 4 5 6
// 黑白主题(左侧菜单黑,顶部白)
export default {
	// 左侧菜单样式
	leftMenu: {
		backgroundColor: "#191a23",
		subBackgroundColor:"#101117",
VK1688's avatar
VK1688 已提交
7
		textColor: "rgba(255,255,255,0.8)",
VK1688's avatar
1.8.0  
VK1688 已提交
8 9 10
		activeTextColor: "#ffffff",
		activeBackgroundColor: "#2d8cf0",
		hoverTextColor: "#ffffff",
VK1688's avatar
1.8.1  
VK1688 已提交
11 12
		hoverBackgroundColor: "#545f6c",
		boxShadow: "2px 0 6px rgba(0,21,4,0.25)"
VK1688's avatar
1.8.0  
VK1688 已提交
13 14 15 16 17 18 19
	},
	// 顶部菜单样式
	topMenu: {
		backgroundColor: "#ffffff",
		textColor: "#999999",
	}
}