Sublime Forum

Change color of red wavy underlines for misspellings in Sublime Text 4

#1

Is there any way to change the color of the red wavy underlines for misspellings in Sublime Text 4?

Thank you

0 Likes

#2
  1. Call UI: Customize Color Scheme from Command Palette
  2. add "misspelling" rule to "globals" section
    {
        "globals":
        {
            "misspelling": "yellow",
        },
    }
    
2 Likes

#3

Great, thank you.

0 Likes