Backgrounds & Gradients in Tailwind CSS

From the Tailwind CSS cheat sheet ยท Backgrounds & Borders ยท verified Jul 2026

Backgrounds & Gradients

Background colors, images, and gradient utilities.

html
<!-- Background color -->
<div class="bg-white dark:bg-gray-900">Card</div>
<div class="bg-blue-500/10">Subtle tint</div>

<!-- Gradients -->
<div class="bg-gradient-to-r from-blue-500 to-purple-500">
  Left to right gradient
</div>
<div class="bg-gradient-to-br from-pink-500 via-red-500 to-yellow-500">
  Three-color diagonal gradient
</div>
๐Ÿ’ก Use via-color to add a mid-point color stop in gradients
โšก bg-blue-500/10 creates a subtle tint โ€” great for hover states and cards
๐Ÿ“Œ bg-fixed creates a parallax scrolling effect on background images
๐ŸŸข Gradient directions: to-r (right), to-b (bottom), to-br (bottom-right), etc.
backgroundsgradientsimages

More Tailwind CSS tasks

Back to the full Tailwind CSS cheat sheet