You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/static/global.css defines all the custom properties used across the entire website. However, it can be confusing to distinguish the value of the properties based on whether light or dark theme is on. For example, the properties --acm-dark and --acm-light are actually switched depending on the website's current theme.
To fix this, we could rename these properties (and all the references across the entire codebase) using more general terms for the theme properties, such as --acm-primary, or --acm-contrast, instead of --acm-dark or --acm-light.
The text was updated successfully, but these errors were encountered:
What happened?
/static/global.css
defines all the custom properties used across the entire website. However, it can be confusing to distinguish the value of the properties based on whether light or dark theme is on. For example, the properties--acm-dark
and--acm-light
are actually switched depending on the website's current theme.To fix this, we could rename these properties (and all the references across the entire codebase) using more general terms for the theme properties, such as
--acm-primary
, or--acm-contrast
, instead of--acm-dark
or--acm-light
.The text was updated successfully, but these errors were encountered: