-
-
Notifications
You must be signed in to change notification settings - Fork 52
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
VSCodium workspace accent color doesn't take effect automatically #443
Comments
Hey 👋, Can you give me more details on this issue so that I can try to reproduce? I'd appreciate the following:
Thanks! |
@sgoudham and I have spent some time investigating this and the source of the issue seems to be that our theme supports customisation. this is not something that vscode handles natively - we have to do quite a lot of work to take the user's customisation options and dynamically rebuild the theme with them. this is why you have to reload the window after changing customisation options for them to take effect. the official method for doing this is to not provide customisation settings at all and instead ship a collection of static themes you can choose from in the colour theme menu in vscode. unfortunately we provide far too many customisation options for this to be a feasible solution for us. we would have to ship hundreds of variants of the theme just to support all combinations of the most common customisation options (flavour, accent colour, italics.) to support all of the features we have now is simply unrealistic. as of now we have no good solution for making this work in a per-workspace manner. we will continue to investigate and see if there is any kind of workaround we can provide for this use case. |
Current VSCodium version info:
v3.15.2
Settings saved in *.code-workspace file. |
As I understand it, if I set
"catppuccin.accentColor": "blue"
under Workspace and save the workspace, then the accent color should be blue when I launch VSCodium with the saved workspace as the argument.However, when I open the saved workspace this way, the accent color in the UI is not blue. Instead, it is the accent color of the last workspace I had opened.
To get the accent color of the opened workspace, I have to
(I posted this on Catppuccin's VSCode channel as well as Support over a week ago,)
The text was updated successfully, but these errors were encountered: