greasyfork.org - Dark Mode

Dark Mode for Greasyfork.org

目前為 2024-11-20 提交的版本,檢視 最新版本

  1. /* ==UserStyle==
  2. @name greasyfork.org - Dark Mode
  3. @version 20241115.16.03
  4. @namespace https://github.com/Nick2bad4u/UserStyles
  5. @description Dark Mode for Greasyfork.org
  6. @homepageURL https://github.com/Nick2bad4u/UserStyles
  7. @author Nick2bad4u
  8. @license UnLicense
  9. ==/UserStyle== */
  10. @-moz-document domain("greasyfork.org") {
  11. /* Invert colors except images and videos */
  12. :is(html:not([stylus-iframe]), img, svg, video),
  13. header,
  14. h2,
  15. #script-description,
  16. body > aside > ul {
  17. filter: invert(1) hue-rotate(180deg) !important;
  18. }
  19.  
  20. /* Ensure background images are not inverted */
  21. :is(html:not([stylus-iframe]), img, svg, video) {
  22. background-color: inherit !important;
  23. }
  24.  
  25. #site-name > a {
  26. filter: invert(1) hue-rotate(180deg) !important;
  27. }
  28.  
  29. #greasyfork-plus-options > ul {
  30. color: #670000;
  31. }
  32. }