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: #ffe3cd;
--brand-200: #ffc19a;
--brand-300: #ff9b65;
--brand-400: #ff722c;
--brand-500: #ff5b00;
--brand-600: #c33c00;
--brand-700: #902200;
--brand-800: #630700;
--brand-900: #3d0000;
--brand-950: #2f0000;
}Tailwind
brand: {
50: '#ffffff',
100: '#ffe3cd',
200: '#ffc19a',
300: '#ff9b65',
400: '#ff722c',
500: '#ff5b00',
600: '#c33c00',
700: '#902200',
800: '#630700',
900: '#3d0000',
950: '#2f0000',
},