mirror of
https://github.com/nfonteyne/octane-website.git
synced 2026-09-03 23:24:48 +02:00
11 lines
305 B
JavaScript
11 lines
305 B
JavaScript
|
|
(function () {
|
||
|
|
try {
|
||
|
|
var saved = localStorage.getItem('octane-theme');
|
||
|
|
if (saved === 'light' || saved === 'dark') {
|
||
|
|
document.documentElement.setAttribute('data-theme', saved);
|
||
|
|
}
|
||
|
|
} catch (e) {
|
||
|
|
/* localStorage unavailable (private mode etc.) — fall back to OS theme */
|
||
|
|
}
|
||
|
|
})();
|