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: #fee8cf;
--brand-200: #f0cb9b;
--brand-300: #dbac66;
--brand-400: #c18b2e;
--brand-500: #b27a01;
--brand-600: #865900;
--brand-700: #613e00;
--brand-800: #412500;
--brand-900: #290c00;
--brand-950: #1e0000;
}Tailwind
brand: {
50: '#ffffff',
100: '#fee8cf',
200: '#f0cb9b',
300: '#dbac66',
400: '#c18b2e',
500: '#b27a01',
600: '#865900',
700: '#613e00',
800: '#412500',
900: '#290c00',
950: '#1e0000',
},