Change Color of Misspelling line in Sublime Text 3

 

To change the color of misspelling line in Sublime Text 3:

1. Choose, Preferences, Color scheme, and the one highlighted is the one currently being used.

2. Find the file on Drive C: Mine was located C:\Users\intrex3\AppData\Roaming\Sublime Text 3\Packages\User\Monokai.sublime-color-scheme

3. Under "globals" add misspelling as given below

 

{

    "globals":

    {

        "line_highlight": "#4d2600",

        "selection": "#FF6600",

        "misspelling":"#FFFF00"

    }

}

The color #FFFF00 will make the Misspelling line yellow.

 

4. Save the changes and restart Sublime Text 3 if necessary.