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: #ebebeb;
--brand-200: #cfcfcf;
--brand-300: #b1b1b1;
--brand-400: #909090;
--brand-500: #808080;
--brand-600: #5f5f5f;
--brand-700: #424242;
--brand-800: #292929;
--brand-900: #121212;
--brand-950: #000000;
}Tailwind
brand: {
50: '#ffffff',
100: '#ebebeb',
200: '#cfcfcf',
300: '#b1b1b1',
400: '#909090',
500: '#808080',
600: '#5f5f5f',
700: '#424242',
800: '#292929',
900: '#121212',
950: '#000000',
},