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: #d8f1d3;
--brand-200: #abd9a3;
--brand-300: #78be70;
--brand-400: #3c9f3c;
--brand-500: #028f1e;
--brand-600: #006b0b;
--brand-700: #004d00;
--brand-800: #003100;
--brand-900: #001c00;
--brand-950: #000e00;
}Tailwind
brand: {
50: '#ffffff',
100: '#d8f1d3',
200: '#abd9a3',
300: '#78be70',
400: '#3c9f3c',
500: '#028f1e',
600: '#006b0b',
700: '#004d00',
800: '#003100',
900: '#001c00',
950: '#000e00',
},