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: #f8f3e6;
--brand-200: #ece2ca;
--brand-300: #dcd0ad;
--brand-400: #cbbc8f;
--brand-500: #c2b280;
--brand-600: #8f8259;
--brand-700: #645a39;
--brand-800: #3d361c;
--brand-900: #1d1600;
--brand-950: #0b0000;
}Tailwind
brand: {
50: '#ffffff',
100: '#f8f3e6',
200: '#ece2ca',
300: '#dcd0ad',
400: '#cbbc8f',
500: '#c2b280',
600: '#8f8259',
700: '#645a39',
800: '#3d361c',
900: '#1d1600',
950: '#0b0000',
},