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.
22 lines
318 B
22 lines
318 B
|
|
const color = {
|
|
//主题色
|
|
primary: '#FF2C3C',
|
|
//主要边框颜色
|
|
border: '#E5E5E5',
|
|
//黑色
|
|
black: '#101010',
|
|
//字体主色
|
|
normal: '#333333',
|
|
//白色
|
|
white: '#ffffff',
|
|
//字体浅色
|
|
lighter: '#666666',
|
|
//字体更浅色
|
|
muted: '#999999',
|
|
//背景色
|
|
body: '#F6F6F6'
|
|
|
|
}
|
|
|
|
export default color
|