-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 3.65 KB
/
package.json
File metadata and controls
154 lines (154 loc) · 3.65 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "inline-css-color",
"displayName": "Inline CSS Color",
"description": "Color your inline html style values to match your css theme.",
"version": "2.1.0",
"publisher": "outofsync42",
"license": "MIT",
"repository": {
"type": "GitHub",
"url": "https://github.com/outofsync42/inline-css-color"
},
"icon": "img/icon2.png",
"engines": {
"vscode": "^1.69.0"
},
"categories": [
"Formatters",
"Visualization",
"Other"
],
"activationEvents": [
"onLanguage:php",
"onLanguage:html",
"onLanguage:svelte"
],
"main": "./extension.js",
"contributes": {
"configuration": [
{
"title": "PHP",
"properties": {
"inline-css-color.enablePhpStyle": {
"type": "boolean",
"default": false,
"description": "Enable colorization of style properties found in strings in PHP code."
}
}
},
{
"title": "HTML",
"properties": {
"inline-css-color.enableHtmlCommentStyle": {
"type": "boolean",
"default": false,
"description": "Enable colorization of style properties found in HTML Commented code."
}
}
}
],
"colors": [
{
"id": "inline.css.propertyName",
"description": "Color for inline css property name.",
"defaults": {
"dark": "#9CDCFE",
"light": "#d11515",
"highContrast": "#9CDCFE",
"highContrastLight": "#d11515"
}
},
{
"id": "inline.css.punctuation",
"description": "Color for inline css punctuation.",
"defaults": {
"dark": "#D4D4D4",
"light": "#000000",
"highContrast": "#D4D4D4",
"highContrastLight": "#000000"
}
},
{
"id": "inline.css.supportFunction",
"description": "Color for inline css support functions. ex. rgb()",
"defaults": {
"dark": "#D4D4D4",
"light": "#000000",
"highContrast": "#D4D4D4",
"highContrastLight": "#000000"
}
},
{
"id": "inline.css.valueConstant",
"description": "Color for inline css constant value. ex :none;",
"defaults": {
"dark": "#D4D4D4",
"light": "#0451A5",
"highContrast": "#D4D4D4",
"highContrastLight": "#0451A5"
}
},
{
"id": "inline.css.valueNumeric",
"description": "Color for inline css numeric value. ex. 10 or #FF0000",
"defaults": {
"dark": "#B5CEA8",
"light": "#000000",
"highContrast": "#B5CEA8",
"highContrastLight": "#000000"
}
},
{
"id": "inline.css.valueNumericUnit",
"description": "Color for inline css numeric value. ex. px or %",
"defaults": {
"dark": "#B5CEA8",
"light": "#09885A",
"highContrast": "#B5CEA8",
"highContrastLight": "#09885A"
}
},
{
"id": "inline.css.string",
"description": "Color for inline css string value. ex 'arial'",
"defaults": {
"dark": "#D69D85",
"light": "#A31515",
"highContrast": "#D69D85",
"highContrastLight": "#A31515"
}
},
{
"id": "inline.css.keywordImportant",
"description": "Color for inline css keyword.",
"defaults": {
"dark": "#569CD6",
"light": "#0000ff",
"highContrast": "#569CD6",
"highContrastLight": "#0000ff"
}
}
]
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "14.x",
"@types/vscode": "^1.69.0",
"@vscode/test-electron": "^2.1.3",
"eslint": "^8.14.0",
"glob": "^8.0.1",
"mocha": "^9.2.2",
"typescript": "^4.6.4"
},
"__metadata": {
"id": "f57f5ef0-200a-4eb4-af88-1a0b96d6d8fb",
"publisherDisplayName": "outofsync42",
"publisherId": "5b357866-64ca-4aee-92e0-be55ff869996",
"isPreReleaseVersion": false,
"targetPlatform": "undefined",
"isApplicationScoped": false,
"updated": true,
"preRelease": false
}
}