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: #eff9d5;
--brand-200: #dbefaa;
--brand-300: #c3e27e;
--brand-400: #a8d44e;
--brand-500: #9acd32;
--brand-600: #6c9711;
--brand-700: #456900;
--brand-800: #244000;
--brand-900: #101d00;
--brand-950: #000900;
}Tailwind
brand: {
50: '#ffffff',
100: '#eff9d5',
200: '#dbefaa',
300: '#c3e27e',
400: '#a8d44e',
500: '#9acd32',
600: '#6c9711',
700: '#456900',
800: '#244000',
900: '#101d00',
950: '#000900',
},