Course Content
Bootstrap 5 Alerts
0/1
Progress Bars
0/1
Spinners
0/1
Pagination
0/1
List Groups
0/1
Bootstrap 5 Scrollspy
0/1
Bootstrap
About Lesson

Bootstrap5 Colors

Bootstrap 5 provides text color utility classes to style text quickly without writing custom CSS. These classes help in applying predefined color themes to text elements.

1. Bootstrap 5 Text Color Classes (text-*)

You can use text-* classes to apply different colors to text.

  • text-primaryBlue
  • text-secondaryGray
  • text-successGreen
  • text-dangerRed
  • text-warningYellow
  • text-infoCyan
  • text-lightLight Gray
  • text-darkDark Gray
  • text-bodyDefault Text Color
  • text-mutedMuted (Faded) Text
  • text-whiteWhite Text

Example:

HTML
<p class="text-primary">This is Primary (Blue) Text</p>
<p class="text-secondary">This is Secondary (Gray) Text</p>
<p class="text-success">This is Success (Green) Text</p>
<p class="text-danger">This is Danger (Red) Text</p>
<p class="text-warning">This is Warning (Yellow) Text</p>
<p class="text-info">This is Info (Cyan) Text</p>
<p class="text-dark">This is Dark (Gray-Black) Text</p>
<p class="text-muted">This is Muted (Dimmed) Text</p>
<p class="text-white bg-dark">This is White Text on Dark Background</p>

Output:

2. 50% Opacity Text (text-black-50 & text-white-50)

Bootstrap 5 provides 50% opacity versions of black and white text:

  • text-black-50Black text with 50% opacity
  • text-white-50White text with 50% opacity

Example:

HTML
<div class="p-3 bg-light text-black-50">This is Black 50% Opacity</div>
<div class="p-3 bg-dark text-white-50">This is White 50% Opacity</div>

Output:

3. Opacity (opacity-*)

Bootstrap 5 provides opacity utilities to control transparency levels.

  • opacity-100 → Fully visible
  • opacity-75 → 75% visible
  • opacity-50 → 50% visible
  • opacity-25 → 25% visible
  • opacity-0 → Fully transparent

Example:

HTML
<div class="p-3 bg-primary text-white opacity-100">Opacity 100%</div>
<div class="p-3 bg-primary text-white opacity-75">Opacity 75%</div>
<div class="p-3 bg-primary text-white opacity-50">Opacity 50%</div>
<div class="p-3 bg-primary text-white opacity-25">Opacity 25%</div>
<div class="p-3 bg-primary text-white opacity-0">Opacity 0% (Invisible)</div>

Output: