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: #f5f5f5;
--brand-200: #e8e8e8;
--brand-300: #d9d9d9;
--brand-400: #c8c8c8;
--brand-500: #c0c0c0;
--brand-600: #8c8c8c;
--brand-700: #606060;
--brand-800: #393939;
--brand-900: #171717;
--brand-950: #000000;
}Tailwind
brand: {
50: '#ffffff',
100: '#f5f5f5',
200: '#e8e8e8',
300: '#d9d9d9',
400: '#c8c8c8',
500: '#c0c0c0',
600: '#8c8c8c',
700: '#606060',
800: '#393939',
900: '#171717',
950: '#000000',
},