Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublime Text 2 HTML syntax highlighting issue

I am having a problem with the syntax highlighting for HTML (and plaintext) in Sublime Text 2, as it only grays out the lines as in the image.

enter image description here

Whenever I shift to Python, JavaScript, and other languages, the highlighting works fine. I am new to Sublime Text 2, so it is probably an easy answer, but I did not know how to formulate the issue without showing an image.

like image 831
Skogen Avatar asked Dec 26 '22 06:12

Skogen


1 Answers

I dont't think it is a problem, it's just how the theme "All Hallow's Eve" works: You can change the this color inside this block: (Preferences->Browse Packages>Color Scheme - Default->All Hallow's Eve)

    <dict>
        <key>name</key>
        <string>Text base</string>
        <key>scope</key>
        <string>text</string>
        <key>settings</key>
        <dict>
            <key>background</key>
            <string>#434242</string> #THIS IS GRAY COLOR YOU WANNA CHANGE.
            <key>foreground</key>
            <string>#FFFFFF</string>
        </dict>
    </dict>
like image 90
Hugo Corrá Avatar answered Jan 01 '23 23:01

Hugo Corrá