Documentación offline Tailwind CSS main
por @raupulus

accent-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
accent-inherit accent-color: inherit;
accent-current accent-color: currentColor;
accent-transparent accent-color: transparent;
accent-(<custom-property>) accent-color: var(<custom-property>);
accent-[<value>] accent-color: <value>;

Examples#

Setting the accent color#

Use utilities like accent-rose-500 and accent-lime-600 to change the accent color of an element:

{

}

<!-- [!code classes:accent-pink-500] -->
<label>
  <input type="checkbox" checked />
  Browser default
</label>
<label>
  <input class="accent-pink-500" type="checkbox" checked />
  Customized
</label>

This is helpful for styling elements like checkboxes and radio groups by overriding the browser's default color.

Changing the opacity#

Use the color opacity modifier to control the opacity of an element's accent color:

{

}

<!-- [!code word:/25] -->
<!-- [!code word:/75] -->
<input class="accent-purple-500/25" type="checkbox" checked />
<input class="accent-purple-500/75" type="checkbox" checked />

Setting the accent color opacity has limited browser-support and only works in Firefox at this time.

Using a custom value#

Applying on hover#

{

}

<!-- [!code classes:hover:accent-pink-500] -->
<input class="accent-black hover:accent-pink-500" type="checkbox" />

Responsive design#

Customizing your theme#