热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

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

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




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



推荐阅读
author-avatar
手机用户2602901563
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有