]>
Commit | Line | Data |
---|---|---|
74da6b38 MG |
1 | function set_style(name, trans){ |
2 | if(trans){ | |
3 | document.body.classList.add('transition-color'); | |
4 | setTimeout(() => document.body.classList.remove('transition-color'), 1000); | |
5 | } | |
931541d7 MG |
6 | if(q('html').className == name) |
7 | return; | |
db73dc0c | 8 | q('html').className = name; |
7093e9ba | 9 | localStorage.setItem("theme", name); |
65ef5465 MG |
10 | $(function() { |
11 | if(name == 'slate' || name == 'cyborg') | |
cf39f49f | 12 | $('img').each(e => e.setAttribute('src', e.getAttribute('src').replace('logos/light', 'logos/dark'))); |
65ef5465 | 13 | else |
cf39f49f | 14 | $('img').each(e => e.setAttribute('src', e.getAttribute('src').replace('logos/dark', 'logos/light'))); |
7dc32473 | 15 | }); |
7093e9ba | 16 | } |
7dc32473 | 17 | |
7093e9ba | 18 | $(function() { |
65d5cb3b | 19 | const theme_ul = '<ul class="list-inline" id="themes">' + |
81c2ef98 MG |
20 | '<li><a role="button" data-theme="cyborg">Black</a>' + |
21 | '<li><a role="button" data-theme="slate">Grey</a>' + | |
22 | '<li><a role="button" data-theme="readable">White</a></ul>'; | |
dee46c5b | 23 | const sidebar = q('#sidebar'); |
81c2ef98 | 24 | sidebar.insertBefore(m(theme_ul), sidebar.firstChild); |
74da6b38 | 25 | $('#themes a').on('click', e => set_style(e.target.dataset.theme, true)); |
7093e9ba | 26 | }); |
7dc32473 | 27 | |
65d5cb3b MG |
28 | const theme = localStorage.getItem("theme"); |
29 | if(theme) | |
30 | set_style(theme == "cerulean" || theme == "cosmo" ? "readable" : theme, false); |