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: #f1f1f1;
--brand-200: #dfdfdf;
--brand-300: #cacaca;
--brand-400: #b4b4b4;
--brand-500: #a9a9a9;
--brand-600: #7c7c7c;
--brand-700: #565656;
--brand-800: #343434;
--brand-900: #161616;
--brand-950: #000000;
}Tailwind
brand: {
50: '#ffffff',
100: '#f1f1f1',
200: '#dfdfdf',
300: '#cacaca',
400: '#b4b4b4',
500: '#a9a9a9',
600: '#7c7c7c',
700: '#565656',
800: '#343434',
900: '#161616',
950: '#000000',
},