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

一、说明:

1、注释颜色:搜索Comment,"foreground": "#a6a085"

2、选取内容的背景色:"editor.selection": "#9a9a9a",

【HBuilderX】解决黑色主题中的注释颜色太浅的问题(代码示例)_第1张图片

【HBuilderX】解决黑色主题中的注释颜色太浅的问题(代码示例)_第2张图片

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

【HBuilderX】解决黑色主题中的注释颜色太浅的问题(代码示例)_第3张图片

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

你可能感兴趣的:(27.【uni-app】,uni-app)