From 25a053cecb842df9c99ddfcd0b7ea189d4fa9bc9 Mon Sep 17 00:00:00 2001 From: kyletruong Date: Sun, 29 Mar 2026 00:37:54 -0700 Subject: [PATCH] feat: preserve diagram colors by rotating hue 180deg --- apps/dotdev/src/app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dotdev/src/app.css b/apps/dotdev/src/app.css index 3b51de1..03ea670 100644 --- a/apps/dotdev/src/app.css +++ b/apps/dotdev/src/app.css @@ -92,5 +92,5 @@ /* Excalidraw exports default to light mode colors; invert in dark theme. */ .dark .excalidraw-dark-invert { - filter: invert(1); + filter: invert(1) hue-rotate(180deg); }