Text Color
Usage
Control the text color of an element using the .text-{color}
utilities.
<input class="text-purple-600 ...">
Changing opacityv1.4.0+
Control the opacity of an element's text color using the .text-opacity-{amount}
utilities.
The quick brown fox jumped over the lazy dog.
The quick brown fox jumped over the lazy dog.
The quick brown fox jumped over the lazy dog.
The quick brown fox jumped over the lazy dog.
The quick brown fox jumped over the lazy dog.
<p class="text-purple-700 text-opacity-100">The quick brown fox ...</p>
<p class="text-purple-700 text-opacity-75">The quick brown fox ...</p>
<p class="text-purple-700 text-opacity-50">The quick brown fox ...</p>
<p class="text-purple-700 text-opacity-25">The quick brown fox ...</p>
<p class="text-purple-700 text-opacity-0">The quick brown fox ...</p>
Learn more in the text opacity documentation.
Responsive
To control the text color of an element at a specific breakpoint, add a {screen}:
prefix to any existing text color utility. For example, use md:text-green-600
to apply the text-green-600
utility at only medium screen sizes and above.
For more information about Tailwind's responsive design features, check out the Responsive Design documentation.
<div class="text-blue-600 sm:text-green-600 md:text-indigo-600 lg:text-red-600 xl:text-gray-900 ...">
The quick brown fox...
</div>
Hover
To control the text color of an element on hover, add the hover:
prefix to any existing text color utility. For example, use hover:text-blue-600
to apply the text-blue-600
utility on hover.
<button class="text-blue-600 hover:text-red-600 ...">
Button
</button>
Hover utilities can also be combined with responsive utilities by adding the responsive {screen}:
prefix before the hover:
prefix.
<button class="... md:text-blue-500 md:hover:text-blue-600 ...">Button</button>
Focus
To control the text color of an element on focus, add the focus:
prefix to any existing text color utility. For example, use focus:text-blue-600
to apply the text-blue-600
utility on focus.
<input class="text-gray-900 focus:text-red-600 ...">
Focus utilities can also be combined with responsive utilities by adding the responsive {screen}:
prefix before the focus:
prefix.
<input class="... md:text-gray-900 md:focus:text-red-600 ...">
Customizing
Text Colors
By default Tailwind makes the entire default color palette available as text colors.
You can customize your color palette by editing theme.colors
in your tailwind.config.js
file, or customize just your text colors in the theme.textColor
section.
// tailwind.config.js
module.exports = {
theme: {
- textColor: theme => theme('colors'),
+ textColor: {
+ 'primary': '#3490dc',
+ 'secondary': '#ffed4a',
+ 'danger': '#e3342f',
+ }
}
}
Responsive and pseudo-class variants
By default, only responsive, hover and focus variants are generated for text color utilities.
You can control which variants are generated for the text color utilities by modifying the textColor
property in the variants
section of your tailwind.config.js
file.
For example, this config will also generate active and group-hover variants:
// tailwind.config.js
module.exports = {
variants: {
// ...
- textColor: ['responsive', 'hover', 'focus'],
+ textColor: ['responsive', 'hover', 'focus', 'active', 'group-hover'],
}
}
Disabling
If you don't plan to use the text color utilities in your project, you can disable them entirely by setting the textColor
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ textColor: false,
}
}