You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, no focus, or group-hover variants are generated for text color utilities.
49
+
50
+
You can control which variants are generated for the text color utilities by modifying the `textColors` property in the `modules` section of your Tailwind config file.
51
+
52
+
For example, this config will _also_ generate focus variants:
53
+
54
+
```js
55
+
{
56
+
// ...
57
+
modules: {
58
+
// ...
59
+
textColors: ['responsive', 'hover', 'focus'],
60
+
}
61
+
}
62
+
```
63
+
64
+
### Disabling
65
+
66
+
If you aren't using the text color utilities in your project, you can disable them entirely by setting the `textColors` property to `false` in the `modules` section of your config file:
0 commit comments