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: #eeeae5;
--brand-200: #d5cec4;
--brand-300: #b9aea1;
--brand-400: #9b8e7d;
--brand-500: #8b7d6b;
--brand-600: #685c4e;
--brand-700: #4a4135;
--brand-800: #2f281f;
--brand-900: #181105;
--brand-950: #080000;
}Tailwind
brand: {
50: '#ffffff',
100: '#eeeae5',
200: '#d5cec4',
300: '#b9aea1',
400: '#9b8e7d',
500: '#8b7d6b',
600: '#685c4e',
700: '#4a4135',
800: '#2f281f',
900: '#181105',
950: '#080000',
},