WebStorm editor tab background colour - webstorm

I want to use a light theme in WebStorm 2017.1 but for some reason the editor tabs are always dark.
I can change the font colour but that also changes it in the project tree view which has a white background.
The theme under Appearance is set to IntelliJ and the editor theme is set to default but I have tried it with many combinations.
Is this a bug or is there a setting I haven't found yet?

The issue was caused by the Material Theme plugin, disabled it and everything looks fine.
Thanks to #LazyOne for pointing me in the right direction.

Related

WebStorm Terminal Color - Linux

I have a couple of issues with my terminal colors in WebStorm that I have been unable to resolve by using Settings > Editor > Color Scheme > Console Colors
I am running:
Kubunutu 20.04,
WebStorm 2021.2 64 bit for linux. Build #WS-212.1746.80
My issues are:
In the interactive console color interface, the 'console' background does not match my actual console background. Mine is dark, the interactive settings one is white. The result of this is that I am unable to see how my color selections will actually appear.
Hyperlinks in my console are displayed in the default blue (000FF), which works fine against a white background but is unreadable against a dark background. I have been unable to locate the setting for this. They do not appear to be in the console colors section. And if I go to Settings > Editor > Color Scheme > General > Hyperlinks there are plenty of options, but none of them seem to affect what goes on in the terminal.
Questions:
How do I get the console color selector background to match my actual background selection?
Where do I access the setting that determines the hyperlink color in the WebStorm terminal in Linux?
Screenshots follow:
Here you can see that my background is set to dark, but the color selector interface background is white.
And here you can see the unreadable hyperlinks that I can't read. The command to get this screen was npm fund
Here are my actual console colors:
Here you can see the hyperlink settings, with background set to yellow, and the actual hyperlinks displayed behind, demonstrating that these two things are not linked. (I refreshed the terminal display after changing the settings)

How to disable VS2019's syntax coloring for C++ and make it look like VS2017

I'm a light theme user, and I guess that makes me unpopular, but I'm sure there are still some light theme users out there. I have switched to VS2019 and the light theme (called Blue Theme) was a nightmare. It turned out it was an issue and the solution can be found in this thread.
My other question is the C++ syntax coloring in VS2019. It's just too many colors and makes it really hard for the eyes (once again if using the light theme).
I have looked but don't know where can I disable this new fancy syntax coloring and go back to VS2017's syntax coloring in VS2019. Any tips?
Here's a screenshot of what I have in VS2019:
I think it's a bit too much. I don't wanna see purple, green, red and brown.
As per this Microsoft link there is supposed to be this Color Scheme and it can be set to VS2017, as per this screenshot:
But for some reason I don't have it and I have just updated it and this what my Text Editor->C/C++->View looks like:
It looks the only way to solve this problem is to change the colors one by one. But you may ask, how do I come up with colors, I'm not a graphic/UI/UX designer? Here's how. You open the colors in VS2017 in Options->Fonts and Colors and select Text Editor in Show settings for:, and there when you scroll down you will see the colors for all C++ keywords.
That was Step 1. In Step 2 you go to the same dialog in VS2019, and one buy one change VS2019 settings to match those of VS2019. Having two monitors or one wide monitor helps.
Here's the screenshot:

how to change apache superset's chart's background color?

Per How to Change Apache Superset Template from the Superset User Interface? , I was able to change the CSS template for Superset dashboard. But the charts inside the dashboard are not affected. e.g. most of the charts have white colored background(e.g. Piechart) and some people dislike it. How to change the chart background color? I mean change it for all charts or for one chart.
Disclaimer: This should work, but is a bit hacky and could have long-term support implications:
I've been fiddling with a "dark mode" dashboard just to kick the tires on this. Here's a screenshot just for fun:
So... what did I do?
Click "Edit Dashboard" in the top right of your screenshot
When in edit mode, the top right menu has an option to "Edit CSS"
Use your browser's inspector to hack away! That said, here are a couple of key ingredients:
.dashboard-component{ background: whatever} - sets the main background of each viz card, but you'll still see many components still have white backgrounds within these wrappers.
.slice_container svg{
background-color: transparent !important;
} - this overrides the white background of the components I ran into (including Pie charts!).
If viz components use SVG you can get pretty clever with inspecting/overriding various bits. A couple of gotchas with the above:
If a viz component contains multiple SVG elements, this may have side effects.
If a viz uses canvas instead of svg you will run into more trouble
In the worst case scenario, you may need to check out the superset-ui-plugins repo and make tweaks. This dev process isn't super straightforward, but some of us are working to improve that.
Easiest solution for me is using dark reader extension.

Visual Studio 2017 v15.7.2 Code Lens issue on Light theme

After an update to version 15.7.2, code lens displays partly unreadable text but only on light theme.
Any idea on how to fix this?
Option 1 :
Under Tools->Options-> Environment-> Fonts and Colors with Codelens selected under show settings for, change from any of the Code39Azalea fonts.
Option 2 :
Under Tools->Options-> Environment-> Fonts and Colors with Codelens selected under show settings for, Click use defaults, it should reset to calibri font.

Resharper Current Line Expression background color

İn Version 2017.3 there is a cool feature called Current Line Expression, i have a problem with the "Dark with light editor" and "Dark" themes of visual studio 2017 , as you can see in the attached image, Resharper is using a very dark red colour in the text, which makes it hard to read when the background is black .
Is there any way i can change the background colour or the text colour ?
Thank you in advance .
This issue has been addressed already in the latest update (v.2017.3.1) which I've got today (December, 27th).
The background color on Dark Theme has certainly changed to a brighter color which now effectively makes the values much easier to read.
I haven't found any direct reference to this issue on the release notes, though.
https://blog.jetbrains.com/dotnet/2017/12/22/resharper-ultimate-2017-3-1-bugfix-available/
https://youtrack.jetbrains.com/issues?q=in:ReSharper%20Fix%20version:%202017.3.1%20
So, the advice would be, update to 2017.3.1 ASAP.
Hope this helps!