Customized Button color in Bootstrap
Tob
Tob

Categories

Tags

How to change button color in Bootstrap?


/*
Change the color of .btn-primary
*/
.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:visited,
.btn-primary:focus {
    background-color: #31198C;
    border-color: #31198C;
}

/*
Change the color of .btn-outline-primary
*/
.btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary:visited,
.btn-outline-primary:focus {
    border-color: #31198C;
    color: #31198C;
}

/*
Change the color of .btn-outline-primary when mouse over on it
*/
.btn-outline-primary:hover {
  background-color: #31198C;
  color: white;
}