mirror of
https://github.com/lone-cloud/prism
synced 2026-06-03 08:43:10 -07:00
5 lines
139 B
JavaScript
5 lines
139 B
JavaScript
(() => {
|
|
var t = localStorage.getItem('theme');
|
|
if (t && t !== 'system')
|
|
document.documentElement.setAttribute('data-theme', t);
|
|
})();
|