--aura-text-primary
Default text color for general website.
CSS
Copy*: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:
CSS
Copyhtml { 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.