毎日のVS Codeユーザーとして、以前に解決した問題( 選択と選択はハイライトカラー#1636と一致 )を見つけました-つまり、実際に選択した場合ハイライトされているテキストもありますが、ハイライトの色は、一致したコードまたは同じWordで使用されているハイライトとほとんど区別がつきません。
システム全体のハイライト色(anyテキストをシステム全体で選択する場合)がVS Codeに移植できない場合は、編集する方法が必要です。おそらく、テーマのCSSまたは-できれば-ユーザー生成の「オーバーライドcss」ファイルまたは何か(VS Codeのユーザー設定など)の中にあります。これはパイプラインにありますか?そうでない場合、誰か修正はありますか?
選択したテキストの強調表示色を変更するATMは不可能に見えます。 「ダーク」を使っていますが、どちらのテーマでも同じです。
これで、選択オプションを含む、vscodeに実行できる多くの色のカスタマイズがあります。
editor.selectionBackground: Color of the editor selection.
editor.selectionHighlightBackground: Color for regions with the same content as the selection.
editor.inactiveSelectionBackground: Color of the selection in an inactive editor.
vscodeテーマのカラーオプション を参照してください。
不足しているいくつかの手順を記入するには:
Settings.jsonファイルを開きます(このファイルの場所については以下を参照してください)
最後のエントリにコンマを追加します(右中括弧}
の前)
貼り付け:
"workbench.colorCustomizations":{ "editor.selectionBackground": "#e788ff"、//現在の選択されたテキスト "editor.selectionHighlightBackground": "#ff0000"、/ /セレクションと同じ内容 "editor.findMatchBackground": "#00cc44a8"、// Current SEARCH MATCH "editor.findMatchHighlightBackground": "#ff7b00a1" //その他の検索マッチ }
{ "git.enableSmartCommit":true、 "git.autofetch":true、 "breadcrumbs.enabled":true、 "git.confirmSync":false、 "Explorer.confirmDelete":false、 "code-runner.saveFileBeforeRun":true、 "code-runner.saveAllFilesBeforeRun":true 、 "workbench.activityBar.visible":true、 "files.trimTrailingWhitespace":true、 "telemetry.enableTelemetry":false、 "ワークベンチ。 colorCustomizations ":{ " editor.selectionBackground ":"#e788ff7c "、//現在選択されているテキスト " editor.selectionHighlightBackground ":"#ff00005b "、//選択と同じコンテンツ "editor.findMatchBackground": "#00cc44a8"、//現在のSEARCH MATCH "editor.findMatchHighlightBackground": "#ff7b00a1" //その他のSEARCH MATCHES } }
Depending on your platform, the user settings file is located here:
Windows %APPDATA%\Code\User\settings.json
macOS $HOME/Library/Application Support/Code/User/settings.json
Linux $HOME/.config/Code/User/settings.json
Ctrl +、(カンマ)で設定を開く
ワークベンチ
設定エディター
上部の検索ボックスに貼り付けworkbench.colorCustomizations
左側にあるWorkbench
をクリックし、次にAppearance
をクリックします
右のリンクをクリックしてください:Edit in settings.json
参照:
https://code.visualstudio.com/api/references/theme-color#editor-colors
https://code.visualstudio.com/docs/getstarted/themes#_customize-a-color-theme