Sha256: f91ab1cd12aa4e296532623fb0dadec5d91d8ec8c0c30edf682693f9f7f05029
Contents?: true
Size: 892 Bytes
Versions: 21
Compression:
Stored size: 892 Bytes
Contents
const plugin = require("tailwindcss/plugin"); module.exports = plugin(function ({ addUtilities }) { addUtilities({ ".bg-gray-blend-50": { "@apply bg-gray-transparent-50": {}, "background-blend-mode": "hard-light", }, ".bg-gray-blend-100": { "@apply bg-gray-transparent-100": {}, "background-blend-mode": "hard-light", }, ".bg-gray-blend-200": { "@apply bg-gray-transparent-200": {}, "background-blend-mode": "hard-light", }, ".border-gray-blend-50": { "@apply border-gray-transparent-50": {}, "background-blend-mode": "hard-light", }, ".border-gray-blend-100": { "@apply border-gray-transparent-100": {}, "background-blend-mode": "hard-light", }, ".border-gray-blend-200": { "@apply border-gray-transparent-200": {}, "background-blend-mode": "hard-light", }, }); });
Version data entries
21 entries across 21 versions & 1 rubygems