Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Replaces #11271 — the merge conflicts are killing me and it's way easier to just do it again (added you as a co-author though @lukewarlow so you're still credited!)
This PR adds the following new utilities for the
color-scheme
property:scheme-normal
color-scheme: normal
scheme-dark
color-scheme: dark
scheme-light
color-scheme: light
scheme-light-dark
color-scheme: light dark
scheme-only-dark
color-scheme: dark only
scheme-only-light
color-scheme: light only
Went with
scheme-*
for the utilities because there are currently no other CSS properties with the wordscheme
in them andscheme-light-dark
is going to be a common value which is three words already even with the shortened property name.I considered setting
color-scheme: light dark
by default as part of Preflight for this PR but decided against it, at least for this PR. I think that could still be a useful default but we should think about it a bit more because if you're building a light-mode-only site it'll force you to do some extra work.