diff --git a/packages/gui/src/view/style/theme/dark.scss b/packages/gui/src/view/style/theme/dark.scss index c70d031b..1f3aebc0 100644 --- a/packages/gui/src/view/style/theme/dark.scss +++ b/packages/gui/src/view/style/theme/dark.scss @@ -187,7 +187,7 @@ $dark-input: #777; //输入框:背景色 /* 选中行高亮样式 */ .ace-jsoneditor { .ace_marker-layer .ace_selection { - background: #888; + background: #8b2929; /* 同时应用于当前选中的搜索结果项的背景色,建议与搜索结果边框颜色保持一致 */ } /* 光标颜色 */ @@ -195,5 +195,13 @@ $dark-input: #777; //输入框:背景色 border-left-color: #ddd; } } + /* 搜索框 */ + .ace_button, button, .ace_search_field { + color: #000; + } + /* 搜索结果 */ + .ace-jsoneditor .ace_marker-layer .ace_selected-word { + border-color: #8b2929; + } } } \ No newline at end of file