-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMonoCode.tmTheme
More file actions
88 lines (82 loc) · 2.27 KB
/
Copy pathMonoCode.tmTheme
File metadata and controls
88 lines (82 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
<dict>
<key>name</key>
<string>Black Text Only</string>
<key>settings</key>
<array>
<!-- 默认文本 -->
<dict>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#000000</string>
<key>background</key>
<string>#FFFFFF</string>
</dict>
</dict>
<!-- 关键字 -->
<dict>
<key>name</key>
<string>Keyword</string>
<key>scope</key>
<string>keyword.control, keyword.other</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
</dict>
</dict>
<!-- 函数名 -->
<dict>
<key>name</key>
<string>Function</string>
<key>scope</key>
<string>entity.name.function, support.function</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
</dict>
</dict>
<!-- 变量名 -->
<dict>
<key>name</key>
<string>Variable</string>
<key>scope</key>
<string>variable</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
</dict>
</dict>
<!-- 符号 -->
<dict>
<key>name</key>
<string>Punctuation</string>
<key>scope</key>
<string>punctuation</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#4D4D4D</string>
</dict>
</dict>
<!-- 注释 -->
<dict>
<key>name</key>
<string>Comment</string>
<key>scope</key>
<string>comment.line, comment.block</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>italic</string>
<key>foreground</key>
<string>#A0A0A0</string>
</dict>
</dict>
</array>
</dict>
</plist>