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: #ffe3e1;
--brand-200: #fcc0bc;
--brand-300: #ee9a96;
--brand-400: #d9726f;
--brand-500: #cd5c5c;
--brand-600: #9d4041;
--brand-700: #74292b;
--brand-800: #4f1417;
--brand-900: #300000;
--brand-950: #230000;
}Tailwind
brand: {
50: '#ffffff',
100: '#ffe3e1',
200: '#fcc0bc',
300: '#ee9a96',
400: '#d9726f',
500: '#cd5c5c',
600: '#9d4041',
700: '#74292b',
800: '#4f1417',
900: '#300000',
950: '#230000',
},