From 6f12eaefa2fe000f43164420d4e466e6fff01476 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mitja=20Bezen=C5=A1ek?= Date: Tue, 14 Nov 2023 09:21:24 +0100 Subject: [PATCH] Revert back to the previous color. (#2210) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the color of culled shapes when using dark mode. Reverted to the color that was set before the blue test color. ### Change Type - [x] `patch` — Bug fix - [ ] `minor` — New feature - [ ] `major` — Breaking change - [ ] `dependencies` — Changes to package dependencies[^1] - [ ] `documentation` — Changes to the documentation only[^2] - [ ] `tests` — Changes to any test code only[^2] - [ ] `internal` — Any other changes that don't affect the published package[^2] - [ ] I don't know [^1]: publishes a `patch` release, for devDependencies use `internal` [^2]: will not publish a new version ### Release Notes - Fixes the color of culled shapes when using dark mode. --- packages/editor/editor.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor/editor.css b/packages/editor/editor.css index 509210c68..ffdfe330e 100644 --- a/packages/editor/editor.css +++ b/packages/editor/editor.css @@ -145,7 +145,7 @@ --color-grid: #909090; --color-low: #2c3136; --color-low-border: #30363b; - --color-culled: blue; + --color-culled: rgb(47, 52, 57); --color-muted-none: rgba(255, 255, 255, 0); --color-muted-0: rgba(255, 255, 255, 0.02); --color-muted-1: rgba(255, 255, 255, 0.1);