Shade Generator
A perceptual 50–950 scale from any color. Interpolated in CIE-LAB so each step looks evenly spaced to the eye; step 500 is always your base color.
Click any step to copy its HEX.
CSS variables
:root {
--brand-50: #ffffff;
--brand-100: #ffdce2;
--brand-200: #ffb1bd;
--brand-300: #ff8097;
--brand-400: #ef446f;
--brand-500: #e30b5c;
--brand-600: #b00043;
--brand-700: #85002d;
--brand-800: #5e001a;
--brand-900: #3b0000;
--brand-950: #2c0000;
}Tailwind
brand: {
50: '#ffffff',
100: '#ffdce2',
200: '#ffb1bd',
300: '#ff8097',
400: '#ef446f',
500: '#e30b5c',
600: '#b00043',
700: '#85002d',
800: '#5e001a',
900: '#3b0000',
950: '#2c0000',
},