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: #ffede8;
--brand-200: #ffd8cf;
--brand-300: #ffc0b4;
--brand-400: #ffa798;
--brand-500: #ff9a8a;
--brand-600: #c06e61;
--brand-700: #8a493f;
--brand-800: #5a2821;
--brand-900: #300a00;
--brand-950: #200000;
}Tailwind
brand: {
50: '#ffffff',
100: '#ffede8',
200: '#ffd8cf',
300: '#ffc0b4',
400: '#ffa798',
500: '#ff9a8a',
600: '#c06e61',
700: '#8a493f',
800: '#5a2821',
900: '#300a00',
950: '#200000',
},