Generate a complete CSS custom-property color scale (50–950) from one base color, ready to drop into :root.
:root {
--brand-50: #F3F0FF;
--brand-100: #E2DBFF;
--brand-200: #C2B3FF;
--brand-300: #9980FF;
--brand-400: #6C47FF;
--brand-500: #3F0FFF;
--brand-600: #2E00E6;
--brand-700: #2600BD;
--brand-800: #1D008F;
--brand-900: #140066;
--brand-950: #0C003D;
}From your base color the tool derives a lightness scale (lighter tints through darker shades) and names each step as a CSS custom property inside a :root block. Because the values live in variables, you change the palette in one place and every var() reference across your stylesheet updates with it.
Pick or paste the brand color the system will be built around.
See the generated --color tokens for each step of the scale in a :root rule.
Paste the block into your CSS and reference colors with var(--color-500) and friends.