2024-09-23 22:11:44 +00:00
|
|
|
function pixelFontToggle() {
|
2024-09-23 23:56:49 +00:00
|
|
|
const pixelFontDefault = '\"Upheaval TT\", monospace;'
|
2024-09-23 22:11:44 +00:00
|
|
|
|
2024-09-23 23:56:49 +00:00
|
|
|
const pixelFontSwitchElem = document.getElementById('pixel-font-switch');
|
2024-09-23 22:11:44 +00:00
|
|
|
if (pixelFontSwitchElem.checked) {
|
2024-09-23 23:56:49 +00:00
|
|
|
document.documentElement.style.cssText = '--pixel-font: \"Upheaval TT\", monospace';
|
2024-09-23 22:11:44 +00:00
|
|
|
} else {
|
2024-09-23 23:56:49 +00:00
|
|
|
document.documentElement.style.cssText = '--pixel-font: \"Source Sans 3\", sans-serif';
|
2024-09-23 22:11:44 +00:00
|
|
|
}
|
|
|
|
}
|