Advertisement
VitalSkib

YouTube darker-dark-theme fix

Aug 20th, 2022
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.20 KB | None | 0 0
  1. @-moz-document domain("www.youtube.com") {
  2.     ytd-app[darker-dark-theme] {
  3.         background: #181818 !important;
  4.     }
  5.     ytd-guide-renderer.ytd-app {
  6.         background: #212121 !important;
  7.     }
  8.     ytd-masthead[darker-dark-theme] {
  9.         background: #202020 !important;
  10.     }
  11.     ytd-feed-filter-chip-bar-renderer[darker-dark-theme] #chips-wrapper.ytd-feed-filter-chip-bar-renderer {
  12.         background-color: #202020 !important;
  13.         border-top: 1px solid #373737 !important;
  14.         border-bottom: 1px solid #373737 !important;
  15.     }
  16.     yt-chip-cloud-chip-renderer[chip-style="STYLE_DEFAULT"],
  17.     yt-chip-cloud-chip-renderer[chip-style="STYLE_HOME_FILTER"],
  18.     yt-chip-cloud-chip-renderer[chip-style="STYLE_REFRESH_TO_NOVEL_CHIP"] {
  19.         background-color: #373737 !important;
  20.         border: 1px solid #4b4b4b !important;
  21.     }
  22.     yt-chip-cloud-chip-renderer[chip-style="STYLE_DEFAULT"][selected],
  23.     yt-chip-cloud-chip-renderer[chip-style="STYLE_HOME_FILTER"][selected] {
  24.         background-color: var(--yt-spec-text-primary) !important;
  25.         color: var(--yt-spec-text-primary-inverse) !important;
  26.     }
  27.     .sbdd_b {
  28.         border: 1px solid #4b4b4b !important;
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement