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: #fffffb;
--brand-200: #fffff8;
--brand-300: #fffff5;
--brand-400: #fffff2;
--brand-500: #fffff0;
--brand-600: #b9b9ac;
--brand-700: #7e7e74;
--brand-800: #494a42;
--brand-900: #1c1c17;
--brand-950: #010100;
}Tailwind
brand: {
50: '#ffffff',
100: '#fffffb',
200: '#fffff8',
300: '#fffff5',
400: '#fffff2',
500: '#fffff0',
600: '#b9b9ac',
700: '#7e7e74',
800: '#494a42',
900: '#1c1c17',
950: '#010100',
},