From 54fb32f007dd4cfacea4402ad65bd2321c745586 Mon Sep 17 00:00:00 2001 From: Ahmad Abdolsaheb Date: Thu, 17 Mar 2022 15:28:25 +0300 Subject: [PATCH] feat: add dark theme editor highlight color (#45450) --- client/src/templates/Challenges/classic/editor.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/templates/Challenges/classic/editor.tsx b/client/src/templates/Challenges/classic/editor.tsx index 38fd2799ea7..a357f51b9b5 100644 --- a/client/src/templates/Challenges/classic/editor.tsx +++ b/client/src/templates/Challenges/classic/editor.tsx @@ -164,7 +164,8 @@ const defineMonacoThemes = ( base: 'vs-dark', inherit: true, colors: { - 'editor.background': '#2a2a40' + 'editor.background': '#2a2a40', + 'editor.lineHighlightBorder': '#0e4470' }, rules: [ { token: 'delimiter.js', foreground: lightBlueColor },