IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> VSCODE的颜色设置 -> 正文阅读

[开发工具]VSCODE的颜色设置

D:\安装程序\Microsoft VS Code\resources\app\extensions\theme-default\themes,
用vscode打开themes文件, 改成你想要的颜色就可以.你也可修改其他代码类型的颜色.
保存后重启vscode,就大功告成了

找到对应的name及其对应的setting
例如:

"name": "Function declarations",
"settings": {
				"foreground": "#144eee"

++++++++++++++++++++++++++++++++++++
建议设置:
Function declarations----默认"#dcdcaa",改橙色"#ee7d14"
Types declaration and references----默认,浅绿色"#4EC9B0
Types declaration and references, TS grammar specific----默认,浅绿色"#4EC9B0
Control flow / Special keywords----默认"#c586c0",改紫色"#ee14bf"
Variable and parameter name----默认"#9cdcfe",改淡紫色"#e1acee"
Constants and enums----默认"#4fc1ff",改正橙色"#f19b19"
Object keys, TS grammar specific----默认"#9cdcfe"
CSS property value----默认,淡橙色"#CE9178"
Regular expression groups----默认,淡橙色"#CE9178"

+++++++++++++++++++++++++++++++++++++++++++++++++
monokai的设置可以使用,

修改几个地方:

搜索italic,一律删除。
搜索underline,一律删除。
对于需要加粗的部分,使用如下属性字段。

"fontStyle":"bold"

接下来,分别修改各个条目。

"editor.background":"#272822"

默认为#272822,修改为#1e1e1e或者#1e1f1c。

{"name":"Number","scope":"constant.numeric","settings":{"foreground":"#AE81FF"}}

number----默认为#AE81FF,修改为橙色"#ee831f"。添加bold。

{"name":"Built-in constant","scope":"constant.language","settings":{"foreground":"#AE81FF"}}

Built-in constant----默认为#AE81FF,修改为橙色"#ee831f"。

{"name":"User-defined constant","scope":"constant.character, constant.other","settings":{"foreground":"#AE81FF"}}

User-defined constant----默认为#AE81FF,修改为橙色"#ee831f"。

{"name":"Variable","scope":"variable","settings":{"fontStyle":"","foreground":"#F8F8F2"}}

Variable----默认为斜体,去掉斜体。

{"name":"Keyword","scope":"keyword","settings":{"foreground":"#F92672"}}

Keyword----默认#F92672。改为红色#f92638,添加bold。

{"name":"Storage","scope":"storage","settings":{"fontStyle":"","foreground":"#F92672"}}

Storage----默认斜体,去掉斜体。

{"name":"Storage type","scope":"storage.type","settings":{"foreground":"#66D9EF"}}

Storage type----默认斜体,去掉斜体。

{"name":"Class name","scope":"entity.name.type, entity.name.class, entity.name.namespace, entity.name.scope-resolution","settings":{"fontStyle":"underline","foreground":"#A6E22E"}}

Class name----默认下划线,去掉下划线。加bold,

{"name":"Inherited class","scope":"entity.other.inherited-class","settings":{"fontStyle":"italic underline","foreground":"#A6E22E"}}

Inherited class----默认下划线,斜体,去掉下划线,斜体。加bold。

{"name":"Function name","scope":"entity.name.function","settings":{"foreground":"#A6E22E"}}

Function name----默认#A6E22E,去掉斜体。修改为#f0cd0a。

{"name":"Function argument","scope":"variable.parameter","settings":{"fontStyle":"italic","foreground":"#FD971F"}}

Function argument----默认斜体,去掉斜体。修改为#fd1fea,加bold。

{"name":"Library function","scope":"support.function","settings":{"fontStyle":"bold","foreground":"#66D9EF"}},
{"name":"Library constant","scope":"support.constant","settings":{"fontStyle":"bold","foreground":"#66D9EF"}},
{"name":"Library class/type","scope":"support.type, support.class","settings {"fontStyle":"bold","foreground":"#66D9EF"}},
{"name":"Library variable","scope":"support.other.variable","settings":{"fontStyle":"bold"}},

library的元素,颜色可以不变,但是一律加bold。
++++++++++++++++++++++++++++++++++++++++++++++++++++++
light plus的设置可以使用,
按需修改。

  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2021-10-29 13:15:51  更:2021-10-29 13:17:33 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 21:09:31-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码