Update color theme on system change

This commit is contained in:
Sebastian 2024-08-28 12:43:43 +02:00
parent 6589450bd6
commit fd1612935d
No known key found for this signature in database

View File

@ -22,6 +22,10 @@
<script>
// On page load or when changing themes, best to add inline in `head` to avoid FOUC
(() => {
if (!localStorage?.theme) {
localStorage.theme = 'system';
}
if (localStorage?.theme && localStorage?.theme.includes('oled')) {
document.documentElement.style.setProperty('--color-gray-800', '#101010');
document.documentElement.style.setProperty('--color-gray-850', '#050505');