<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body, body.light-theme {
    --lightness: 70%;
}

body.dark-theme {
    --lightness: 25%;
}

@media (prefers-color-scheme: dark) {
  body, body.dark-theme {
    --lightness: 25%;
  }

  body.light-theme {
    --lightness: 70%;
  }
}

.dynamic-color-overlay {
    background: hsl(from #00437A h s var(--lightness));
}</pre></body></html>