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: #f0fff0;
--brand-200: #e0ffe1;
--brand-300: #d0ffd2;
--brand-400: #bfffc3;
--brand-500: #b6ffbb;
--brand-600: #7eba83;
--brand-700: #508054;
--brand-800: #274d2b;
--brand-900: #032003;
--brand-950: #000a00;
}Tailwind
brand: {
50: '#ffffff',
100: '#f0fff0',
200: '#e0ffe1',
300: '#d0ffd2',
400: '#bfffc3',
500: '#b6ffbb',
600: '#7eba83',
700: '#508054',
800: '#274d2b',
900: '#032003',
950: '#000a00',
},