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: #ffdddd;
--brand-200: #ffb2b6;
--brand-300: #ff828c;
--brand-400: #ff4563;
--brand-500: #f5054f;
--brand-600: #be0037;
--brand-700: #8f0023;
--brand-800: #640011;
--brand-900: #3f0000;
--brand-950: #2f0000;
}Tailwind
brand: {
50: '#ffffff',
100: '#ffdddd',
200: '#ffb2b6',
300: '#ff828c',
400: '#ff4563',
500: '#f5054f',
600: '#be0037',
700: '#8f0023',
800: '#640011',
900: '#3f0000',
950: '#2f0000',
},