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: #fefef7;
--brand-200: #fcfcf0;
--brand-300: #f9f9e8;
--brand-400: #f6f6e0;
--brand-500: #f5f5dc;
--brand-600: #b2b29d;
--brand-700: #797969;
--brand-800: #47473b;
--brand-900: #1c1c13;
--brand-950: #010100;
}Tailwind
brand: {
50: '#ffffff',
100: '#fefef7',
200: '#fcfcf0',
300: '#f9f9e8',
400: '#f6f6e0',
500: '#f5f5dc',
600: '#b2b29d',
700: '#797969',
800: '#47473b',
900: '#1c1c13',
950: '#010100',
},