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: #eee1f9;
--brand-200: #d2bbe8;
--brand-300: #b092d1;
--brand-400: #8c67b7;
--brand-500: #7851a9;
--brand-600: #5b3b83;
--brand-700: #422863;
--brand-800: #2b1746;
--brand-900: #18052c;
--brand-950: #10001d;
}Tailwind
brand: {
50: '#ffffff',
100: '#eee1f9',
200: '#d2bbe8',
300: '#b092d1',
400: '#8c67b7',
500: '#7851a9',
600: '#5b3b83',
700: '#422863',
800: '#2b1746',
900: '#18052c',
950: '#10001d',
},