VS Code not highlighting python text - visual-studio-code

My vs code is not highlighting my python text. it does not color change the variables and imports etc. Only the strings and some other parts of the text.
I have python and pylint installed, I am also using the dark+ (default dark) as my color theme. I have also tried other options like the github dark theme, but same results. I am on windows 10.
any help

I had this problem recently and I fixed it by removing an outdated python extention, it's name was 'Python for VSCode' by Thomas Haakon Townsend.
I hope this helped.

Related

Change jupyter notebook markdown font color in vscode

I am using VScode with a dark theme and the text dispayed in Jupyter notebook markdown is pretty pale example
What I have been doing is trying to change my color theme in settings.json, but I can not find a variable that accounts for the notebook markup font color, let me give you an example of an existing variable that is similar to what I am looking for "notebook.markup.fontSize": 20. I could not find neither the variable nor the full list of such.
I know I might explicitly assing font color for each cell, but I find it really tedious as I have tons of them.
Are there any other solutions to this problem?
I have tried installing extensions, checking out jupyter VScode settings. Couldn't find anything.

VS Code colors suddenly stopped working, how do I fix this issue?

I'm a student and using VS Code to learn. When I opened a new file today, all the coloration from the code was gone. I'm using Dark+ theme and have the C++ intellisense extension active. I've checked color themes, uninstalled/reinstalled, restarting, disabling and re-enabling the extensions.
Included is a screenshot
[1]: https://i.stack.imgur.com/KmrKr.png
The same thing happened to me, but in my case, I was using React and my language mode wasn't in Plain Text.
I started checking my extensions, and noticed that probably the problem was this typescript extension: JavaScript and TypeScript Nightly
I've disabled the extension and VSCode colors worked properly again.
Your file extension is ".ccp" instead of ".cpp" so vscode recognized it as plain text.
Change the file extension to ".cpp" may solve the problem.

Problem with ZSH arrows' colors in Visual Studio Code

I've tried installing oh-my-zsh on my Windows 10 machine recently and everything is looking alright inside Windows Terminal,
ut when I try using it inside VSCode's integrated terminal, the colors are way off and the arrows' colors are different from the rest.
Imgur link to what my terminal looks like since Stack Overflow won't let me post any photo: https://imgur.com/a/3myV6wf
I've tried multiple Powerline fonts, modifying VSCode color theme and changing the terminal foreground color, but the result is always the same.
Thanks in advance for your help
I was perplexed by this as well, turns out it's something that recently broke in VS Code as a result of a new accessibility feature introduced in version 1.66. The solution is to add the following to your VS Code settings.json file:
"terminal.integrated.minimumContrastRatio": 1,
Enforcing a minimum contrast ratio for terminal colors is a great idea that will help users with impaired vision, but an unintended consequence was that it would interfere with the way powerline-style tools render separator characters. Thankfully Microsoft offered us a way to disable it.

Dark+ Theme in VSCode changes after I install Dart extension

I am trying to use Dark+ (default theme) theme in VSCode. Every time I try to use the theme, theme colors change to something different for variables, and the #override. Both become light-blue in color (as in the picture.)
I have searched and tried everything, including removing and re-installing VSCode itself (and lost my other settings.json on the way!) My question is how to use the Dark+ theme along with the Dart extension?
I use the latest versions of both Flutter and Dart on a Linux (LinuxMint) machine.
After extensive search, I could find the solution that may help others who may face such a problem.
add
"editor.semanticHighlighting.enabled": false,
to your settings.json file.

IPython solarized?

I'm running Spyder and with Pschelo's spyder solarized theme, but the console, including IPython console, is not affected by the IDE theme. How can I tweak the default color theme in IPython so that it uses solarized colours?
In version 2.1 there is no way to change the color scheme to use the ones defined for the Editor. There are just two different versions: with white and dark background (and I don't know if they are still working correctly)
However, we plan to use fine grained color schemes for IPython in version 2.2 (because as Thomas pointed out, IPython now can handle them correctly).