Converted theme has the wrong colors (One Dark Pro Monokai Darker Reloaded Theme)
See original GitHub issueDescribe the bug The converted theme has the wrong colors compared to Visual Studio Code. Most of the tokens are colored differently and the brackets are colored instead of default white.
Screenshots
To Reproduce Steps to reproduce the behavior:
- Install the One Dark Pro Monokai Darker Reloaded Theme from the Marketplace in Visual Studio Code
- Add the following lines inside
"editor.tokenColorCustomizations"
in settings.json in Visual Studio Code
"[One Dark Pro Monokai Darker Reloaded]": {
"textMateRules": [
{
"scope": [
"storage.type.class",
"storage.type.struct",
"storage.type.modifier.access.control"
],
"settings": {
"foreground": "#E06C75",
"fontStyle": ""
},
},
{
"scope": "keyword.control",
"settings": {
"foreground": "#BBBBBB"
},
},
]
},
- Execute the steps provided on using the tool in the README.md
Expected behavior The converted theme must have been colored in the exact same manner as the theme in Visual Studio Code
Environment:
- Converter version: commit 3ade7dac81d5a0c2d3adeab64246780f91a7310d
- VS version: 17.3.0 Preview 2
- Theme used: One Dark Pro Monokai Darker Reloaded Theme
Impact This demonstrates that the tool is converting but the resulting theme is not colored the same.
Issue Analytics
- State:
- Created a year ago
- Comments:9
Top Results From Across the Web
Issues · microsoft/theme-converter-for-vs
CLI tool that allows you to convert your VS Code color theme to a VS 2022 color theme. ... Converted theme has the...
Read more >One Dark Pro Monokai Darker Theme
A darker variation of One Dark Pro theme for Visual Studio Code, with Monokai code coloring. Installation. Press ctrl/command + shift + p...
Read more >How to edit default dark theme for Visual Studio Code?
Switch to the builtin theme you wish to modify by selecting Preferences: Color Theme from the command palette then choosing the theme. Get...
Read more >Does anyone else ever try out different themes, only to ...
I like to experiment with different themes, but I always revert back to One Dark Pro. I'll download a few themes, try them...
Read more >Some (truly) dark VS Code themes
Here too, One Dark Pro Monokai Darker is more suited for low contrast screens, while One Monokai will do the job for the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I have exactly same issue with Visual Assist Dark Theme. The converted theme has the wrong colors compared to Visual Studio Code.
Following DavidBChristensen’s guide, I have succeeded in making it work for C++. But can anyone tell me how to get the VS Token like him ?? I would like to get all the VS token for all the language to further develop my theme. Many thanks!