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: #e7e7e7;
--brand-200: #c6c6c6;
--brand-300: #a2a2a2;
--brand-400: #7c7c7c;
--brand-500: #696969;
--brand-600: #4e4e4e;
--brand-700: #383838;
--brand-800: #232323;
--brand-900: #101010;
--brand-950: #000000;
}Tailwind
brand: {
50: '#ffffff',
100: '#e7e7e7',
200: '#c6c6c6',
300: '#a2a2a2',
400: '#7c7c7c',
500: '#696969',
600: '#4e4e4e',
700: '#383838',
800: '#232323',
900: '#101010',
950: '#000000',
},