Documentación offline Tailwind CSS main
por @raupulus

color

main Ver versión oficial en línea Licencia MITDescargado el 2026-09-15 Bundle .md (1.3 MB) ↓

En esta página

CustomizingYourThemeColors, ResponsiveDesign, TargetingSpecificStates, UsingACustomValue, } from "@/components/content.tsx";

Clase Propiedades CSS
text-inherit color: inherit;
text-current color: currentColor;
text-transparent color: transparent;
text-(<custom-property>) color: var(<custom-property>);
text-[<value>] color: <value>;
text-<value> color: var(--color-<value>); /* <value> */

Examples#

Basic example#

Use utilities like text-blue-600 and text-sky-400 to control the text color of an element:

{

The quick brown fox jumps over the lazy dog.

}

<!-- [!code classes:text-blue-600,dark:text-sky-400] -->
<p class="text-blue-600 dark:text-sky-400">The quick brown fox...</p>

Changing the opacity#

Use the color opacity modifier to control the text color opacity of an element:

{

The quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog.

}

<!-- [!code word:\/100] -->
<!-- [!code word:\/75] -->
<!-- [!code word:\/50] -->
<!-- [!code word:\/25] -->
<p class="text-blue-600/100 dark:text-sky-400/100">The quick brown fox...</p>
<p class="text-blue-600/75 dark:text-sky-400/75">The quick brown fox...</p>
<p class="text-blue-600/50 dark:text-sky-400/50">The quick brown fox...</p>
<p class="text-blue-600/25 dark:text-sky-400/25">The quick brown fox...</p>

Using a custom value#

Applying on hover#

{

Oh I gotta get on that{" "} internet , I'm late on everything!

}

<!-- [!code classes:hover:text-blue-600,dark:hover:text-blue-400] -->
<!-- prettier-ignore -->
<p class="...">
  Oh I gotta get on that
  <a class="underline hover:text-blue-600 dark:hover:text-blue-400" href="https://en.wikipedia.org/wiki/Internet">internet</a>,
  I'm late on everything!
</p>

Responsive design#

Customizing your theme#