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: #f7f4e1;
--brand-200: #eae5c0;
--brand-300: #d9d39f;
--brand-400: #c7c17c;
--brand-500: #bdb76b;
--brand-600: #8a8648;
--brand-700: #605d2a;
--brand-800: #3a3810;
--brand-900: #1c1700;
--brand-950: #090100;
}Tailwind
brand: {
50: '#ffffff',
100: '#f7f4e1',
200: '#eae5c0',
300: '#d9d39f',
400: '#c7c17c',
500: '#bdb76b',
600: '#8a8648',
700: '#605d2a',
800: '#3a3810',
900: '#1c1700',
950: '#090100',
},