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: #f7ede4;
--brand-200: #e7d5c4;
--brand-300: #d3bba2;
--brand-400: #bd9f7f;
--brand-500: #b1916e;
--brand-600: #846a4e;
--brand-700: #5e4932;
--brand-800: #3c2c1a;
--brand-900: #1f1200;
--brand-950: #100000;
}Tailwind
brand: {
50: '#ffffff',
100: '#f7ede4',
200: '#e7d5c4',
300: '#d3bba2',
400: '#bd9f7f',
500: '#b1916e',
600: '#846a4e',
700: '#5e4932',
800: '#3c2c1a',
900: '#1f1200',
950: '#100000',
},