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: #f8f8f8;
--brand-200: #efefef;
--brand-300: #e4e4e4;
--brand-400: #d9d9d9;
--brand-500: #d3d3d3;
--brand-600: #999999;
--brand-700: #696969;
--brand-800: #3e3e3e;
--brand-900: #191919;
--brand-950: #000000;
}Tailwind
brand: {
50: '#ffffff',
100: '#f8f8f8',
200: '#efefef',
300: '#e4e4e4',
400: '#d9d9d9',
500: '#d3d3d3',
600: '#999999',
700: '#696969',
800: '#3e3e3e',
900: '#191919',
950: '#000000',
},