--aura-radius

Default border radius for modules.

*:root {
    --aura-radius: 13px;
}

--aura-radius is a CSS custom property that specifies the border radius of buttons in a design system. The value of --aura-radius can be applied to elements with the classes .mod and .mod-detail to set their border radius.

In the CSS file, the custom property can be used as follows:

.mod, 
.mod-detail {
    border-radius: var(--aura-radius);
}

By using the --aura-radius custom property, the border radius of buttons can be easily changed and updated in one place, which helps maintain consistency and makes updates more manageable. Additionally, because the border radius is specified using a custom property, any changes made to --aura-radius will be reflected in the border radius of the buttons with the classes .mod and .mod-detail.