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: #ffdcd9;
--brand-200: #ffb0ad;
--brand-300: #ff7f7f;
--brand-400: #ea4552;
--brand-500: #dc143c;
--brand-600: #ab0029;
--brand-700: #810019;
--brand-800: #5b0006;
--brand-900: #3b0000;
--brand-950: #2d0000;
}Tailwind
brand: {
50: '#ffffff',
100: '#ffdcd9',
200: '#ffb0ad',
300: '#ff7f7f',
400: '#ea4552',
500: '#dc143c',
600: '#ab0029',
700: '#810019',
800: '#5b0006',
900: '#3b0000',
950: '#2d0000',
},