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: #f7ffdc;
--brand-200: #edfeb9;
--brand-300: #e1fc97;
--brand-400: #d3fa73;
--brand-500: #cbf85f;
--brand-600: #8fb536;
--brand-700: #5d7d11;
--brand-800: #314b00;
--brand-900: #151f00;
--brand-950: #000900;
}Tailwind
brand: {
50: '#ffffff',
100: '#f7ffdc',
200: '#edfeb9',
300: '#e1fc97',
400: '#d3fa73',
500: '#cbf85f',
600: '#8fb536',
700: '#5d7d11',
800: '#314b00',
900: '#151f00',
950: '#000900',
},