When it comes to VSCode, there are limitations in theming due to the grouping of themes into just two ui themes: "vs" for light themes and "vs-dark" for dark themes.
This restriction hinders the ability to create color themes that do not fit into these predefined categories. I am interested in finding a way to access and modify uiTheme colors through a custom extension in order to introduce more unique and engaging color schemes. Perhaps this can be achieved with the use of custom CSS? If so, I would appreciate guidance or an example demonstrating how this can be done.
EDIT: The resource responsible for this is located at:
C:/Users/micha/AppData/Local/Programs/Microsoft%20VS%20Code/resources/app/out/vs/workbench/workbench.main.css
It appears that I will need a css file along with the vscode-custom-css extension. However, I am unsure of how to identify the specific resource I want to customize. It seems like accessing developer mode in VSCode might be necessary, but I am unsure about the next steps.