Open In App

How to change navigation bar color in Bootstrap ?

Improve
Improve
Like Article
Like
Save
Share
Report

The navigation bar color can be changed in Bootstrap using 2 methods:
Method 1: Using the inbuilt color classes
Changing the text color
The text color of the navigation bar can be changed using two inbuilt classes: 
 

  • navbar-light: This class will set the color of the text to dark. This is used when using a light background color.
  • navbar-dark: This class will set the color of the text to light. This is used when using a dark background color.

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:
 

  • .bg-primary: This sets the color to the primary color.
  • .bg-secondary: This sets the color to the secondary color.
  • .bg-success: This sets the color to the success color.
  • .bg-danger: This sets the color to the danger color.
  • .bg-warning: This sets the color to the warning color.
  • .bg-info: This sets the color to the info color.
  • .bg-light: This sets the color to the light color.
  • .bg-dark: This sets the color to the dark color.
  • .bg-white: This sets the color to the white color.
  • .bg-transparent: This sets the navbar to be transparent.

Example: 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
      How to change navigation bar color in Bootstrap ?
  </title>
 
    <!-- Include Bootstrap CSS -->
    <link rel="stylesheet" href=
</head>
 
<body>
    <!-- Navbar text is dark and background is light -->
    <nav class="navbar navbar-light bg-light">
        <a class="navbar-brand" href="#">
          Light color background
      </a>
    </nav>
 
    <nav class="navbar navbar-light bg-warning">
        <a class="navbar-brand" href="#">
          Warning color background
      </a>
    </nav>
 
    <!-- Navbar text is light and background is dark -->
    <nav class="navbar navbar-dark bg-dark">
        <a class="navbar-brand" href="#">
          Dark color background
      </a>
    </nav>
 
    <nav class="navbar navbar-dark bg-primary">
        <a class="navbar-brand" href="#">
          Primary color background
      </a>
    </nav>
 
    <nav class="navbar navbar-dark bg-secondary">
        <a class="navbar-brand" href="#">
          Secondary color background
      </a>
    </nav>
 
    <nav class="navbar navbar-dark bg-success">
        <a class="navbar-brand" href="#">
          Success color background
      </a>
    </nav>
 
    <div class="container">
        <h1 style="color: green">GeeksforGeeks</h1>
        <b>
          How to change navigation bar color in Bootstrap ?
      </b>
         
<p>The above navigation bars use some of the
          default color classes available in Bootstrap4.</p>
 
    </div>
</body>
 
</html>


Output: 
 

inbuilt-class

Method 2: 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. 
 

html




/* Modify the background color */
.navbar-custom {
    background-color: lightgreen;
}


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.
 

html




/* Modify brand and text color */
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
    color: green;
}


Example: 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
      How to change navigation bar color in Bootstrap ?
  </title>
 
    <!-- Include Bootstrap CSS -->
    <link rel="stylesheet"
          href=
 
    <style>
        /* Modify the background color */
         
        .navbar-custom {
            background-color: lightgreen;
        }
        /* Modify brand and text color */
         
        .navbar-custom .navbar-brand,
        .navbar-custom .navbar-text {
            color: green;
        }
    </style>
</head>
 
<body>
    <!-- Navbar text is dark and background is light -->
    <nav class="navbar navbar-custom">
        <a class="navbar-brand" href="#">
          Custom color background navbar
      </a>
    </nav>
 
    <div class="container">
        <h1 style="color: green">GeeksforGeeks</h1>
        <b>How to change navigation bar
          color in Bootstrap ?</b>
       
         
<p>The above navigation bar uses a
          custom class for changing the colors.</p>
 
    </div>
</body>
 
</html>


Output: 
 

custom-class

 



Last Updated : 03 Aug, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads