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: #e1efdb;
--brand-200: #bcd7b1;
--brand-300: #94bb86;
--brand-400: #6a9d5a;
--brand-500: #548d44;
--brand-600: #3a692d;
--brand-700: #244b1a;
--brand-800: #103007;
--brand-900: #001900;
--brand-950: #000900;
}Tailwind
brand: {
50: '#ffffff',
100: '#e1efdb',
200: '#bcd7b1',
300: '#94bb86',
400: '#6a9d5a',
500: '#548d44',
600: '#3a692d',
700: '#244b1a',
800: '#103007',
900: '#001900',
950: '#000900',
},