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: #e7d3d3;
--brand-200: #be9a9a;
--brand-300: #8e5e5f;
--brand-400: #582126;
--brand-500: #3c0008;
--brand-600: #330103;
--brand-700: #2c0000;
--brand-800: #260000;
--brand-900: #200000;
--brand-950: #1a0000;
}Tailwind
brand: {
50: '#ffffff',
100: '#e7d3d3',
200: '#be9a9a',
300: '#8e5e5f',
400: '#582126',
500: '#3c0008',
600: '#330103',
700: '#2c0000',
800: '#260000',
900: '#200000',
950: '#1a0000',
},