VOOZH about

URL: https://www.geeksforgeeks.org/bootstrap/how-to-change-navigation-bar-color-in-bootstrap/

⇱ How to Change Navigation Bar Color in Bootstrap? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to Change Navigation Bar Color in Bootstrap?

Last Updated : 6 Sep, 2024

Changing the navigation bar color in Bootstrap means customizing the appearance of the navbar by modifying its background, text, or other styling elements.

Below are the approaches to change the color of the navigation bar in Bootstrap:

Using the inbuilt color classes

Changing the text color: The text color of the navigation bar can be changed using two inbuilt classes: 

ClassDescription
navbar-lightSets text color to dark. Used with a light background.
navbar-darkSets text color to light. Used with the dark background.

Changing the background color:

Bootstrap 4 has a few inbuilt classes for the colors of any background. These can be used to set the color of the background of the navigation bar. The various background classes available are:

ClassDescription
.bg-primarySets color to primary.
.bg-secondarySets color to secondary.
.bg-successSets color to success.
.bg-dangerSets color to danger.
.bg-warningSets color to warning.
.bg-infoSets color to info.
.bg-lightSets color to light.
.bg-darkSets color to dark.
.bg-whiteSets color to white.
.bg-transparentSets navbar to transparent.

Example: In this example we demonstrates how to change the navigation bar color in Bootstrap using different background color classes like bg-light, bg-warning, bg-dark, bg-primary, bg-secondary, and bg-success.

Output:

👁 navigation-bar-color-in-Bootstrap
Changing navigation bar color in Bootstrap Example Output

Creating a custom class for the navigation bar

A custom class can be created to specify the background color and the text color of the navbar. This class is styled using CSS according to the required values. The names of the classes are kept in a manner to override the inbuilt navigation bar classes.
The background color is set by directly specifying the background-color property with the color needed. 

The navbar text and the brand text color can be set using the .navbar-text and .navbar-brand classes. These are the inbuilt navigation bar classes that are be overridden by using the same class name. The text color is specified using the color property.

Example:

Output:

👁 changing-navigation-bar-color-in-Bootstrap

Comment

Explore