https://ace.c9.io/
黒を基調としたMonokaiテーマを選んでいたが、検索ハイライトがどうも見づらいのでgitの以下のissue
https://github.com/StylishThemes/GitHub-Dark/issues/401
を参考にスタイルシートに追加を行った。
.ace_editor .ace_marker-layer .ace_selection {
background: #B3B3B3 !important;
}
.ace_editor .ace_marker-layer .ace_active-line {
background: #333435 !important;
}
.ace_editor .ace_marker-layer .ace_selected-word {
background: transparent !important;
border: 1px solid /*[[base-color]]*/ #FF0000 !important;
}
/* ついでにブラケットのハイライトも設定 */
.ace_editor .ace_marker-layer .ace_bracket {
background: transparent !important;
border: 1px solid /*[[base-color]]*/ #FF0000 !important;
}