From 8c0a566995d7d960702e5d48efb2e78c5f101fa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Tue, 8 Oct 2024 20:40:40 +0200 Subject: [PATCH] FIX: Set grid color to grey-300 --- webapp/src/components/WorksheetCanvas/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/components/WorksheetCanvas/constants.ts b/webapp/src/components/WorksheetCanvas/constants.ts index b79131b..ff1266f 100644 --- a/webapp/src/components/WorksheetCanvas/constants.ts +++ b/webapp/src/components/WorksheetCanvas/constants.ts @@ -7,7 +7,7 @@ export const headerFullSelectedBackground = "#D3D6E9"; export const headerSelectedColor = "#333"; export const headerBorderColor = "#DEE0EF"; -export const gridColor = "#D3D6E9"; +export const gridColor = "#E0E0E0"; export const gridSeparatorColor = "#D3D6E9"; export const defaultTextColor = "#2E414D";