gpt4 book ai didi

stylus - 如何使用自定义颜色覆盖 Vuetify 变量?

转载 作者:行者123 更新时间:2023-12-02 17:25:18 26 4
gpt4 key购买 nike

我想通过以下 this 使用自定义颜色覆盖 vuetify 变量

我创建了一个手写笔文件夹,其中包含基本文件夹(_colors_typography)和main.styl 文件。 _color 文件被导入到 main.styl 文件中,后者又被导入到 main.js

这是我的文件结构:

并且导入包含在 main.js 中:

 import '../node_modules/vuetify/dist/vuetify.min.css'
import './assets/stylus/main.styl'

_color.styl内,我有这个测试代码:

$red = {
"base": #FF0000,
"darken-1": #e50000,
"darken-2": #990000,
"darken-3": #7f0000,
"darken-4": #000000,
}

自定义颜色没有显示...我在这里遗漏了什么吗?

最佳答案

正如 @webdevdani 提到的,我认为覆盖 vuetify 风格是不可能的。

我建议您一个解决方法:使用主题

main.js 中,您可以设置颜色,如下所示:

Vue.use(Vuetify, {
theme: {
primary: '#FFA726',
secondary: '#29B6F6',
anyColor: '#0000'
}})

您可以在应用程序的任何组件中这样调用它:

color="primary"

color="anyColor"

Source and more info about Vuetify theme

关于stylus - 如何使用自定义颜色覆盖 Vuetify 变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48570878/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com