Text Opacity
v1.4.0+
Utilities for controlling the opacity of an element’s text color.
Control the opacity of an element’s text color using the utilities.
Note that because these utilities are implemented using CSS custom properties, a .text-{color}
utility must be present on the same element for them to work.
<div class="text-black">
<div class="text-opacity-50">...</div>
</div>
Do make sure to add a text color utility to the same element explicitly
To control an element’s text color opacity at a specific breakpoint, add a {screen}:
prefix to any existing text color opacity utility. For example, use md:text-opacity-50
to apply the text-opacity-50
utility at only medium screen sizes and above.
<!-- ... -->
</div>
For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.
To customize the opacity values for all opacity-related utilities at once, use the opacity
section of your tailwind.config.js
theme configuration:
If you want to customize only the text opacity utilities, use the section:
// tailwind.config.js
module.exports = {
theme: {
extend: {
textOpacity: {
+ '10': '0.1',
+ '20': '0.2',
}
}
}
}
By default, only responsive, hover and focus variants are generated for text opacity utilities.
You can control which variants are generated for the text opacity utilities by modifying the property in the variants
section of your tailwind.config.js
file.
For example, this config will also generate active and group-hover variants:
Disabling
If you don’t plan to use the text opacity utilities in your project, you can disable them entirely by setting the textOpacity
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ textOpacity: false,
}