Skip to main content

Colors

Convey meaning through color with a handful of color utility classes. Includes support for styling links with hover states, too.

Color

.text-primary

.text-secondary

.text-success

.text-danger

.text-warning

.text-info

.text-light

.text-dark

.text-tertiary

.text-quaternary

.text-quinary

.text-senary

.text-septenary

.text-octonary

.text-nonary

.text-denary

.text-body

.text-muted

.text-white

.text-black-50

.text-white-50

<p class="text-primary">.text-primary</p>
<p class="text-secondary">.text-secondary</p>
<p class="text-success">.text-success</p>
<p class="text-danger">.text-danger</p>
<p class="text-warning">.text-warning</p>
<p class="text-info">.text-info</p>
<p class="text-light bg-dark">.text-light</p>
<p class="text-dark">.text-dark</p>
<p class="text-tertiary">.text-tertiary</p>
<p class="text-quaternary">.text-quaternary</p>
<p class="text-quinary">.text-quinary</p>
<p class="text-senary">.text-senary</p>
<p class="text-septenary">.text-septenary</p>
<p class="text-octonary">.text-octonary</p>
<p class="text-nonary">.text-nonary</p>
<p class="text-denary">.text-denary</p>
<p class="text-body">.text-body</p>
<p class="text-muted">.text-muted</p>
<p class="text-white bg-dark">.text-white</p>
<p class="text-black-50">.text-black-50</p>
<p class="text-white-50 bg-dark">.text-white-50</p>

Contextual text classes also work well on anchors with the provided hover and focus states. Note that the .text-white and .text-muted class has no link styling.

<p><a href="#" class="text-primary">Primary link</a></p>
<p><a href="#" class="text-secondary">Secondary link</a></p>
<p><a href="#" class="text-success">Success link</a></p>
<p><a href="#" class="text-danger">Danger link</a></p>
<p><a href="#" class="text-warning">Warning link</a></p>
<p><a href="#" class="text-info">Info link</a></p>
<p><a href="#" class="text-light bg-dark">Light link</a></p>
<p><a href="#" class="text-dark">Dark link</a></p>
<p><a href="#" class="text-tertiary">Tertiary link</a></p>
<p><a href="#" class="text-quaternary">Quaternary link</a></p>
<p><a href="#" class="text-quinary">Quinary link</a></p>
<p><a href="#" class="text-senary">Senary link</a></p>
<p><a href="#" class="text-septenary">Septenary link</a></p>
<p><a href="#" class="text-octonary">Octonary link</a></p>
<p><a href="#" class="text-nonary">Nonary link</a></p>
<p><a href="#" class="text-denary">Denary link</a></p>
<p><a href="#" class="text-muted">Muted link</a></p>
<p><a href="#" class="text-white bg-dark">White link</a></p>

Background color

Similar to the contextual text color classes, easily set the background of an element to any contextual class. Anchor components will darken on hover, just like the text classes. Background utilities do not set color, so in some cases you’ll want to use .text-* utilities.

.bg-primary
.bg-secondary
.bg-success
.bg-danger
.bg-warning
.bg-info
.bg-light
.bg-dark
.bg-tertiary
.bg-quaternary
.bg-quinary
.bg-senary
.bg-septenary
.bg-octonary
.bg-nonary
.bg-denary
.bg-white
.bg-transparent
<div class="p-3 mb-2 bg-primary text-white">.bg-primary</div>
<div class="p-3 mb-2 bg-secondary text-white">.bg-secondary</div>
<div class="p-3 mb-2 bg-success text-white">.bg-success</div>
<div class="p-3 mb-2 bg-danger text-white">.bg-danger</div>
<div class="p-3 mb-2 bg-warning text-dark">.bg-warning</div>
<div class="p-3 mb-2 bg-info text-white">.bg-info</div>
<div class="p-3 mb-2 bg-light text-dark">.bg-light</div>
<div class="p-3 mb-2 bg-dark text-white">.bg-dark</div>
<div class="p-3 mb-2 bg-tertiary text-white">.bg-tertiary</div>
<div class="p-3 mb-2 bg-quaternary text-white">.bg-quaternary</div>
<div class="p-3 mb-2 bg-quinary text-white">.bg-quinary</div>
<div class="p-3 mb-2 bg-senary text-white">.bg-senary</div>
<div class="p-3 mb-2 bg-septenary text-white">.bg-septenary</div>
<div class="p-3 mb-2 bg-octonary text-white">.bg-octonary</div>
<div class="p-3 mb-2 bg-nonary text-white">.bg-nonary</div>
<div class="p-3 mb-2 bg-denary text-white">.bg-denary</div>
<div class="p-3 mb-2 bg-white text-dark">.bg-white</div>
<div class="p-3 mb-2 bg-transparent text-dark">.bg-transparent</div>

Background gradient

When $enable-gradients is set to true, you’ll be able to use .bg-gradient- utility classes. By default, $enable-gradients is disabled and the example below is intentionally broken. This is done for easier customization from the moment you start using Melvin. Learn about our Sass options to enable these classes and more.

.bg-gradient-primary
.bg-gradient-secondary
.bg-gradient-success
.bg-gradient-danger
.bg-gradient-warning
.bg-gradient-info
.bg-gradient-light
.bg-gradient-dark
.bg-gradient-tertiary
.bg-gradient-quaternary
.bg-gradient-quinary
.bg-gradient-senary
.bg-gradient-septenary
.bg-gradient-octonary
.bg-gradient-nonary
.bg-gradient-denary
<div class="p-3 mb-2 bg-gradient-primary text-white">.bg-gradient-primary</div>
<div class="p-3 mb-2 bg-gradient-secondary text-white">.bg-gradient-secondary</div>
<div class="p-3 mb-2 bg-gradient-success text-white">.bg-gradient-success</div>
<div class="p-3 mb-2 bg-gradient-danger text-white">.bg-gradient-danger</div>
<div class="p-3 mb-2 bg-gradient-warning text-dark">.bg-gradient-warning</div>
<div class="p-3 mb-2 bg-gradient-info text-white">.bg-gradient-info</div>
<div class="p-3 mb-2 bg-gradient-light text-dark">.bg-gradient-light</div>
<div class="p-3 mb-2 bg-gradient-dark text-white">.bg-gradient-dark</div>
<div class="p-3 mb-2 bg-gradient-tertiary text-white">.bg-gradient-tertiary</div>
<div class="p-3 mb-2 bg-gradient-quaternary text-white">.bg-gradient-quaternary</div>
<div class="p-3 mb-2 bg-gradient-quinary text-white">.bg-gradient-quinary</div>
<div class="p-3 mb-2 bg-gradient-senary text-white">.bg-gradient-senary</div>
<div class="p-3 mb-2 bg-gradient-septenary text-white">.bg-gradient-septenary</div>
<div class="p-3 mb-2 bg-gradient-octonary text-white">.bg-gradient-octonary</div>
<div class="p-3 mb-2 bg-gradient-nonary text-white">.bg-gradient-nonary</div>
<div class="p-3 mb-2 bg-gradient-denary text-white">.bg-gradient-denary</div>

Dealing with specificity

Sometimes contextual classes cannot be applied due to the specificity of another selector. In some cases, a sufficient workaround is to wrap your element’s content in a <div> with the class.

Conveying meaning to assistive technologies

Using color to add meaning only provides a visual indication, which will not be conveyed to users of assistive technologies – such as screen readers. Ensure that information denoted by the color is either obvious from the content itself (e.g. the visible text), or is included through alternative means, such as additional text hidden with the .sr-only class.