SLIVER Light Theme

A light theme for sliver

  1. // ==UserScript==
  2. // @name SLIVER Light Theme
  3. // @namespace http://tampermonkey.net/
  4. // @version 1
  5. // @description A light theme for sliver
  6. // @author Wulf715
  7. // @match https://www.sliver.tv/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. function addGlobalStyle(css) {
  12. var head, style;
  13. head = document.getElementsByTagName('head')[0];
  14. if (!head) { return; }
  15. style = document.createElement('style');
  16. style.type = 'text/css';
  17. style.innerHTML = css;
  18. head.appendChild(style);
  19. }
  20. addGlobalStyle(' body {background: #99AAB5;} ');
  21. addGlobalStyle(' .navbar {background: #C0C0C0; ');
  22. addGlobalStyle(' .sidebar {background: #C0C0C0;} ');
  23. addGlobalStyle(' html {font-family: "Proxima Nova";} ');