Current I have the following set in the css:
<style>
@import url("default.css") screen;
@import url("light.css") screen and (prefers-color-scheme: light);
</style>
I want the default.css be loaded when
i) user is in dark mode;
ii) user did not specify any colour theme preferences; or
iii) user is visiting with a browser that does not support prefers-colour-scheme query.
should I then change the first import rule to @import url("default.css") screen not (prefers-color-scheme: light); to save resources, and will this actually save resources?
Appreciate for your answer.