Skip to content

Instantly share code, notes, and snippets.

@oncet
Created October 3, 2022 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oncet/545270014933f5a278e33a7ec2b19f71 to your computer and use it in GitHub Desktop.
Save oncet/545270014933f5a278e33a7ec2b19f71 to your computer and use it in GitHub Desktop.
<style>
:root {
--text-color-light: black;
--text-color-dark: white;
}
p {
color: var(--text-color-light);
}
@media (prefers-color-scheme: dark) {
p {
color: var(--text-color-dark);
}
}
</style>
<div>
<p>Hola mundo!</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment