themeswitcher/themeswitcher.html
Peter Molnar f5818864c5
2019-01-10 08:20:47 +00:00

23 lines
No EOL
612 B
HTML

<!-- <head> needs to contain the alternative style sheet -->
<style media="all">
# normal CSS
</style>
<style id="css_alt" media="speech">
# alt CSS
</style>
<!-- include this into the <body> to have controls -->
<form class="theme" aria-hidden="true">
<span>
🔆
</span>
<span>
<input name="colorscheme" value="dark" id="darkscheme" type="radio">
<label for="darkscheme">dark</label>
</span>
<span>
<input name="colorscheme" value="light" id="lightscheme" type="radio">
<label for="lightscheme">light</label>
</span>
</form>