tailwindcss/src/plugins/stroke.js
Robin Malfait 6628eb00ca
Improve matchUtilities API and make it work with the AOT engine (#4232)
* implement matchUtilities2

* ensure animation names without keyframes are not prefixed

* remove matchBase

* call addUtilities for each group individually

* WIP: Write plugins using matchUtilities2

* MORE

* Fix arbitrary value support for fontSize

* Fixes, update fixtures

* Rebuild fixtures

* Don't generate `divide` class with no modifier

* Fixes, rebuild fixtures

* Rename matchUtilities2 to matchUtilities

* Delete bad tests

* Remove temp files GROSS

* Clean stuff up

* Support no return in matchUtilities

Co-authored-by: Adam Wathan <adam.wathan@gmail.com>
2021-05-05 15:23:32 +02:00

22 lines
490 B
JavaScript

import flattenColorPalette from '../util/flattenColorPalette'
import toColorValue from '../util/toColorValue'
export default function () {
return function ({ matchUtilities, theme, variants }) {
matchUtilities(
{
stroke: (value) => {
return {
stroke: toColorValue(value),
}
},
},
{
values: flattenColorPalette(theme('stroke')),
variants: variants('stroke'),
type: 'color',
}
)
}
}