CSS Light/Dark Theme Toggle

PHOTO EMBED

Tue Oct 15 2024 04:10:24 GMT+0000 (Coordinated Universal Time)

Saved by @cbmontcw

body:has(input[type="checkbox"]:checked) {
  background: blue;
  --primary-color: white;
}
body:has(input[type="checkbox"]:checked) form { 
  border: 4px solid white;
}
body:has(input[type="checkbox"]:checked) form:has(:focus-visible) {
  background: navy;
}
body:has(input[type="checkbox"]:checked) input:focus-visible {
  outline: 4px solid lightsalmon;
}
content_copyCOPY

https://webkit.org/blog/13096/css-has-pseudo-class/#styling-form-states-without-js