Colors

They convey meaning with a handful of colour utility classes. This section also includes support for styling links with hover states.

.text-primary

.text-secondary

.text-success

.text-danger

.text-warning

.text-info

.text-dark

.text-body

.text-muted

.text-black-50

.text-white

.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-dark">.text-dark</p>
                            <p class="text-body">.text-body</p>
                            <p class="text-muted">.text-muted</p>
                            <p class="text-black-50">.text-black-50</p>
                            <p class="text-white bg-dark">.text-white</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-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-muted">Muted link</a></p>
                            <p><a href="#" class="text-white bg-dark">White link</a></p>