Keil修改配色文件【vscode配色】

Keil修改配色文件【vscode配色】

找到目录:\Keil_v5\UV4\
文件名:global.prop
替换原有文件即可。

配色方案如下所示:
Keil修改配色文件【vscode配色】_第1张图片
对于老版的keil,配色文件后缀为.prop:
global.prop文件内容如下:

# properties for all file types
indent.automatic=1
virtual.space=0
view.whitespace=0
view.endofline=0
code.page=65001
caretline.visible=1
highlight.matchingbraces=1
print.syntax.coloring=1
use.tab.color=1
create.backup.files=0
auto.load.ext.modfiles=0
save.prj.before.dbg=0
save.files.before.dbg=0
function.scanner.project=1
function.scanner.files=1
function.scanner.modules=1

# properties for c/cpp files
syntax.colouring.cpp=1
use.tab.cpp=0
tabsize.cpp=2
line.margin.visible.cpp=1
fold.cpp=1
monospaced.font.cpp=1

# properties for asm files
syntax.colouring.asm=1
use.tab.asm=0
tabsize.asm=4
line.margin.visible.asm=1
monospaced.font.asm=1

# properties for other files
use.tabs=0
tabsize=4
line.margin.visible.txt=0
monospaced.font.txt=1

# setting for code completion and syntax check
cc.autolist=1
cc.highlightsyntax=1
cc.showparameters=1
cc.triggerlist=0
cc.triggernumchars=3

# autosave for editor files
autosave=0
autosave.interval=5


# Specification for text selection and caret line
selection.fore=#FFFFFF
selection.back=#C0C0C0
caret.fore=#FFFFFF
caret.back=#505050

# C/C++ Editor files
template.cpp="#define","#define |";"#if","#if |\r\n\r\n#endif";\\
    "#include","#include ";"Header","// Header:\r\n// File Name: |\r\n// Author:\r\n// Date:\r\n";\\
    "continue","continue;";"do","do\r\n{\r\n\t// TODO: enter the block content here\r\n\t\r\n\t|\r\n} while ();\r\n";\\
    "enum","enum |\r\n{\r\n\t\r\n};\r\n";"for","for(|;;)\r\n{\r\n}";\\
    "fpointer_type","typedef int (* |F)();\r\n";"function","void function(|)\r\n{\r\n\r\n}\r\n";\\
    "if","if (|)";"ifelse","if (|)\r\n{\r\n}\r\nelse\r\n{\r\n}";\\
    "struct","struct | \r\n{\r\n\r\n};\r\n";"switch","switch (|)\r\n{\r\n\tcase:\r\n\t\tbreak;\r\n\tcase:\r\n\t\tbreak;\r\n\tdefault:\r\n\t\tbreak;\r\n}";\\
    "void","void | ();\r\n";"while","while (|)\r\n{\r\n}";\\
    
font.monospace.cpp=Courier New
style.cpp.32=font:Courier New,size:16,fore:#C0C0C0,back:#1D1D1D,bold
style.cpp.4=font:Courier New,size:16,fore:#12C069,back:#1D1D1D,bold
style.cpp.10=font:Courier New,size:16,fore:#FFFFFF,back:#1D1D1D,bold
style.cpp.1=font:Courier New,size:16,fore:#95BB84,back:#1D1D1D,bold
style.cpp.2=font:Courier New,size:16,fore:#95BB84,back:#1D1D1D,bold
style.cpp.5=font:Courier New,size:16,fore:#EC6FDC,back:#1D1D1D,bold
style.cpp.6=font:Courier New,size:16,fore:#FFAC59,back:#1D1D1D,bold
style.cpp.11=font:Courier New,size:16,fore:#59AFFD,back:#1D1D1D,bold
style.cpp.9=font:Courier New,size:16,fore:#EC6FDC,back:#1D1D1D,bold
style.cpp.7=font:Courier New,size:16,fore:#FFAC59,back:#1D1D1D,bold
style.cpp.34=font:Courier New,size:16,fore:#500000,back:#20FFFF,bold
style.cpp.35=font:Courier New,size:16,fore:#FF0000,back:#FFFFFF,bold
style.cpp.16=font:Courier New,size:16,fore:#B00040,back:#FFFFFF,bold
style.cpp.12=font:Courier New,size:16,fore:#000000,back:#E0C0E0,bold


# Asm Editor files
font.monospace.asm=Courier New
style.asm.32=font:Courier New,size:16,fore:#C0C0C0,back:#1D1D1D,bold
style.asm.1=font:Courier New,size:16,fore:#95BB84,back:#1D1D1D,bold
style.asm.2=font:Courier New,size:16,fore:#FF0000,back:#1D1D1D,bold
style.asm.3=font:Courier New,size:16,fore:#7F007F,back:#1D1D1D,bold
style.asm.4=font:Courier New,size:16,fore:#FFFFFF,back:#1D1D1D,bold
style.asm.5=font:Courier New,size:16,fore:#C0C0C0,back:#1D1D1D,bold
style.asm.6=font:Courier New,size:16,fore:#4B9EE9,back:#1D1D1D,bold
style.asm.7=font:Courier New,size:16,fore:#4B9EE9,back:#1D1D1D,bold
style.asm.9=font:Courier New,size:16,fore:#4B9EE9,back:#1D1D1D,bold
style.asm.10=font:Courier New,size:16,fore:#4B9EE9,back:#1D1D1D,bold
style.asm.11=font:Courier New,size:16,fore:#007F00,back:#1D1D1D,bold
style.asm.12=font:Courier New,size:16,fore:#F000F0,back:#1D1D1D,bold
style.asm.8=font:Courier New,size:16,fore:#46AA03,back:#1D1D1D,bold


# Editor Text files
font.monospace.txt=Courier New
style.txt.32=font:Verdana,size:16,fore:#C0C0C0,back:#1D1D1D



对于新版Keil,配色文件后缀为.prop.def
用记事本打开,找到对应行修改即可

你可能感兴趣的:(STM32)