我正在尝试将Vue与Nuxt和Vuetify用于样式,Vuetify存在许多模板,其中一个带来所有模板。
我尝试在/assets/style/app.styl上添加颜色而没有效果。
同样在/plugins/vueitfy.js上添加如下内容:
Vue.use(Vuetify, {
theme: {
header: '#48393C',
footer: '#2f3542'
}
})
没有效果,我认为最后一种方法是做到这一点的最好方法。
答案 0 :(得分:1)
有两个选项可以更改颜色主题 1.从/plugins/vueitfy.js
Vue.use(Vuetify, {
theme: {
primary: '#2c3e50',
secondary: '#1abc9c',
accent: '#2980b9',
error: '#e74c3c',
action: '#23DB2A'
}})
$theme := {
primary: '#2c3e50',
secondary: '#1abc9c',
accent: '#2980b9',
error: '#e74c3c',
action: '#23DB2A'
}
页眉和页脚不能用作颜色主题属性
答案 1 :(得分:1)
例如,在Vuetify 2
中,如果要ro覆盖background colour
(nuxt js
):
.\assets\style\variables.scss
@import '~vuetify/src/styles/styles.sass';
$material-light: map-merge($material-light, (
background: map-get($blue, 'lighten-5'),
calendar: (background-color: red),
)
);
nuxt.config.js
中添加: import colors from 'vuetify/lib/util/colors'
buildModules: ['@nuxtjs/vuetify'],
vuetify: {
treeShake: true,
customVariables: ['~/assets/style/variables.scss']
theme: {
options: {customProperties: true},
themes: {
light: {
primary: colors.blue.lighten5,
secondary: colors.amber.darken3,
accent: colors.grey.darken3,
info: colors.teal.lighten1,
warning: colors.amber.base,
error: colors.deepOrange.accent4,
success: colors.green.accent3
}
}
更多信息: