作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试修改 tailwind.config.js
文件来创建一些自定义类。例如,我想创建一个调色板 - 并通过引用主题中的其他颜色来实现。
为此,我对 tailwind.config.js
进行了以下更改文件:
module.exports = {
theme: {
extend: {
colors: {
primary: (theme) => theme("colors.blue.500"),
},
}
...
然而,这行不通。我没有收到任何错误 - 但我也没有收到任何自定义类(即使,
according to the docs ,这应该可行)。
module.exports = {
theme: {
extend: {
colors: {
primary: "#abcdef",
},
}
...
这将创建诸如
bg-primary
之类的类。 .
最佳答案
你的第一个例子确实似乎不起作用。这些也不起作用:
module.exports = {
theme: {
extend: {
colors: (theme) => ({
primary: theme('colors.blue.500'),
})
},
},
}
// → RangeError: Maximum call stack size exceeded
module.exports = {
theme: {
extend: (theme) => ({
colors: {
primary: theme('colors.blue.500'),
}
}),
},
}
// → no error, but doesn't work
module.exports = {
theme: (theme) => ({
extend: {
colors: {
primary: theme('colors.blue.500'),
}
},
}),
}
// → no error, but doesn't work
Since values in the
theme.extend
section of your config file are only merged shallowly, overriding a single shade is slightly more complicated.The easiest option is to import the default theme and spread in the color you want to customize along with the new shade value:
// tailwind.config.js
const { colors } = require('tailwindcss/defaultTheme')
module.exports = {
theme: {
extend: {
colors: {
blue: {
...colors.blue,
'900': '#1e3656',
}
}
}
}
}
const { colors } = require('tailwindcss/defaultTheme')
module.exports = {
theme: {
extend: {
colors: {
primary: colors.blue['500'], // 500 (number) would also work
}
}
}
}
我试过这个,它似乎有效。构建的 CSS 文件包含这些类(当然还有其他类):
.bg-blue-500 {
--bg-opacity: 1;
background-color: #4299e1;
background-color: rgba(66, 153, 225, var(--bg-opacity));
}
.bg-primary {
--bg-opacity: 1;
background-color: #4299e1;
background-color: rgba(66, 153, 225, var(--bg-opacity));
}
关于tailwind-css - 顺风 CSS : Referencing Theme Colors When Creating Custom Class,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62693939/
我是一名优秀的程序员,十分优秀!