Typora的高亮颜色设置
【Typora】=>【偏好设置】=>【外观】中找到【打开主题文件】(或者快捷键Command+逗号
在github.css文件最后增加如下内容:
mark {
background: #DC143C; /* #DC143C 代表红色 */
border-bottom: 0px solid #ffffff; /* 这里是字体颜色,也可以更改 */
padding: 0.0px;
margin: 0 0px;
}
快捷键设置
- 打开typora -> 文件 -> 偏好设置 -> 通用 -> 打开高级设置。
- 用文本编辑器打开文件夹中的 conf.user.json文件。
- 在keyBinding添加响应的快捷键操作,(或者将原来的快捷键注释符号去掉也可)
- "keyBinding": {
// for example:
// "Always on Top": "Ctrl+Shift+P"
// All other options are the menu items 'text label' displayed from each typora menu
"Highlight": "Ctrl + q"
},