31 lines
No EOL
661 B
JavaScript
31 lines
No EOL
661 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = _default;
|
|
|
|
function _default() {
|
|
return function ({
|
|
config,
|
|
matchUtilities,
|
|
theme,
|
|
variants
|
|
}) {
|
|
matchUtilities({
|
|
'backdrop-saturate': value => {
|
|
return {
|
|
'--tw-backdrop-saturate': `saturate(${value})`,
|
|
...(config('mode') === 'jit' ? {
|
|
'@defaults backdrop-filter': {},
|
|
'backdrop-filter': 'var(--tw-backdrop-filter)'
|
|
} : {})
|
|
};
|
|
}
|
|
}, {
|
|
values: theme('backdropSaturate'),
|
|
variants: variants('backdropSaturate'),
|
|
type: 'any'
|
|
});
|
|
};
|
|
} |