--aura-text-primary

Default text color for general website.

*:root {
    --aura-text-primary: #030303
}

--aura-text-primary is a CSS custom property that specifies the default color text for html. The value of --aura-text-primary is used as color in html.

In the CSS file, the html is defined as follows:

html {
    color: var(--aura-text-primary);
}

By using the --aura-text-primary custom property, the default color of html can be easily changed and updated in one place, which helps maintain consistency and makes updates more manageable.