Correctly use the body color variable

This commit is contained in:
scottkiener-at-safelite 2026-01-21 11:53:19 -05:00
parent dd3a45dae0
commit abc35b6bc3
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ body {
font-size: 16px; font-size: 16px;
letter-spacing: $letter-spacing-primary; letter-spacing: $letter-spacing-primary;
background-color: #fff; background-color: #fff;
color: $darker-gray; color: $body-color;
.container-fluid { .container-fluid {
.prevent-squish { .prevent-squish {

View file

@ -114,7 +114,7 @@ $theme-colors: (
); );
//Default font color //Default font color
$body-color: $gray-600; $body-color: $darker-gray;
//Fonts //Fonts
$font-family-sans-serif: Urbanist, Roboto, Arial, sans-serif; $font-family-sans-serif: Urbanist, Roboto, Arial, sans-serif;