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: #ffddea;
--brand-200: #ffb4ce;
--brand-300: #ff84af;
--brand-400: #ff478f;
--brand-500: #ff007f;
--brand-600: #c5005e;
--brand-700: #940041;
--brand-800: #670028;
--brand-900: #3f0010;
--brand-950: #2e0000;
}Tailwind
brand: {
50: '#ffffff',
100: '#ffddea',
200: '#ffb4ce',
300: '#ff84af',
400: '#ff478f',
500: '#ff007f',
600: '#c5005e',
700: '#940041',
800: '#670028',
900: '#3f0010',
950: '#2e0000',
},