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: #dcf6e4;
--brand-200: #b5e7c5;
--brand-300: #8ad4a4;
--brand-400: #5abe82;
--brand-500: #3cb371;
--brand-600: #1e854f;
--brand-700: #005e33;
--brand-800: #003b1a;
--brand-900: #001e00;
--brand-950: #000e00;
}Tailwind
brand: {
50: '#ffffff',
100: '#dcf6e4',
200: '#b5e7c5',
300: '#8ad4a4',
400: '#5abe82',
500: '#3cb371',
600: '#1e854f',
700: '#005e33',
800: '#003b1a',
900: '#001e00',
950: '#000e00',
},