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: #f2edde;
--brand-200: #ddd5b8;
--brand-300: #c5ba91;
--brand-400: #a99e69;
--brand-500: #9b8f55;
--brand-600: #73693a;
--brand-700: #514a23;
--brand-800: #322d0f;
--brand-900: #1b1300;
--brand-950: #0b0000;
}Tailwind
brand: {
50: '#ffffff',
100: '#f2edde',
200: '#ddd5b8',
300: '#c5ba91',
400: '#a99e69',
500: '#9b8f55',
600: '#73693a',
700: '#514a23',
800: '#322d0f',
900: '#1b1300',
950: '#0b0000',
},