Danger Button
Copy
<button type="button" class="btn btn-danger me-3">Button</button>
<button type="button" class="btn btn-danger me-3 disabled">Button</button>
<button type="button" class="btn btn-danger me-3 active">Button</button>
<button type="button" class="btn btn-danger btn-sm me-3">Button</button>
<button type="button" class="btn btn-danger btn-lg me-3">Button</button>
Copy
.btn-danger.disabled {
background: #E33E16 !important;
}
.btn-danger {
background-color: #e33e16 !important;
border-color: #e33e16 !important;
}
.btn-danger.btn:hover {
background-color: #EC7C61 !important;
border-color: #EC7C61 !important;
}
.btn-danger.active
{
background: #9A2A0F!important;
border: none;
}