I'm having this issue where I can't seem to override the background color of the body element in my Neat Bourbon website.
I defined the background color like this in the _layout.scss file:
body {
background: lighten($brokenwhite, 5);
}
but when I check the element in Chrome Devtools, the background color of the body element is still defined as 'white'.
So where can I define the background color of the body element?
My source repository is available here.