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: #dfffd1;
--brand-200: #bbffa5;
--brand-300: #8fff76;
--brand-400: #52ff3d;
--brand-500: #00ff00;
--brand-600: #00bc00;
--brand-700: #008300;
--brand-800: #005000;
--brand-900: #002600;
--brand-950: #001400;
}Tailwind
brand: {
50: '#ffffff',
100: '#dfffd1',
200: '#bbffa5',
300: '#8fff76',
400: '#52ff3d',
500: '#00ff00',
600: '#00bc00',
700: '#008300',
800: '#005000',
900: '#002600',
950: '#001400',
},