From 3475f73635520909cc1252bc697683db05e3f46b Mon Sep 17 00:00:00 2001 From: thisisharsh7 <9u.harsh@gmail.com> Date: Sun, 16 Aug 2026 22:05:08 +0530 Subject: [PATCH] fix: clipboard toast text invisible on inverted background --- docs/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/style.css b/docs/style.css index 708828ac..cbdf875b 100644 --- a/docs/style.css +++ b/docs/style.css @@ -217,6 +217,10 @@ line-height: 1.75; color: var(--pg-text); } +/* The clipboard toast sits on an inverted background, so invert its text too. */ +.md-dialog__inner.md-typeset { + color: var(--md-default-bg-color); +} .md-typeset h1 { font-size: 1.9rem; font-weight: 800;