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: #e2ede0;
--brand-200: #bdd3ba;
--brand-300: #96b593;
--brand-400: #6e956a;
--brand-500: #598556;
--brand-600: #3f633d;
--brand-700: #294728;
--brand-800: #152d15;
--brand-900: #001700;
--brand-950: #000700;
}Tailwind
brand: {
50: '#ffffff',
100: '#e2ede0',
200: '#bdd3ba',
300: '#96b593',
400: '#6e956a',
500: '#598556',
600: '#3f633d',
700: '#294728',
800: '#152d15',
900: '#001700',
950: '#000700',
},