[HBuilderX] Solve the problem that the annotation color in the black theme is too light (code example)

"foreground": "#a6a085"

After opening, search for Comment and modify it. One is the color of // and the other is the color of the comment content.

		{
			"name": "Comment",
			"scope": "comment",
			"settings": {
				"foreground": "#a6a085"
			}
		},
		{
			"name": "Comment",
			"scope": "punctuation.definition.comment",
			"settings": {
				"foreground": "#a6a085"
			}
		},

Guess you like

Origin blog.csdn.net/dxnn520/article/details/132902392