reduce font brightness, or change the color and type of font, for primary and secondary text in dark mode
/* ==UserStyle== @name Youtube font type, color and brightness in dark mode @version 1.1.1 @description reduce font brightness, or change the color and type of font, for primary and secondary text in dark mode @author toppits @namespace https://greasyfork.org/users/371090 @preprocessor uso @var color prim "primary text color" #bbb @var color prim-b "primary background color" #181818 @var color seco "seocndary text color" #bbb @var color cta "URL's, Replies, etc." #bbb @var text FF-main "Main Font (multiple devided by comma)" ""roboto"" @var text FS-main "Main Font Size (px, ch, em, rem)" 10px ==/UserStyle== */ @-moz-document domain("youtube.com") { html:not(.style-scope)[dark], :not(.style-scope)[dark] { --yt-spec-text-primary: /*[[prim]]*/ !important; --yt-spec-text-secondary: /*[[seco]]*/ !important; --yt-spec-call-to-action: /*[[cta]]*/ !important; --yt-spec-general-background-a: /*[[prim-b]]*/ !important; } html { font: /*[[FS-main]]*/ /*[[FF-main]]*/ , Roboto, monospace !important; } }