Neon Lights Color Palette

Vibrant Color Palette

About This Palette

Bold neon colors that pop with electric energy.

CSS Variables

:root {
  --color-1: #FF0000;
  --color-2: #00FF00;
  --color-3: #0000FF;
  --color-4: #FFFF00;
  --color-5: #FF007F;
}

Tailwind Config

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'neon-lights': {
          '1': '#FF0000',
          '2': '#00FF00',
          '3': '#0000FF',
          '4': '#FFFF00',
          '5': '#FF007F',
        },
      },
    },
  },
};

More Vibrant Palettes

Browse All Palettes