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: #ffe1db;
--brand-200: #ffbcb3;
--brand-300: #ff938a;
--brand-400: #ff6460;
--brand-500: #ff474c;
--brand-600: #c42a33;
--brand-700: #910f1e;
--brand-800: #640009;
--brand-900: #3d0000;
--brand-950: #2e0000;
}Tailwind
brand: {
50: '#ffffff',
100: '#ffe1db',
200: '#ffbcb3',
300: '#ff938a',
400: '#ff6460',
500: '#ff474c',
600: '#c42a33',
700: '#910f1e',
800: '#640009',
900: '#3d0000',
950: '#2e0000',
},