diff --git a/README.md b/README.md
index 325188d..8e3cde0 100644
--- a/README.md
+++ b/README.md
@@ -29,17 +29,18 @@ Add to `plugins` in your **tailwind.config.js**:
```js
module.exports = {
- // ...
+ // ....
plugins: [
require("tailwindcss-autofill"),
- // Other plugins.
+ // ...other plugins
],
// For TailwindCSS v2 only
variants: {
extend: {
// Enable `autofill` variant for plugins you want
- borderColor: ["autofill],
+ borderColor: ["autofill"],
shadowFill: ["autofill"],
+ textFill: ["autofill"],
},
},
};
@@ -50,7 +51,7 @@ This plugin is often used with the [tailwindcss-shadow-fill](https://github.com/
Style your components using `autofill:`:
```jsx
-
+
```
## Contributing