TailwindCSS variant to style autocompleted form fields.
- 
Node.js 12+
 - 
TailwindCSS 2+
 
yarn add tailwindcss-autofillOr if you use npm:
npm i --save tailwindcss-autofillAdd to plugins in your tailwind.config.js:
module.exports = {
  // ....
  plugins: [
    require("tailwindcss-autofill"),
    // ...other plugins
  ],
  // For TailwindCSS v2 only
  variants: {
    extend: {
      // Enable `autofill` variant for plugins you want
      borderColor: ["autofill"],
      shadowFill: ["autofill"],
      textFill: ["autofill"],
    },
  },
};This plugin is often used with the tailwindcss-shadow-fill and tailwindcss-text-fill because background-color and color won't work.
Style your components using autofill::
<input className="autofill:border-gray-900 autofill:shadow-fill-white autofill:text-fill-gray-900" />- 
Node 12+
 - 
Yarn 1.22+
 
- 
Install requirements
 - 
Clone the repository
 - 
Run
yarnto install dependencies 
- 
Commit adhering to Angular commit convention, use
yarn commitor Code conventional commits to commit interactively - 
Submit a PR and make sure required status checks pass
 - 
When a PR is merged or code is pushed to
master, Github automatically builds and publishes a new release if there're relevant changes