visual-studio-code icon indicating copy to clipboard operation
visual-studio-code copied to clipboard

Bracket pair colorization can match text color

Open asportnoy opened this issue 1 year ago • 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],
			};
		};
	}
}

asportnoy avatar Sep 06 '22 15:09 asportnoy

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

dsifford avatar Sep 06 '22 15:09 dsifford