From ad3e1629ec0ef2175e4bd47a181fb55163c1f5ab Mon Sep 17 00:00:00 2001 From: squgeim Date: Sun, 1 Oct 2023 22:40:47 -0600 Subject: [PATCH] [patch] fix color in dark mode --- src/contentScripts/youtube/configureBtn.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/contentScripts/youtube/configureBtn.ts b/src/contentScripts/youtube/configureBtn.ts index 6dfc8be..c3411b1 100644 --- a/src/contentScripts/youtube/configureBtn.ts +++ b/src/contentScripts/youtube/configureBtn.ts @@ -59,6 +59,7 @@ export class ConfigureChannelBtn implements EventHandler { btn.style.lineHeight = "1.5em"; btn.style.cursor = "pointer"; btn.style.fontSize = "1.2em"; + btn.style.color = "var(--yt-spec-text-primary, black)"; btn.style.borderBottom = "1px solid var(--yt-spec-text-primary, black)"; btn.style.marginBottom = "1em";