【HBuilderX】解决黑色主题中的注释颜色太浅的问题(代码示例)

"foreground": "#a6a085"

打开后,搜索Comment,修改,一个是//的颜色,一个是注释内容的颜色

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

猜你喜欢

转载自blog.csdn.net/dxnn520/article/details/132902392