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: #f0ffde;
--brand-200: #e0ffbf;
--brand-300: #cdff9f;
--brand-400: #b9fe7d;
--brand-500: #aefd6c;
--brand-600: #78b942;
--brand-700: #4a801e;
--brand-800: #214d00;
--brand-900: #072100;
--brand-950: #000c00;
}Tailwind
brand: {
50: '#ffffff',
100: '#f0ffde',
200: '#e0ffbf',
300: '#cdff9f',
400: '#b9fe7d',
500: '#aefd6c',
600: '#78b942',
700: '#4a801e',
800: '#214d00',
900: '#072100',
950: '#000c00',
},