Hansanghyeon / tailwindcss-gradient-bg

Home Page:https://hansanghyeon.github.io/tailwindcss-gradient-bg/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

// Remember to install mini-svg-data-uri
// Follow me on twitter for memes @jordienr

import { type Config } from "tailwindcss";
const {
  default: flattenColorPalette,
} = require("tailwindcss/lib/util/flattenColorPalette");
const svgToDataUri = require("mini-svg-data-uri");

export default {
  content: ["./src/**/*.{js,ts,jsx,tsx}"],
  theme: {
  },
  plugins: [
    function ({ matchUtilities, theme }: { matchUtilities: any; theme: any }) {
      matchUtilities(
        {
          "bg-grid": (value: string) => ({
            backgroundImage: `url("${svgToDataUri(
              `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32" fill="none" stroke="${value}"><path d="M0 .5H31.5V32"/></svg>`
            )}")`,
          }),
        },
        { values: flattenColorPalette(theme("backgroundColor")), type: "color" }
      );
    },
  ],
} satisfies Config;

About

https://hansanghyeon.github.io/tailwindcss-gradient-bg/


Languages

Language:CSS 39.0%Language:JavaScript 31.4%Language:TypeScript 21.6%Language:HTML 8.0%