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: #fcfeff;
--brand-200: #f9fdff;
--brand-300: #f5fbff;
--brand-400: #f2f9ff;
--brand-500: #f0f8ff;
--brand-600: #adb4b9;
--brand-700: #757a7f;
--brand-800: #44484b;
--brand-900: #191c1e;
--brand-950: #000104;
}Tailwind
brand: {
50: '#ffffff',
100: '#fcfeff',
200: '#f9fdff',
300: '#f5fbff',
400: '#f2f9ff',
500: '#f0f8ff',
600: '#adb4b9',
700: '#757a7f',
800: '#44484b',
900: '#191c1e',
950: '#000104',
},