跳到主要内容 跳到文档导航

color通过一些颜色实用程序类传达含义。还包括对具有悬停状态的样式链接的支持。

颜色

使用颜色实用程序为文本着色。如果你想为链接着色,你可以使用具有:hover:focus状态的.link-*帮助类。

.text-primary

.text-primary-emphasis

.text-secondary

.text-secondary-emphasis

.text-success

.text-success-emphasis

.text-danger

.text-danger-emphasis

.text-warning

.text-warning-emphasis

.text-info

.text-info-emphasis

.text-light

.text-light-emphasis

.text-dark

.text-dark-emphasis

.text-body

.text-muted

.text-body-emphasis

.text-body-secondary

.text-body-tertiary

.text-black

.text-white

.text-black-50

.text-white-50

HTML
<p class="text-primary">.text-primary</p>
<p class="text-primary-emphasis">.text-primary-emphasis</p>
<p class="text-secondary">.text-secondary</p>
<p class="text-secondary-emphasis">.text-secondary-emphasis</p>
<p class="text-success">.text-success</p>
<p class="text-success-emphasis">.text-success-emphasis</p>
<p class="text-danger">.text-danger</p>
<p class="text-danger-emphasis">.text-danger-emphasis</p>
<p class="text-warning bg-dark">.text-warning</p>
<p class="text-warning-emphasis">.text-warning-emphasis</p>
<p class="text-info bg-dark">.text-info</p>
<p class="text-info-emphasis">.text-info-emphasis</p>
<p class="text-light bg-dark">.text-light</p>
<p class="text-light-emphasis">.text-light-emphasis</p>
<p class="text-dark bg-white">.text-dark</p>
<p class="text-dark-emphasis">.text-dark-emphasis</p>
<p class="text-body">.text-body</p>
<p class="text-muted">.text-muted</p>

<p class="text-body-emphasis">.text-body-emphasis</p>
<p class="text-body-secondary">.text-body-secondary</p>
<p class="text-body-tertiary">.text-body-tertiary</p>

<p class="text-black bg-white">.text-black</p>
<p class="text-white bg-dark">.text-white</p>
<p class="text-black-50 bg-white">.text-black-50</p>
<p class="text-white-50 bg-dark">.text-white-50</p>
弃用:添加.text-opacity-*实用程序和文本实用程序的 CSS 变量,.text-black-50.text-white-50v5.1.0 开始弃用。它们将在 v6.0.0 中被删除。
弃用:随着扩展的主题颜色和变量的添加,该.text-muted实用程序已从 v5.3.0 开始弃用。它的默认值也已重新分配给新的--bs-secondary-colorCSS 变量,以更好地支持颜色模式。它将在 v6.0.0 中删除。
向辅助技术传达意义

使用颜色来添加含义仅提供视觉指示,不会将其传达给辅助技术的用户——例如屏幕阅读器。确保用颜色表示的信息要么从内容本身(例如可见文本)中显而易见,要么通过其他方式包含在内,例如隐藏在.visually-hidden类中的附加文本。

不透明度

添加于 v5.1.0

从 v5.1.0 开始,文本颜色实用程序是使用 CSS 变量通过 Sass 生成的。这允许实时颜色更改而无需编译和动态 alpha 透明度更改。

怎么运行的

考虑我们的默认.text-primary实用程序。

.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

我们使用 RGB 版本的CSS 变量--bs-primary(值为13, 110, 253)并附加第二个 CSS 变量 ,--bs-text-opacity用于 alpha 透明度(具有默认值1,这要归功于本地 CSS 变量)。这意味着您.text-primary现在使用的任何时候,您的计算color值都是rgba(13, 110, 253, 1)。每个.text-*类中的局部 CSS 变量避免了继承问题,因此实用程序的嵌套实例不会自动具有修改后的 alpha 透明度。

例子

要更改该不透明度,请通过自定义样式或内联样式进行覆盖--bs-text-opacity

This is default primary text
This is 50% opacity primary text
HTML
<div class="text-primary">This is default primary text</div>
<div class="text-primary" style="--bs-text-opacity: .5;">This is 50% opacity primary text</div>

或者,从任何.text-opacity实用程序中进行选择:

