Background
Convey messages effectively by using background colors to enhance meaning and improve visual communication on your website.
Background colors
To apply a background color, just append bg-* to the color class like this: bg-primary
  
bg-primarybg-secondarybg-darkbg-lightbg-successbg-infobg-warningbg-error<div class="bg-primary">bg-primary</div>
<div class="bg-secondary">bg-secondary</div>
<div class="bg-dark">bg-dark</div>
<div class="bg-light">bg-light</div>
<div class="bg-success">bg-success</div>
<div class="bg-info">bg-info</div>
<div class="bg-warning">bg-warning</div>
<div class="bg-error">bg-error</div>
Opacity
Choose from any of the .bg-opacity utilities to change the background opacity
This is 75% opacity success background
      This is 50% opacity success background
      This is 25% opacity success background
      This is 10% opacity success background
      This is default success background
<div class="bg-success  bg-opacity-75">This is 75% opacity success background</div>
<div class="bg-success bg-opacity-50">This is 50% opacity success background</div>
<div class="bg-success bg-opacity-25">This is 25% opacity success background</div>
<div class="bg-success bg-opacity-10">This is 10% opacity success background</div>
<div class="bg-success">This is default success background</div>
Note there are still other opacity classes like 
    bg-opacity-5,bg-opacity-15,bg-opacity-20 and so on...
      Other Background colors
bg-red-100bg-red-200bg-red-300bg-red-400bg-red-500bg-red-600bg-red-700bg-red-800bg-red-900bg-red-1000bg-pink-100bg-pink-200bg-pink-300bg-pink-400bg-pink-500bg-pink-600bg-pink-700bg-pink-800bg-pink-900bg-pink-1000bg-orange-100bg-orange-200bg-orange-300bg-orange-400bg-orange-500bg-orange-600bg-orange-700bg-orange-800bg-orange-900bg-orange-1000bg-purple-100bg-purple-200bg-purple-300bg-purple-400bg-purple-500bg-purple-600bg-purple-700bg-purple-800bg-purple-900bg-purple-1000bg-yellow-100bg-yellow-200bg-yellow-300bg-yellow-400bg-yellow-500bg-yellow-600bg-yellow-700bg-yellow-800bg-yellow-900bg-yellow-1000bg-green-100bg-green-200bg-green-300bg-green-400bg-green-500bg-green-600bg-green-700bg-green-800bg-green-900bg-green-1000bg-blue-100bg-blue-200bg-blue-300bg-blue-400bg-blue-500bg-blue-600bg-blue-700bg-blue-800bg-blue-900bg-blue-1000bg-light-blue-100bg-light-blue-200bg-light-blue-300bg-light-blue-400bg-light-blue-500bg-gray-100bg-gray-200bg-gray-300bg-gray-400bg-gray-500bg-gray-600bg-gray-700bg-gray-800Background Color copied!