We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49e6aed commit 743f6f4Copy full SHA for 743f6f4
index.js
@@ -5,7 +5,7 @@ const normalizeValues = (config) => Object.fromEntries(
5
Object.entries(flatten(config, { delimiter: '-', maxDepth: 2 })).sort(([a], [b]) => a === 'DEFAULT' ? -1 : 1)
6
)
7
8
-module.exports = plugin(({ matchUtilities, theme }) => {
+export default plugin(({ matchUtilities, theme }) => {
9
matchUtilities(
10
{ 'text-fill': (value) => ({ '-webkit-text-fill-color': value }) },
11
{ values: normalizeValues(theme('textFillColor', theme('borderColor'))), type: ['color'] },
0 commit comments