Variables with capital letters are considered "constants", and using other themes like Gruvbox, I realized that it helps a lot when reading the code to have these variables well highlighted.
I changed the color of the "Docstrings" in Python and left the decorator bold.
The reason for this is that when taking a code that had many decorators, a large docstring in the function and many strings within the function, I felt that the colors made the code very cluttered and difficult to visualize.
before ⇾ after
Observation:
I want to apologize in advance, my English is average, so I'm sorry if at any point it was difficult to understand the things I wrote.
And regarding the code, I never made a theme for vscode, the changes I made were from searching the internet to find out how it works.
I tested it before shipping and everything appears to be working perfectly.
New settings for Python language
1. Python Metafunction
Allows you to view modules imported from the "typing" library in the function attributes with highlighted color.
before ⇾ after
2. Python Assignment
I changed the color of the "=" assignment operator, to differentiate it from the "==" operator, making the code easier to read.
before ⇾ after
3. Python ALL CAPS
Variables with capital letters are considered "constants", and using other themes like Gruvbox, I realized that it helps a lot when reading the code to have these variables well highlighted.
before ⇾ after
4. Python Docstring | Python Decorator
I changed the color of the "Docstrings" in Python and left the decorator bold. The reason for this is that when taking a code that had many decorators, a large docstring in the function and many strings within the function, I felt that the colors made the code very cluttered and difficult to visualize.
before ⇾ after
Observation: I want to apologize in advance, my English is average, so I'm sorry if at any point it was difficult to understand the things I wrote. And regarding the code, I never made a theme for vscode, the changes I made were from searching the internet to find out how it works. I tested it before shipping and everything appears to be working perfectly.