description: Convey meaning through `background-color` and add decoration with gradients.
group: utilities
toc: true
---
## Background color
Similar to the contextual text color classes, set the background of an element to any contextual class. Background utilities **do not set `color`**, so in some cases you'll want to use `.text-*` [color utilities]({{< docsref "/utilities/colors" >}}).
{{<example>}}
{{<colors.inline>}}
{{- range (index $.Site.Data "theme-colors") }}
<divclass="p-3 mb-2 bg-{{ .name }}{{ if .contrast_color }} text-{{ .contrast_color }}{{ else }} text-white{{ end }}">.bg-{{ .name }}</div>
By adding a `.bg-gradient` class, a linear gradient is added as background image to the backgrounds. This gradient starts with a semi-transparent white which fades out to the bottom.
Do you need a gradient in your custom CSS? Just add `background-image: var(--bs-gradient);`.
{{<markdown>}}
{{<colors.inline>}}
{{- range (index $.Site.Data "theme-colors") }}
<divclass="p-3 mb-2 bg-{{ .name }} bg-gradient{{ with .contrast_color }} text-{{ . }}{{ else }} text-white{{ end }}">.bg-{{ .name }}.bg-gradient</div>
<smallclass="d-inline-flex px-2 py-1 font-monospace text-muted border rounded-3">Added in v5.1.0</small>
As of v5.1.0, `background-color` utilities are generated with Sass using CSS variables. This allows for real-time color changes without compilation and dynamic alpha transparency changes.
We use an RGB version of our `--bs-succes` (with the value of `25, 135, 84`) CSS variable and attached a second CSS variable, `--bs-bg-opacity`, for the alpha transparency (with no default value, but a fallback of `1`). That means anytime you use `.bg-success` now, your computed `color` value is `rgba(25, 135, 84, 1)`.
### Example
To change that opacity, override `--bs-bg-opacity` via custom styles or inline styles.
{{<example>}}
<divclass="bg-success p-2 text-white">This is default success background</div>
<divclass="bg-success p-2"style="--bs-bg-opacity: .5;">This is 50% opacity success background</div>
{{</example>}}
Or, choose from any of the `.bg-opacity` utilities:
{{<example>}}
<divclass="bg-success p-2 text-white">This is default success background</div>
<divclass="bg-success p-2 text-white bg-opacity-75">This is 75% opacity success background</div>
<divclass="bg-success p-2 text-dark bg-opacity-50">This is 50% opacity success background</div>
<divclass="bg-success p-2 text-dark bg-opacity-25">This is 25% opacity success background</div>
<divclass="bg-success p-2 text-dark bg-opacity-10">This is 10% opacity success background</div>
In addition to the following Sass functionality, consider reading about our included [CSS custom properties]({{< docsref "/customize/css-variables" >}}) (aka CSS variables) for colors and more.
### Variables
Most `background-color` utilities are generated by our theme colors, reassigned from our generic color palette variables.
**No mixins are used to generate our background utilities**, but we do have some additional mixins for other situations where you'd like to create your own gradients.
Background utilities are declared in our utilities API in `scss/_utilities.scss`. [Learn how to use the utilities API.]({{< docsref "/utilities/api#using-the-api" >}})