Reputation: 7931
The PhpStorm IDE comes with a feature called language injections. This feature assists the developer while writing in a sub language while in the context of a primary language. That is, writing JavaScript in HTML or SQL in PHP.
The feature is useful no doubt, but I find the visuals distracting. Is it possible to configure the background color of a language injection in PhpStorm?
Not good; the green tint is super annoying in this case.
It is possible to disable the language injection, but that disables column-name auto-completion and other snacks that the IDE would otherwise provide:
I want a nice "quiet" background and the language completion features.
Upvotes: 0
Views: 106
Reputation: 165501
Here you can remove or change background color.
Settings/Preferences | Editor
Colors & Fonts | General
Code | Injected language fragment
Based on your image (the fact that background color breaks under variables) -- your problem might be that it is overwritten by colors for actual SQL elements. If so -- check them at Colors & Fonts | SQL
.
Upvotes: 0