Dark Redash

Darken Redash

  1. /* ==UserStyle==
  2. @name Dark Redash
  3. @description Darken Redash
  4. @match *://redash.farmnote.com/*
  5. @license MIT
  6. @version 0.3
  7. @namespace djshigel
  8. ==/UserStyle== */
  9.  
  10. @media (prefers-color-scheme: dark) {
  11. html {
  12. filter: invert() hue-rotate(180deg) contrast(0.8);
  13. }
  14.  
  15. .application-layout-side-menu,
  16. :not(.application-layout-side-menu) iframe,
  17. :not(.application-layout-side-menu) img,
  18. :not(.application-layout-side-menu) svg:has(image) {
  19. filter: invert() hue-rotate(180deg) contrast(1.2);
  20. }
  21.  
  22. .application-layout-side-menu .ant-menu {
  23. background-color: #0f1314;
  24. }
  25. .application-layout-side-menu .ant-menu img {
  26. filter: none;
  27. }
  28. }