jeffdapaz / VisualChatGPTStudio

Add chatGPT functionalities directly on Visual Studio
https://marketplace.visualstudio.com/items?itemName=jefferson-pires.VisualChatGPTStudio
MIT License
186 stars 47 forks source link

Text editor background theme that follows Visual Studio theme (light or dark) #11

Open jeffdapaz opened 1 year ago

jeffdapaz commented 1 year ago

After adding highlighting to the text editors, I implemented the dark theme in the editor boxes following the VS theme, but the text colors didn't show up very well in the dark theme.

Need to find a way to resolve so be possible add the dark theme.

Here how to get VS theme:

VSColorTheme.ThemeChanged += VSColorTheme_ThemeChanged;

var defaultBackground = VSColorTheme.GetThemedColor(EnvironmentColors.ToolWindowBackgroundColorKey); var defaultForeground = VSColorTheme.GetThemedColor(EnvironmentColors.ToolWindowTextColorKey);