1. 交互
  2. 插入符号颜色

交互

光标颜色

用于控制文本输入光标颜色的工具。

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

示例

基本示例

使用诸如 caret-rose-500caret-lime-600 的工具来改变文本输入光标的颜色:

聚焦文本区域以查看新的光标颜色

<textarea class="caret-pink-500 ..."></textarea>

使用自定义值

Use the caret-[<value>] syntax to set the 光标颜色 based on a completely custom value:

<textarea class="caret-[#50d71e] ..."></textarea>

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

<textarea class="caret-(--my-caret-color) ..."></textarea>

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

// caret color

响应式设计

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

<textarea class="caret-rose-500 md:caret-lime-600 ..."></textarea>

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 caret-regal-blue utility can be used in your markup:

<textarea class="caret-regal-blue"></textarea>

Learn more about customizing your theme in the theme documentation.