This is default primary text
This is 75% opacity primary text
This is 50% opacity primary text
This is 25% opacity primary text
HTML
<div class="text-primary">This is default primary text</div>
<div class="text-primary text-opacity-75">This is 75% opacity primary text</div>
<div class="text-primary text-opacity-50">This is 50% opacity primary text</div>
<div class="text-primary text-opacity-25">This is 25% opacity primary text</div>

特殊性

有时,由于另一个选择器的特殊性,无法应用上下文类。在某些情况下,一个足够的解决方法是将元素的内容包装在一个<div>或多个具有所需类的语义元素中。

Sass

除了以下 Sass 功能之外,请考虑阅读我们包含的颜色等CSS 自定义属性(也称为 CSS 变量)。

变量

大多数color实用程序都是由我们的主题颜色生成的,从我们的通用调色板变量中重新分配。

$blue:    #0d6efd;
$indigo:  #6610f2;
$purple:  #6f42c1;
$pink:    #d63384;
$red:     #dc3545;
$orange:  #fd7e14;
$yellow:  #ffc107;
$green:   #198754;
$teal:    #20c997;
$cyan:    #0dcaf0;
$primary:       $blue;
$secondary:     $gray-600;
$success:       $green;
$info:          $cyan;
$warning:       $yellow;
$danger:        $red;
$light:         $gray-100;
$dark:          $gray-900;

灰度颜色也可用,但只有一个子集用于生成任何实用程序。

$white:    #fff;
$gray-100: #f8f9fa;
$gray-200: #e9ecef;
$gray-300: #dee2e6;
$gray-400: #ced4da;
$gray-500: #adb5bd;
$gray-600: #6c757d;
$gray-700: #495057;
$gray-800: #343a40;
$gray-900: #212529;
$black:    #000;

映射

然后将主题颜色放入 Sass 映射中,以便我们可以遍历它们以生成我们的实用程序、组件修改器等。

$theme-colors: (
  "primary":    $primary,
  "secondary":  $secondary,
  "success":    $success,
  "info":       $info,
  "warning":    $warning,
  "danger":     $danger,
  "light":      $light,
  "dark":       $dark
);

灰度颜色也可用作 Sass 映射。该映射不用于生成任何实用程序。

$grays: (
  "100": $gray-100,
  "200": $gray-200,
  "300": $gray-300,
  "400": $gray-400,
  "500": $gray-500,
  "600": $gray-600,
  "700": $gray-700,
  "800": $gray-800,
  "900": $gray-900
);

RGB 颜色是从单独的 Sass 映射生成的:

$theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value");

颜色不透明度建立在它们自己的映射之上,由实用程序 API 使用:

$utilities-text: map-merge(
  $utilities-colors,
  (
    "black": to-rgb($black),
    "white": to-rgb($white),
    "body": to-rgb($body-color)
  )
);
$utilities-text-colors: map-loop($utilities-text, rgba-css-var, "$key", "text");

$utilities-text-emphasis-colors: (
  "primary-emphasis": var(--#{$prefix}primary-text),
  "secondary-emphasis": var(--#{$prefix}secondary-text),
  "success-emphasis": var(--#{$prefix}success-text),
  "info-emphasis": var(--#{$prefix}info-text),
  "warning-emphasis": var(--#{$prefix}warning-text),
  "danger-emphasis": var(--#{$prefix}danger-text),
  "light-emphasis": var(--#{$prefix}light-text),
  "dark-emphasis": var(--#{$prefix}dark-text)
);

实用程序接口

颜色实用程序在我们的实用程序 API 中声明scss/_utilities.scss了解如何使用实用程序 API。

    "color": (
      property: color,
      class: text,
      local-vars: (
        "text-opacity": 1
      ),
      values: map-merge(
        $utilities-text-colors,
        (
          "muted": $text-muted, // deprecated
          "black-50": rgba($black, .5), // deprecated
          "white-50": rgba($white, .5), // deprecated
          "body-secondary": var(--#{$prefix}secondary-color),
          "body-tertiary": var(--#{$prefix}tertiary-color),
          "body-emphasis": var(--#{$prefix}emphasis-color),
          "reset": inherit,
        )
      )
    ),
    "text-opacity": (
      css-var: true,
      class: text-opacity,
      values: (
        25: .25,
        50: .5,
        75: .75,
        100: 1
      )
    ),
    "text-color": (
      property: color,
      class: text,
      values: $utilities-text-emphasis-colors
    ),