Package Exports
- tailwindcss-text-fill
- tailwindcss-text-fill/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (tailwindcss-text-fill) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
🎨 tailwindcss-text-fill
TailwindCSS utility to override foreground fill color of text content, is especially useful to style autocompleted form fields with tailwindcss-autofill because color
won't work.
Requirements
Node.js 12+
TailwindCSS 2+
Install
yarn add tailwindcss-text-fill
Or if you use npm
:
npm i --save tailwindcss-text-fill
Usage
Add to plugins
in your tailwind.config.js:
module.exports = {
// ...
plugins: [
require("tailwindcss-text-fill"),
// ...other plugins.
],
};
Style your components using text-fill-{color}
, e.g. text-fill-gray-100
, text-fill-gray-200
, text-fill-red-500
, etc.
<input className="text-fill-gray-900 dark:text-fill-gray-100" />