-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
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
Inconsistent Styling on Typescript Keyword in Dark Theme #142
Comments
@diegodario88 - Hi, This can be done by adding language specific treesitter highlight group. Adding these highlights for all the language is tedious for me. If you add, I will be happy to merge. |
When examining the
However, in my buffer, the classKeyword is displayed as pink. What steps should I take to resolve this color discrepancy? Edit: So I found a way to trigger the change by doing for example
that does correct the color for the this keyword in typescript. But I need guidance on where should I put this code |
@diegodario88 - |
@Mofiqul - Wouldn't it be better under the -- Treesitter or even the -- Typescript section? In my setup configuration I did like this group_overrides = {
["@variable.builtin.typescript"] = { fg = vscodeColor.vscBlue, bg = "NONE" },
["@property.method.typescript"] = { fg = vscodeColor.vscYellow, bg = "NONE" },
["@constructor.typescript"] = { fg = vscodeColor.vscBlue, bg = "NONE" },
["@keyword.typescript"] = { fg = vscodeColor.vscBlue, bg = "NONE" },
["@keyword.return.typescript"] = { fg = vscodeColor.vscPink, bg = "NONE" },
} I did that hoping to override only for the typescript group, maybe we should do the same, and if so I think the better place would be under typescript section, right? |
hi, just wondering if this problem will be fixed with any PR? |
@me-nkr try it now :) |
Hello! First of all, I want to express my appreciation for the excellent work done on this theme. It provides a great visual experience. However, I have noticed a minor issue related to the styling of the "this", "get", "set", "class" and some others keyword, which doesn't match official theme.
I would like to request some guidance or assistance in addressing this inconsistency. My goal is to have those keyword in line with the rest of the vscode theme's styling.
The text was updated successfully, but these errors were encountered: