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: #d3dfcf;
--brand-200: #9cb296;
--brand-300: #62815b;
--brand-400: #264e20;
--brand-500: #033500;
--brand-600: #052a00;
--brand-700: #032100;
--brand-800: #001900;
--brand-900: #001000;
--brand-950: #000800;
}Tailwind
brand: {
50: '#ffffff',
100: '#d3dfcf',
200: '#9cb296',
300: '#62815b',
400: '#264e20',
500: '#033500',
600: '#052a00',
700: '#032100',
800: '#001900',
900: '#001000',
950: '#000800',
},