Merge branch 'master' into newmc
[gruntmaster-page.git] / js / 90-themes.js
CommitLineData
74da6b38
MG
1function 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
28const theme = localStorage.getItem("theme");
29if(theme)
30 set_style(theme == "cerulean" || theme == "cosmo" ? "readable" : theme, false);
This page took 0.025548 seconds and 4 git commands to generate.