ryu1kn / vscode-text-marker

Visual Studio Code Extension. Select text in your code and mark all matches. The marking colour is configurable
https://marketplace.visualstudio.com/items?itemName=ryu1kn.text-marker
MIT License
87 stars 17 forks source link

Feature Request : Bright highlight colors #64

Open johnmccrae opened 3 years ago

johnmccrae commented 3 years ago

Hi, how can I add or get you to add/change the highlight colors so they are bright like the day-glo yellow or orange on Safety vests?

Ste1io commented 1 year ago

Just edit the extension's Highlight Colors setting. Since colors are used in the order they appear in the list, and the settings UI lacks the ability to reorder the colors, you're probably best off editing the JSON settings file directly. Accepts both hex and named colors.

Colors are used in the order they appear in the list.

Code_v0IppZMawx

"textmarker.highlightColors": [
    "#28ce86",
    "#f3f2c8",
    "#b16ff2",
    "fuchsia",
    "darkgoldenrod",
    "darkmagenta",
    "darkolivegreen",
    "darkslateblue",
    "darkslategray",
    "darkviolet",
    "darkblue",
    "darkturquoise",
    "darkgray",
    "darkkhaki",
    "darkorange",
    "darksalmon",
    "darkseagreen"
]