Placeholder Color
- Tailwind CSS version
- v1.1.0+
Utilities for controlling the color of placeholder text.
Usage
Control the placeholder color of an element using the .placeholder-{color}
utilities.
<input class="placeholder-gray-500 border" placeholder="jane@example.com">
<input class="placeholder-red-300 border border-red-400" placeholder="jane@example.com">
Changing opacityv1.4.0+
Control the opacity of an element's placeholder color using the .placeholder-opacity-{amount}
utilities.
<input class="placeholder-gray-500 placeholder-opacity-100 ..." placeholder="jane@example.com">
<input class="placeholder-gray-500 placeholder-opacity-75 ..." placeholder="jane@example.com">
<input class="placeholder-gray-500 placeholder-opacity-50 ..." placeholder="jane@example.com">
<input class="placeholder-gray-500 placeholder-opacity-25 ..." placeholder="jane@example.com">
<input class="placeholder-gray-500 placeholder-opacity-0 ..." placeholder="jane@example.com">
Learn more in the placeholder 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.
<input class="placeholder-gray-500 sm:placeholder-red-400 md:placeholder-blue-400 lg:placeholder-green-400 xl:placeholder-orange-400" placeholder="jane@example.com">
Focus
To control the placeholder color of an element on focus, add the focus:
prefix to any existing placeholder color utility. For example, use focus:placeholder-blue-600
to apply the placeholder-blue-600
utility on focus.
<input class="placeholder-gray-600 focus:placeholder-gray-500 ..." placeholder="jane@example.com">
Focus utilities can also be combined with responsive utilities by adding the responsive {screen}:
prefix before the focus:
prefix.
<input class="... md:placeholder-gray-900 md:focus:placeholder-red-600 ...">
Customizing
Placeholder Colors
By default Tailwind makes the entire default color palette available as placeholder colors.
You can customize your color palette by editing theme.colors
in your tailwind.config.js
file, or customize just your placeholder colors in the theme.textColor
section.
// tailwind.config.js
module.exports = {
theme: {
- placeholderColor: theme => theme('colors'),
+ placeholderColor: {
+ 'primary': '#3490dc',
+ 'secondary': '#ffed4a',
+ 'danger': '#e3342f',
+ }
}
}
Responsive and pseudo-class variants
By default, only responsive and focus variants are generated for placeholder color utilities.
You can control which variants are generated for the placeholder color utilities by modifying the placeholderColor
property in the variants
section of your tailwind.config.js
file.
For example, this config will also generate hover and active variants:
// tailwind.config.js
module.exports = {
variants: {
// ...
- placeholderColor: ['responsive', 'focus'],
+ placeholderColor: ['responsive', 'focus', 'hover', 'active'],
}
}
Disabling
If you don't plan to use the placeholder color utilities in your project, you can disable them entirely by setting the placeholderColor
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ placeholderColor: false,
}
}