Greasy Fork is available in English.

Theme Forest WP Theme Website Dark Theme Night Mode

Theme Forest WP Theme Website Dark Theme Night Mode - currently undergoing build

  1. // ==UserScript==
  2. // @name Theme Forest WP Theme Website Dark Theme Night Mode
  3. // @namespace english
  4. // @description Theme Forest WP Theme Website Dark Theme Night Mode - currently undergoing build
  5. // @include http*://*themeforest.net*
  6. // @version 1.4
  7. // @run-at document-end
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11.  
  12.  
  13. var style = document.createElement('style');
  14. style.type = 'text/css';
  15. style.innerHTML = ' .canvas__body {/*\n*/ /*\n*/ background: #656565;/*\n*/ color: #ccc;/*\n*/}.context-header {/*\n*/ background: #414141;/*\n*/ border-bottom: 1px solid #4d4d4d;/*\n*/ /*\n*/ color: #e4e4e4;/*\n*/}.breadcrumbs a:hover {/*\n*/ /*\n*/ color: #f0f0f0;/*\n*/}.breadcrumbs a {/*\n*/ color: #d5d5d5;/*\n*/ /*\n*/}.header-categories {/*\n*//*\n*/ background-color: #393939;/*\n*/ border-bottom: 1px solid #606060;/*\n*/ height: 48px;/*\n*/ color: #ccc;/*\n*//*\n*/}.header-categories__main-link, .header-categories__main-link--empty {/*\n*//*\n*/ /*\n*/ color: #d1d1d1;/*\n*/ /*\n*//*\n*/} /* width *//*\n*/::-webkit-scrollbar {/*\n*/ min-width: 5px;/*\n*/}/*\n*//*\n*//* Track *//*\n*/::-webkit-scrollbar-track {/*\n*/ box-shadow: inset 0 0 5px grey; /*\n*/ border-radius: 3px;/*\n*/ background:#999/*\n*/}/*\n*/ /*\n*//* Handle *//*\n*/::-webkit-scrollbar-thumb {/*\n*/ background: #666; /*\n*/}/*\n*//*\n*//* Handle on hover *//*\n*/::-webkit-scrollbar-thumb:hover {/*\n*/ background: #444; /*\n*/} ';
  16. document.getElementsByTagName('head')[0].appendChild(style);
  17.  
  18.  
  19.