imzbf / md-editor-v3

Markdown editor for vue3, developed in jsx and typescript, dark theme、beautify content by prettier、render articles directly、paste or clip the picture and upload it...
https://imzbf.github.io/md-editor-v3
MIT License
1.51k stars 145 forks source link

编辑器选中颜色背景色如何修改 #640

Closed linyuanjie closed 3 weeks ago

linyuanjie commented 3 weeks ago

Describe the issue

编辑器选中颜色背景色看起来很淡,不容易区分选中和没有选中的差别,如何修改选中的背景颜色 image

Procedure version

"md-editor-v3": "^4.18.0",

Reproduction link

No response

imzbf commented 3 weeks ago

用css覆盖

.cm-selectionBackground,
.cm-content::selection {
  background-color: red !important;
}
linyuanjie commented 3 weeks ago

OK,thanks