Created
March 24, 2023 14:54
-
-
Save hachesilva/9261d26035cce976d5ae284f3fb9ea81 to your computer and use it in GitHub Desktop.
Dark-light color schemes using System default colors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Source: https://blog.jim-nielsen.com/2021/css-system-colors/ | |
*/ | |
/* Set global color scheme without setting a background */ | |
:root { | |
color-scheme: light dark; | |
} | |
/* Use system colors for dropdowns */ | |
.dropdown { | |
background-color: Canvas; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment