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: #f2fffe;
--brand-200: #e6fffc;
--brand-300: #d9fffa;
--brand-400: #cbfff8;
--brand-500: #c4fff7;
--brand-600: #89bab3;
--brand-700: #587f7a;
--brand-800: #2d4c48;
--brand-900: #071f1c;
--brand-950: #000602;
}Tailwind
brand: {
50: '#ffffff',
100: '#f2fffe',
200: '#e6fffc',
300: '#d9fffa',
400: '#cbfff8',
500: '#c4fff7',
600: '#89bab3',
700: '#587f7a',
800: '#2d4c48',
900: '#071f1c',
950: '#000602',
},