Greasy Fork is available in English.

Greasy Fork Dark Mode Night Theme

Greasy Fork Dark Mode Night Theme - simple grey red

  1. // ==UserScript==
  2. // @name Greasy Fork Dark Mode Night Theme
  3. // @namespace english
  4. // @description Greasy Fork Dark Mode Night Theme - simple grey red
  5. // @include http*://*greasyfork.org*
  6. // @version 2.5
  7. // @run-at document-end
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11.  
  12. var style = document.createElement('style');
  13. style.type = 'text/css';
  14.  
  15. style.innerHTML = ' #main-header {/*\n*/ background-image: linear-gradient(#000000, #343434) !important;/*\n*/}body { /*\n*/ background-color: #5a5a5a;/*\n*/}/*\n*/.script-list, .user-list, .text-content, .discussion-list {/*\n*/ /*\n*/ background-color: #d7d7d7; /*\n*/}/*\n*//*\n*/.user-content {/*\n*/ background: linear-gradient(to right,#dbdbdb,#c9c9c9 1em);/*\n*/ border-left: 2px solid #F2E5E5; /*\n*/}.list-option-group ul { /*\n*/ box-shadow: 0 0 5px #1e1e1e; /*\n*/ background-color: #bdbdbd;/*\n*/}/*\n*/header h3{ color: #e9e9e9;}/*\n*/#script-list-option-groups{ color: #ccc;}/*\n*/#script-list-option-groups li { color: #343434;}/*\n*/ #control-panel header h3{color:#262626} #script-info { background-color: #d5d5d5; } ';
  16.  
  17. document.getElementsByTagName('head')[0].appendChild(style);