-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Themes are not working in Visual studio 1.7.9.0+ versions #164
Comments
I'm trying to get before and after screenshots, if I can find a VS installation that hasn't been updated |
Adding to @Smenus's comment:
Examples using the Dark+ theme: Code (click to expand)namespace VS_17_9_Themes
{
// Usings are not coloured.
using System;
using System.Net.Http;
public static class Program
{
public static void Main(string[] args)
{
SomeClass someClass = new();
// Regular method calls are not coloured.
someClass.RegularMethodOnOtherClass();
RegularMethodOnSameClass();
// Extension method calls are coloured.
someClass.ExtensionMethodOnOtherClass();
}
public static void RegularMethodOnSameClass()
{
Console.WriteLine("Hello");
}
}
public interface ISomeInterface { }
public class SomeClassBase { }
public class SomeClass
// Interface names are not coloured.
: SomeClassBase, ISomeInterface
{
public void RegularMethodOnOtherClass()
{
Console.WriteLine("Hello");
}
}
public static class SomeClassExtensions
{
public static void ExtensionMethodOnOtherClass(this SomeClass someClass)
{
Console.WriteLine("Hello");
}
}
} |
I glad I'm not alone. Sadly I was allarming about this since thems stoped working in preview branch. Looks like no one cares about this issue. I also doubt someone from devlabs team will see the bug report.... If you didn't see my reddit post this is some sort of solution:
|
Please hide images/long code under spoilersWOW this is spoiler! |
A fix from the VS team is coming: The workaround that worked for me was setting the Identifier background and foreground to Automatic. |
you are my hero! |
This kind of fixed it for me as well. Thank you! |
Legend |
Describe the bug
Most of converted themes from Theme pack like Abyss or Dark+ are not working correctly anymore.
Expected behavior
Work as on previous verisons?
Environment (please complete the following information):
Impact
Can't code anymore, I need my dark+ back :(
The text was updated successfully, but these errors were encountered: