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: #e7ebd6;
--brand-200: #c6cfa7;
--brand-300: #a1b077;
--brand-400: #7a8f46;
--brand-500: #667e2c;
--brand-600: #4a5e1a;
--brand-700: #32430b;
--brand-800: #1f2b00;
--brand-900: #0d1500;
--brand-950: #000500;
}Tailwind
brand: {
50: '#ffffff',
100: '#e7ebd6',
200: '#c6cfa7',
300: '#a1b077',
400: '#7a8f46',
500: '#667e2c',
600: '#4a5e1a',
700: '#32430b',
800: '#1f2b00',
900: '#0d1500',
950: '#000500',
},