theme.js 764 B

12345678910111213141516171819202122
  1. var themes = document.getElementById("theme-choices");
  2. var themePicker = document.getElementById("theme-picker");
  3. themePicker.onclick = function() {
  4. if (themes.style.display === "block") {
  5. themes.style.display = "none";
  6. themePicker.style.borderBottomRightRadius = "3px";
  7. themePicker.style.borderBottomLeftRadius = "3px";
  8. } else {
  9. themes.style.display = "block";
  10. themePicker.style.borderBottomRightRadius = "0";
  11. themePicker.style.borderBottomLeftRadius = "0";
  12. }
  13. };
  14. ["dark","main"].forEach(function(item) {
  15. var but = document.createElement('button');
  16. but.innerHTML = item;
  17. but.onclick = function(el) {
  18. switchTheme(currentTheme, mainTheme, item);
  19. };
  20. themes.appendChild(but);
  21. });