|
10 | 10 | "blue5": "#0000ff", |
11 | 11 | "blue6": "#6d79de", |
12 | 12 | "blue7":"#21439C", |
| 13 | + "teal": "#297a7a", |
13 | 14 | "green": "#006400", |
14 | 15 | "green2": "#06960e", |
15 | 16 | "grey": "#a9a9a9", |
|
29 | 30 | }, |
30 | 31 | "globals": |
31 | 32 | { |
32 | | - "foreground": "var(purple)", |
| 33 | + "foreground": "var(grey3)", |
33 | 34 | "background": "var(white)", |
34 | 35 | "caret": "var(grey2)", |
35 | 36 | // "invisibles": "var(grey2)", |
|
49 | 50 | }, |
50 | 51 | { |
51 | 52 | "name": "Keyword", |
52 | | - "scope": "keyword, storage", |
53 | | - "foreground": "var(grey3)", |
| 53 | + "scope": "keyword", |
| 54 | + "foreground": "var(blue7)", |
54 | 55 | }, |
55 | 56 | { |
56 | 57 | "name": "Number", |
57 | 58 | "scope": "constant.numeric", |
58 | 59 | "foreground": "var(purple2)", |
59 | 60 | }, |
60 | 61 | { |
| 62 | + // ISE uses variable colors for constants, but let's not. |
61 | 63 | "name": "Built-in constant", |
62 | 64 | "scope": "constant.language", |
63 | 65 | "foreground": "var(blue4)", |
64 | 66 | }, |
65 | 67 | { |
66 | 68 | "name": "Variable", |
67 | | - "scope": "variable.language, variable.other", |
| 69 | + "scope": "variable.other.readwrite, variable.language", |
68 | 70 | "foreground": "var(red2)", |
69 | 71 | }, |
70 | 72 | { |
71 | 73 | "name": "String", |
72 | | - "scope": "string", |
| 74 | + "scope": "string.quoted", |
73 | 75 | "foreground": "var(red)", |
74 | 76 | }, |
75 | 77 | { |
76 | | - "name": "String interpolation", |
77 | | - "scope": "constant.character.escape, string source", |
| 78 | + "name": "String escape", |
| 79 | + "scope": "constant.character.escape", |
78 | 80 | "foreground": "var(purple3)", |
79 | 81 | }, |
80 | | - // { |
81 | | - // "name": "Function name", |
82 | | - // "scope": "entity.name.function, support.function.any-method", |
83 | | - // "foreground": "var(blue5)", |
84 | | - // }, |
85 | | - // { |
86 | | - // "name": "Type name", |
87 | | - // "scope": "entity.name.type", |
88 | | - // "font_style": "underline", |
89 | | - // }, |
| 82 | + { |
| 83 | + "name": "Attribute", |
| 84 | + "scope": "support.function.attribute", |
| 85 | + "foreground": "var(blue3)", |
| 86 | + }, |
| 87 | + { |
| 88 | + "name": "Function name", |
| 89 | + "scope": "entity.name", |
| 90 | + "foreground": "var(purple)", |
| 91 | + }, |
| 92 | + { |
| 93 | + "name": "Type name", |
| 94 | + "scope": "meta.generic-name, support.type, storage.type - punctuation.definition", |
| 95 | + "foreground": "var(teal)", |
| 96 | + }, |
90 | 97 | // { |
91 | 98 | // "name": "Inherited class name", |
92 | 99 | // "scope": "entity.other.inherited-class", |
|
109 | 116 | // "font_style": "italic", |
110 | 117 | // }, |
111 | 118 | { |
112 | | - "name": "Library function", |
113 | | - "scope": "support.function", |
| 119 | + "name": "Command", |
| 120 | + "scope": "support.function, variable.function", |
114 | 121 | "foreground": "var(blue5)", |
115 | 122 | }, |
| 123 | + { |
| 124 | + "name": "CLI option", |
| 125 | + "scope": "variable.parameter.option", |
| 126 | + "foreground": "var(blue7)", |
| 127 | + }, |
| 128 | + { |
| 129 | + "name": "CLI value", |
| 130 | + "scope": "string.unquoted - meta.mapping.key", |
| 131 | + "foreground": "var(purple)", |
| 132 | + }, |
116 | 133 | // { |
117 | 134 | // "name": "Library object", |
118 | 135 | // "scope": "support.class, support.type", |
|
132 | 149 | // "foreground": "var(blue7)", |
133 | 150 | // }, |
134 | 151 | { |
135 | | - "name": "PowerShell: Assignment Operator", |
136 | | - "scope": "keyword.operator.assignment.powershell", |
137 | | - "foreground": "var(grey)", |
| 152 | + "name": "Operator", |
| 153 | + "scope": "keyword.operator, meta.brackets.indexer punctuation.section.brackets", |
| 154 | + "foreground": "var(grey2)", |
| 155 | + }, |
| 156 | + { |
| 157 | + "name": "Argument separator", |
| 158 | + "scope": "punctuation.separator", |
| 159 | + "foreground": "var(grey2)", |
138 | 160 | }, |
139 | 161 | { |
140 | 162 | "name": "Invalid", |
|
146 | 168 | "name": "Invalid trailing whitespace", |
147 | 169 | "scope": "invalid.deprecated.trailing-whitespace", |
148 | 170 | "background": "var(red3)", |
149 | | - } |
150 | | - ] |
| 171 | + }, |
| 172 | + ], |
151 | 173 | } |
0 commit comments