Customize theme

Colors
Primary
Success
Warning
Danger
Info
Direction
RTL

Change text direction

To switch the text direction of your webpage from LTR to RTL, please consult the detailed instructions provided in the relevant section of our documentation.
Border width, px
Rounding, rem

To apply the provided styles to your webpage, enclose them within a <style> tag and insert this tag into the <head> section of your HTML document after the following link to the main stylesheet:
<link href="assets/css/theme.min.css">


          
Bootstrap docs

Alerts

Provide contextual feedback messages for typical user actions.

Basic example

<!-- Primary alert -->
<div class="alert alert-primary" role="alert">
  A simple primary alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.
</div>

<!-- Secondary alert -->
<div class="alert alert-secondary" role="alert">
  A simple secondary alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.
</div>

<!-- Success alert -->
<div class="alert alert-success" role="alert">
  A simple success alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.
</div>

<!-- Danger alert -->
<div class="alert alert-danger" role="alert">
  A simple danger alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.
</div>

<!-- Warning alert -->
<div class="alert alert-warning" role="alert">
  A simple warning alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.
</div>

<!-- Info alert -->
<div class="alert alert-info" role="alert">
  A simple info alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.
</div>

<!-- Light alert -->
<div class="alert alert-light" role="alert">
  A simple light alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.
</div>

<!-- Dark alert -->
<div class="alert alert-dark" role="alert">
  A simple dark alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.
</div>

Alert with icon

<!-- Primary alert -->
<div class="alert d-flex alert-primary" role="alert">
  <i class="ci-bell fs-lg pe-1 mt-1 me-2"></i>
  <div>A simple primary alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.</div>
</div>

<!-- Secondary alert -->
<div class="alert d-flex alert-secondary" role="alert">
  <i class="ci-clock fs-lg pe-1 mt-1 me-2"></i>
  <div>A simple secondary alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.</div>
</div>

<!-- Success alert -->
<div class="alert d-flex alert-success" role="alert">
  <i class="ci-check-circle fs-lg pe-1 mt-1 me-2"></i>
  <div>A simple success alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.</div>
</div>

<!-- Danger alert -->
<div class="alert d-flex alert-danger" role="alert">
  <i class="ci-banned fs-lg pe-1 mt-1 me-2"></i>
  <div>A simple danger alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.</div>
</div>

<!-- Warning alert -->
<div class="alert d-flex alert-warning" role="alert">
  <i class="ci-alert-triangle fs-lg pe-1 mt-1 me-2"></i>
  <div>A simple warning alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.</div>
</div>

<!-- Info alert -->
<div class="alert d-flex alert-info" role="alert">
  <i class="ci-info fs-lg pe-1 mt-1 me-2"></i>
  <div>A simple info alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.</div>
</div>

<!-- Light alert -->
<div class="alert d-flex alert-light" role="alert">
  <i class="ci-unlock fs-lg pe-1 mt-1 me-2"></i>
  <div>A simple light alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.</div>
</div>

<!-- Dark alert -->
<div class="alert d-flex alert-dark" role="alert">
  <i class="ci-map-pin fs-lg pe-1 mt-1 me-2"></i>
  <div>A simple dark alert with <a class="alert-link" href="#">an example link</a>. Give it a click if you like.</div>
</div>

Dismissible alerts

<!-- Primary alert -->
<div class="alert alert-primary alert-dismissible fade show" role="alert">
  <span class="fw-semibold">Primary alert:</span> Dismiss me by clicking the close button on the right.
  <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>

<!-- Secondary alert -->
<div class="alert alert-secondary alert-dismissible fade show" role="alert">
  <span class="fw-semibold">Secondary alert:</span> Dismiss me by clicking the close button on the right.
  <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>

<!-- Success alert -->
<div class="alert alert-success alert-dismissible fade show" role="alert">
  <span class="fw-semibold">Success alert:</span> Dismiss me by clicking the close button on the right.
  <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>

<!-- Danger alert -->
<div class="alert alert-danger alert-dismissible fade show" role="alert">
  <span class="fw-semibold">Danger alert:</span> Dismiss me by clicking the close button on the right.
  <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>

<!-- Warning alert -->
<div class="alert alert-warning alert-dismissible fade show" role="alert">
  <span class="fw-semibold">Warning alert:</span> Dismiss me by clicking the close button on the right.
  <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>

<!-- Info alert -->
<div class="alert alert-info alert-dismissible fade show" role="alert">
  <span class="fw-semibold">Info alert:</span> Dismiss me by clicking the close button on the right.
  <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>

<!-- Light alert -->
<div class="alert alert-light alert-dismissible fade show" role="alert">
  <span class="fw-semibold">Light alert:</span> Dismiss me by clicking the close button on the right.
  <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>

<!-- Dark alert -->
<div class="alert alert-dark alert-dismissible fade show" role="alert">
  <span class="fw-semibold">Dark alert:</span> Dismiss me by clicking the close button on the right.
  <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>

Additional content

<!-- Success alert with additional content -->
<div class="alert d-sm-flex alert-success pb-4 pt-sm-4" role="alert">
  <i class="ci-check-circle fs-4 mt-1 mb-2 mb-sm-0"></i>
  <div class="ps-sm-3 pe-sm-4">
    <h4 class="alert-heading mb-2">Well done!</h4>
    <p class="mb-3">Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
    <hr class="text-success opacity-25 my-3">
    <p class="mb-0">Whenever you need to, be sure to use margin and padding utilities to keep things nice and tidy.</p>
  </div>
</div>
Top Customize