From 64ef0e4bce116e7de6da9367e827917877340836 Mon Sep 17 00:00:00 2001
From: jojohoch <joachim.hoch@iqb.hu-berlin.de>
Date: Tue, 13 Feb 2024 10:25:04 +0100
Subject: [PATCH] [rich-text-editor] Set default font color to black

#612
---
 .../editor/src/app/text-editor/rich-text-editor.component.ts    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/projects/editor/src/app/text-editor/rich-text-editor.component.ts b/projects/editor/src/app/text-editor/rich-text-editor.component.ts
index 0b0db24e8..58513135a 100644
--- a/projects/editor/src/app/text-editor/rich-text-editor.component.ts
+++ b/projects/editor/src/app/text-editor/rich-text-editor.component.ts
@@ -48,7 +48,7 @@ export class RichTextEditorComponent implements OnInit, AfterViewInit {
   @Input() clozeMode: boolean = false;
   @Output() contentChange = new EventEmitter<string | Record<string, any>>();
 
-  selectedFontColor = 'lightgrey';
+  selectedFontColor = 'black';
   selectedHighlightColor = 'lightgrey';
   selectedAnchorColor = '#adff2f';
   selectedAnchorIdText = '';
-- 
GitLab