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: #dddddd;
--brand-200: #b0b1b1;
--brand-300: #7f8080;
--brand-400: #4e4f4f;
--brand-500: #363737;
--brand-600: #2a2a2a;
--brand-700: #1f2020;
--brand-800: #151616;
--brand-900: #080909;
--brand-950: #000000;
}Tailwind
brand: {
50: '#ffffff',
100: '#dddddd',
200: '#b0b1b1',
300: '#7f8080',
400: '#4e4f4f',
500: '#363737',
600: '#2a2a2a',
700: '#1f2020',
800: '#151616',
900: '#080909',
950: '#000000',
},