From 79216b286b8deff44764738036241455fb33f090 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Thu, 24 Oct 2024 00:54:25 +0200 Subject: [PATCH] FIX: Caret color is IronCalc --- webapp/src/components/editor/editor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/components/editor/editor.tsx b/webapp/src/components/editor/editor.tsx index 86d808a..0c51248 100644 --- a/webapp/src/components/editor/editor.tsx +++ b/webapp/src/components/editor/editor.tsx @@ -61,7 +61,7 @@ const commonCSS: CSSProperties = { lineHeight: "22px", }; -const caretColor = "#FF8899"; +const caretColor = "rgb(242, 153, 74)"; interface EditorOptions { originalText: string;