jesseweed / seti-syntax

A subtle dark colored theme for Atom.
MIT License
185 stars 66 forks source link

White/red colors that make no sense #133

Closed shavitush closed 6 years ago

shavitush commented 7 years ago

atom_2016-07-16_06-34-10

I really love the Seti syntax theme, but this one really triggers me.. I'm talking about the different colors in the braces after function. Is this intentional? The file syntax is C++ and it also happens with SourcePawn. Doesn't seem to happen with C# or Java.

Alhadis commented 6 years ago

Hi @shavitush,

Whenever this happens, it's usually because of an error with the grammar package that's highlighting the code. In this case, the appropriate thing to do is to file an issue to the grammar's upstream repository (which would have been atom/language-c for C++). This was already fixed long ago, however:

Figure 1

So it's safe to close this issue and mark it resolved. ;-)

PS: If you're unhappy with how a syntax theme colours your code, you can always tweak it with your user stylesheet:

.syntax--source.syntax--cpp {
    .syntax--punctuation.syntax--bracket.syntax--round {
        color: #f00; /* Styling here */
    }
}
shavitush commented 6 years ago

A bit old (old enough that I don't use Atom anymore) - but thank you!