We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem:
The current color scheme for Java syntax highlighting doesn't perfectly match the intended JetBrains theme in the following cases.
Proposed Solution:
To improve the matching, please consider the following changes to the syntax highlighting rules:
{ "scope": ["storage.modifier.import.java", "storage.type.java", "storage.type.generic.java"], "settings": { "foreground": "#ABB2BF" } }, { "scope": ["storage.type.annotation.java", "storage.type.object.array.java"], "settings": { "foreground": "#eef536" } }
The text was updated successfully, but these errors were encountered:
I have do this work in setting.json file by adding
"editor.tokenColorCustomizations": { "[JetBrains Darcula Theme]": { "textMateRules": [ { "scope": ["storage.modifier.import.java", "storage.type.java", "storage.type.generic.java"], "settings": { "foreground": "#ABB2BF" } }, { "scope": [ "storage.type.annotation.java", "storage.type.object.array.java" ], "settings": { "foreground": "#eef536" } } ] } },
Sorry, something went wrong.
Thanks for the feedback, do you have screenshots before and after from jetbrains ide and vscode ?
No branches or pull requests
JetBrains Theme Matching - Java Syntax Highlighting
Problem:
The current color scheme for Java syntax highlighting doesn't perfectly match the intended JetBrains theme in the following cases.
Proposed Solution:
To improve the matching, please consider the following changes to the syntax highlighting rules:
The text was updated successfully, but these errors were encountered: