カラー マネジメント

use-bootstrapは、スタイルとコンポーネントをテーマとする広範なカラーシステムによってサポートされています。

Attributes

use-bootstrap の コンポーネントにおける、カラーの属性について説明します。

Color

コンポーネントの背景色、テキストカラー、ボーダーカラーを一括して変更します。

一部のコンポーネントで設定可能です。

green-100
vue
<template>
 <Alert color="info">
  A simple info
 </Alert>

 <Dropdown>
  <DropdownToggle color="primary-subtle">
   primary-subtle
  </DropdownToggle>
  <DropdownMenu>
   <DropdownItem>Action</DropdownItem>
  </DropdownMenu>
 </Dropdown>

 <Badge
  color="green-100"
  padding="3"
  margin="y-3"
 >
  green-100
 </Badge>
</template>

See Also

Text and Background

コンポーネントの背景色とテキストカラーを一括して変更します。

primary
primary-subtle
cyan-100
vue
<template>
 <b-div
  text-background="primary"
  padding="3"
  margin="b-3"
 >
  primary
 </b-div>
 <b-div
  text-background="primary-subtle"
  padding="3"
  margin="b-3"
 >
  primary-subtle
 </b-div>
 <b-div
  text-background="cyan-100"
  padding="3"
  margin="b-3"
 >
  cyan-100
 </b-div>
</template>

See Also

Text Color

コンポーネント内の文字色のみを設定します。

primary
vue
<template>
 <b-div
  text-color="primary"
  padding="3"
  margin="b-3"
 >
  primary
 </b-div>
 <Spinner text-color="success" />
</template>

See Also

Background Color

コンポーネント内の背景色のみを設定します。

primary
vue
<template>
 <b-div
  background-color="primary"
  text-color="light"
  padding="3"
  margin="b-3"
 >
  primary
 </b-div>
</template>

See Also

Border Color

コンポーネントのボーダー色のみを設定します。

See Also

Colors

Bootstrap 5 Theme Colors

BootstrapのThemeカラーは Sass でカスタマイズ可能です。

Light Mode
Dark Mode
primary
secondary
success
danger
warning
info
primary
secondary
success
danger
warning
info

Subtle Theme Colors

Subtle テーマカラーはダークモードに対応しています。

Light Mode
Dark Mode
primary-subtle
secondary-subtle
success-subtle
danger-subtle
warning-subtle
info-subtle
dark-subtle
primary-subtle
secondary-subtle
success-subtle
danger-subtle
warning-subtle
info-subtle
dark-subtle

Body colors

Body テーマカラーはダークモードに対応しています。

Light Mode
Dark Mode
light
dark
body-secondary
body-tertiary
body
white
transparent
light
dark
body-secondary
body-tertiary
body
white
transparent

Text colors

テキストカラーは背景色に応じて使用するようにしてください。

Light Mode
Dark Mode

.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-body-emphasis

.text-body-secondary

.text-body-tertiary

.text-black

.text-white

.text-black-50

.text-white-50

.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-body-emphasis

.text-body-secondary

.text-body-tertiary

.text-black

.text-white

.text-black-50

.text-white-50

Extend Color

All

use-bootstrapはカラージェネレータを搭載しており、指定された色を動的にスタイルに設定します。

テキストカラーは高コントラスト色が自動的に選択されます。必要に応じて設定を上書きしてください。

blue
blue-100
blue-200
blue-300
blue-400
blue-500
blue-600
blue-700
blue-800
blue-900
indigo
indigo-100
indigo-200
indigo-300
indigo-400
indigo-500
indigo-600
indigo-700
indigo-800
indigo-900
purple
purple-100
purple-200
purple-300
purple-400
purple-500
purple-600
purple-700
purple-800
purple-900
pink
pink-100
pink-200
pink-300
pink-400
pink-500
pink-600
pink-700
pink-800
pink-900
red
red-100
red-200
red-300
red-400
red-500
red-600
red-700
red-800
red-900
orange
orange-100
orange-200
orange-300
orange-400
orange-500
orange-600
orange-700
orange-800
orange-900
yellow
yellow-100
yellow-200
yellow-300
yellow-400
yellow-500
yellow-600
yellow-700
yellow-800
yellow-900
green
green-100
green-200
green-300
green-400
green-500
green-600
green-700
green-800
green-900
teal
teal-100
teal-200
teal-300
teal-400
teal-500
teal-600
teal-700
teal-800
teal-900
cyan
cyan-100
cyan-200
cyan-300
cyan-400
cyan-500
cyan-600
cyan-700
cyan-800
cyan-900

See Also