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: #f8f5f1;
--brand-200: #ece7e0;
--brand-300: #dfd7cd;
--brand-400: #d1c7ba;
--brand-500: #c9beb0;
--brand-600: #938a7f;
--brand-700: #665f56;
--brand-800: #3e3932;
--brand-900: #1b1711;
--brand-950: #050000;
}Tailwind
brand: {
50: '#ffffff',
100: '#f8f5f1',
200: '#ece7e0',
300: '#dfd7cd',
400: '#d1c7ba',
500: '#c9beb0',
600: '#938a7f',
700: '#665f56',
800: '#3e3932',
900: '#1b1711',
950: '#050000',
},