"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = _default; function _default() { return function ({ config, matchUtilities, theme, variants }) { matchUtilities({ grayscale: value => { return { '--tw-grayscale': `grayscale(${value})`, ...(config('mode') === 'jit' ? { '@defaults filter': {}, filter: 'var(--tw-filter)' } : {}) }; } }, { values: theme('grayscale'), variants: variants('grayscale'), type: 'any' }); }; }