Design Token

You might say

Organize the main color, spacing, and radius as design tokens instead of repeating values in every component.

A design token is a named variable that centrally stores and reuses design values such as color, spacing, and typography.A primary button color can be named color.brand.primary and a common gap space.16; components reference those names rather than each hard-coding a color or pixel value. Tokens help a shared rule stay consistent across a site, component library, or other interfaces when themes or brands change. They are not a synonym for every CSS variable and do not replace the design decision itself.
Design Tokens
Further reading