Reputation: 119
Im trying to change the color of the font in IntelliJ but I can't seem to find how go into setting -> appearance -> theme and it changes the look of IntelliJ and some of the font changes like the color of text Strings and keywords like import but not the color of methods and variables a more
They just stay all the same color until is somehow use it for example if I declare the variable B like this
int B;
The color does not change.
But if I do
int B = 1;
it does change to the color is supposed to be
See the picture I added:
I also tried settings -> editor -> color scheme
Upvotes: 0
Views: 1367
Reputation: 16391
Use color settings under the Settings (Preferences on macOS) | Editor | Color Scheme. For example, Color Scheme | Java | Methods | Method call.
See Configuring colors and fonts.
Upvotes: 1
Reputation: 165
You cannot color individual methods and variables in Intellij.
Upvotes: 0