Atom Editor 主题更改字符指针颜色
Atom Editor theme change the color of character pointer
大家好,我有两个问题。
- 如何更改 Atom 中字符指针的颜色?
- 当我使用查找功能 atom 时,以灰色突出显示所有匹配我的查询的词,这很难看...我如何更改颜色?
在 Atom 中有一种非常简单的方法可以做到这一点。通过 文件 > 打开您的样式表 导航到 styles.less
。在这个文件的底部,会有这样的代码
atom-text-editor::shadow .cursor {
}
这是光标颜色的代码。您可以通过
更改颜色
border-color: //your color here; (yellow stands out well against the darker background)
括号内。
大家好,我有两个问题。
- 如何更改 Atom 中字符指针的颜色?
- 当我使用查找功能 atom 时,以灰色突出显示所有匹配我的查询的词,这很难看...我如何更改颜色?
在 Atom 中有一种非常简单的方法可以做到这一点。通过 文件 > 打开您的样式表 导航到 styles.less
。在这个文件的底部,会有这样的代码
atom-text-editor::shadow .cursor {
}
这是光标颜色的代码。您可以通过
更改颜色border-color: //your color here; (yellow stands out well against the darker background)
括号内。