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: #f9faf8;
--brand-200: #f0f2ef;
--brand-300: #e7eae6;
--brand-400: #dde1db;
--brand-500: #d8dcd6;
--brand-600: #9da09b;
--brand-700: #6b6e6a;
--brand-800: #3f413e;
--brand-900: #181a18;
--brand-950: #000100;
}Tailwind
brand: {
50: '#ffffff',
100: '#f9faf8',
200: '#f0f2ef',
300: '#e7eae6',
400: '#dde1db',
500: '#d8dcd6',
600: '#9da09b',
700: '#6b6e6a',
800: '#3f413e',
900: '#181a18',
950: '#000100',
},