From 5d0669b4640e4209adbcf5da8f542356c721889b Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 23 Oct 2025 16:11:05 +0300 Subject: [PATCH] fix(canvas): images appearing muted in dark mode (closes #5708) --- apps/client/src/stylesheets/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/client/src/stylesheets/style.css b/apps/client/src/stylesheets/style.css index fd8383130..7f67e4827 100644 --- a/apps/client/src/stylesheets/style.css +++ b/apps/client/src/stylesheets/style.css @@ -2432,4 +2432,8 @@ iframe.print-iframe { bottom: 0; width: 0; height: 0; +} + +.excalidraw.theme--dark canvas { + --theme-filter: invert(100%) hue-rotate(180deg); } \ No newline at end of file