So I wanted to suggest this because as it turns out, some browsers don't set the body's background to #FFFFFF or its colour to #000000 by default, this can happen on some browser themes or if the user set their own colours.
And this breaks many many websites, but many people who use settings and themes like that blame it on the devs of the website.
Since not a lot of devs are aware of this and yet most people would want to have a reliable background and text colour, maybe it would be a good idea to add
:root {
background: #FFF;
color: #000;
}
Since :root has the lowest CSS priority, it should not break anything, most people apply the background on html or body anyway.
I don't wanna debate on if those people are right or wrong to change their default background and text colour, there is also no actual HTML or CSS standards saying browsers should set the background to a certain colour as far as I'm aware, so it's not like they're 100% wrong.
I am not sure if this is in the minimalistic scope of your project, I do feel like it is because it is a very elemental reset that you could argue would help many websites out there. And that, if more people were aware of this, everyone would start their project by resetting the background and text colour.
So I wanted to suggest this because as it turns out, some browsers don't set the body's background to
#FFFFFFor its colour to#000000by default, this can happen on some browser themes or if the user set their own colours.And this breaks many many websites, but many people who use settings and themes like that blame it on the devs of the website.
Since not a lot of devs are aware of this and yet most people would want to have a reliable background and text colour, maybe it would be a good idea to add
Since
:roothas the lowest CSS priority, it should not break anything, most people apply the background onhtmlorbodyanyway.I don't wanna debate on if those people are right or wrong to change their default background and text colour, there is also no actual HTML or CSS standards saying browsers should set the background to a certain colour as far as I'm aware, so it's not like they're 100% wrong.
I am not sure if this is in the minimalistic scope of your project, I do feel like it is because it is a very elemental reset that you could argue would help many websites out there. And that, if more people were aware of this, everyone would start their project by resetting the background and text colour.