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: #ffefcf;
--brand-200: #ffdb9f;
--brand-300: #ffc66d;
--brand-400: #ffb035;
--brand-500: #ffa500;
--brand-600: #be7700;
--brand-700: #885000;
--brand-800: #582d00;
--brand-900: #330e00;
--brand-950: #250000;
}Tailwind
brand: {
50: '#ffffff',
100: '#ffefcf',
200: '#ffdb9f',
300: '#ffc66d',
400: '#ffb035',
500: '#ffa500',
600: '#be7700',
700: '#885000',
800: '#582d00',
900: '#330e00',
950: '#250000',
},