1. 排版
  2. 文本装饰颜色

排版

文本装饰颜色

控制文本装饰颜色的工具类。

ClassStyles
decoration-inherit
text-decoration-color: inherit;
decoration-current
text-decoration-color: currentColor;
decoration-transparent
text-decoration-color: transparent;
decoration-black
text-decoration-color: var(--color-black); /* #000 */
decoration-white
text-decoration-color: var(--color-white); /* #fff */
decoration-red-50
text-decoration-color: var(--color-red-50); /* oklch(0.971 0.013 17.38) */
decoration-red-100
text-decoration-color: var(--color-red-100); /* oklch(0.936 0.032 17.717) */
decoration-red-200
text-decoration-color: var(--color-red-200); /* oklch(0.885 0.062 18.334) */
decoration-red-300
text-decoration-color: var(--color-red-300); /* oklch(0.808 0.114 19.571) */
decoration-red-400
text-decoration-color: var(--color-red-400); /* oklch(0.704 0.191 22.216) */

示例

基本示例

使用工具类 decoration-sky-500decoration-pink-500 来改变元素的 文本装饰 颜色:

我是德里克,一名来自塔图因的宇航工程师。我喜欢在 我的公司工作。工作之外,我喜欢 看跑车比赛 和进行 光剑 战斗。

<p>
我是德里克,一名来自塔图因的宇航工程师。我喜欢在 <a class="underline decoration-sky-500">我的公司</a> 工作。工作之外,我喜欢 <a class="underline decoration-pink-500">看跑车比赛</a> 和进行 <a class="underline decoration-indigo-500">光剑</a> 战斗。
</p>

改变不透明度

使用颜色不透明度修饰符来控制元素的文本装饰颜色的不透明度:

我是德里克,一名来自塔图因的宇航工程师。我喜欢在 我的公司工作。工作之外,我喜欢 看跑车比赛 和进行 光剑 战斗。

<p>
我是德里克,一名来自塔图因的宇航工程师。我喜欢在 <a class="underline decoration-sky-500/30">我的公司</a> 工作。工作之外,我喜欢 <a class="underline decoration-pink-500/30">看跑车比赛</a> 和进行 <a class="underline decoration-indigo-500/30">光剑</a> 战斗。
</p>

使用自定义值

Use the decoration-[<value>] syntax to set the 文本装饰颜色 based on a completely custom value:

<p class="decoration-[#50d71e] ...">
<!-- ... -->
</p>

For CSS variables, you can also use the decoration-(<custom-property>) syntax:

<p class="decoration-(--my-color) ...">
<!-- ... -->
</p>

This is just a shorthand for decoration-[var(<custom-property>)] that adds the var() function for you automatically.

应用于悬停

Prefix a text-decoration-color utility with a variant like hover:* to only apply the utility in that state:

将鼠标悬停在文本上以查看预期效果

棕色疾走狐狸 跃过懒狗。
<p><a href="..." class="underline hover:decoration-pink-500 ...">棕色疾走狐狸</a> 跃过懒狗。</p>

Learn more about using variants in the variants documentation.

响应式设计

Prefix a text-decoration-color utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:

<p class="underline decoration-sky-600 md:decoration-blue-400 ...">
<!-- ... -->
</p>

Learn more about using variants in the variants documentation.

自定义主题

Use the --color-* theme variables to customize the color utilities in your project:

@theme {
--color-regal-blue: #243c5a;
}

Now the decoration-regal-blue utility can be used in your markup:

<p class="decoration-regal-blue">
<!-- ... -->
</p>

Learn more about customizing your theme in the theme documentation.