From 48fe2ceddd8323e1710666219d776dcfd3d94c7d Mon Sep 17 00:00:00 2001 From: Mitsutaka Okazaki Date: Fri, 24 Nov 2023 10:28:16 +0900 Subject: [PATCH] Tweak editor background color --- public/js/ace-defines.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/ace-defines.js b/public/js/ace-defines.js index 943df43..897f5bc 100644 --- a/public/js/ace-defines.js +++ b/public/js/ace-defines.js @@ -268,7 +268,7 @@ const DARK_THEME_PATH = "ace/theme/mgsc-dark"; exports.cssText = ` .ace_editor.ace_mgsc { color: rgba(0,0,0,0.87); - background-color: #fafafa; + background-color: #f0f0f0; } .ace_mgsc .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; @@ -349,7 +349,7 @@ const DARK_THEME_PATH = "ace/theme/mgsc-dark"; exports.cssText = ` .ace_editor.ace_mgsc_dark { color: #f0f0f0; - background-color: #000; + background-color: #222222; } .ace_mgsc_dark .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px;