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: #d8eed0;
--brand-200: #a9d39b;
--brand-300: #76b465;
--brand-400: #39922b;
--brand-500: #008000;
--brand-600: #006000;
--brand-700: #004600;
--brand-800: #002d00;
--brand-900: #001b00;
--brand-950: #000e00;
}Tailwind
brand: {
50: '#ffffff',
100: '#d8eed0',
200: '#a9d39b',
300: '#76b465',
400: '#39922b',
500: '#008000',
600: '#006000',
700: '#004600',
800: '#002d00',
900: '#001b00',
950: '#000e00',
},