用于设置 SVG 元素填充(fill)样式的功能类。
使用 fill-current
将 SVG 的填充色设置为当前的文本颜色。通过将该类与现有的文本颜色功能类相结合,可以轻松设置元素的填充颜色。
对于像 Zondicons 这样完全用填充色绘制的图标集来说是很有用的:
<svg class="fill-current text-green-600 ..."></svg>
通过自定义您的 tailwind.config.js
文件的 theme.fill
部分来控制 Tailwind 生成哪些 fill
功能类。
// tailwind.config.js
module.exports = {
theme: {
- fill: {
- current: 'currentColor',
- }
+ fill: theme => ({
+ 'red': theme('colors.red.500'),
+ 'green': theme('colors.green.500'),
+ 'blue': theme('colors.blue.500'),
+ })
}
}
默认情况下, 针对 fill 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 fill
属性来控制为 fill 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ fill: ['hover', 'focus'],
}
}
}
如果您不打算在您的项目中使用 fill 功能,您可以通过在配置文件的 corePlugins
部分将 fill
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ fill: false,
}
}