-
-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Labels
Description
Our CSS file includes multiple expressions like this:
color: var(--bs-body-color, #333333);
background-color: var(--bs-gray-200, #e9ecef);
Is overwriting theme colors the proper way to style our elements? Why are we replacing variable values with hard coded values? Should we not rather use the hard coded values directly?