dracula/visual-studio-code

Bracket pair colorization can match text color

Closed this issue · 1 comments

Screenshot 2022-09-06 at 10 28 09
The bracket pair colorization here matches the color of the text, making it hard to distinguish. This is in JS but could apply to other languages too, probably.

Code
const someObject = {};

class something {
	test() {
		const variable = 1;
		return () => {
			return {
				test: someObject[variable],
			};
		};
	}
}

Unfortunately, I'm not aware of a way to make this not happen aside from using non-dracula colors.