其他分享
首页 > 其他分享> > Sublime3 修改默认搜索结果背景色

Sublime3 修改默认搜索结果背景色

作者:互联网

Sublime3

修改默认的搜索结果的背景色
MacOS文件位置

cd /Users/XXXXX/Library/Application Support/Sublime Text 3/Packages/User
// Documentation at https://www.sublimetext.com/docs/themes.html
{
	"variables":
	{
		"yellow":"rgb(255,255,0)"
	},
	"globals":{
		"find_highlight": "yellow",  
		"selection_border_width": "2"
	},
	"rules":
	[
		
	]
}

- "highlight"
    The border color for "other" matches when the Highlight matches option is selected in the Find panel. Also used to highlight matches in Find in Files results. 
- "find_highlight"
    The background color of text matched by the Find panel 
- "find_highlight_foreground"
    A color that will override the scope-based text color of text matched by the Find panel 
- "scroll_highlight" 4050
    The color search result positions drawn on top of the scroll bar. 
- "scroll_selected_highlight" 4050
    The color of the selected search result position drawn on top of the scroll bar. 

官方文档:https://www.sublimetext.com/docs/color_schemes.html#global_settings-find

标签:背景色,color,text,默认,scroll,Sublime3,highlight,find,Find
来源: https://blog.csdn.net/default7/article/details/118654436