Fire Engine Color Palette

Vibrant Color Palette

About This Palette

Bold red palette inspired by fire trucks and emergency energy.

CSS Variables

:root {
  --color-1: #FF0000;
  --color-2: #FF4500;
  --color-3: #FF6347;
  --color-4: #8B0000;
  --color-5: #DC143C;
}

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'fire-engine': {
          '1': '#FF0000',
          '2': '#FF4500',
          '3': '#FF6347',
          '4': '#8B0000',
          '5': '#DC143C',
        },
      },
    },
  },
};

More Vibrant Palettes

Browse All Palettes