@lvce-editor/shared-process 0.7.11 → 0.7.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ # Theme Atom One Dark
2
+
3
+ ## Gitpod
4
+
5
+ [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/lvce-editor/theme-atom-one-dark)
6
+
7
+
8
+ ## Credits
9
+
10
+ Extension is based on https://github.com/akamud/vscode-theme-onedark by @akamud (License MIT).
@@ -0,0 +1,154 @@
1
+ {
2
+ "type": "dark",
3
+ "colors": {
4
+ "ActivityBarBackground": "#333842",
5
+ "ActivityBarForeground": "rgba(215, 218, 224, 0.4)",
6
+ "ActivityBarActiveForeground": "#D7DAE0",
7
+
8
+ "BadgeBackground": "rgb(82, 139, 255)",
9
+ "BadgeForeground": "rgb(215, 218, 224)",
10
+
11
+ "ContextMenuBackground": "rgb(53, 59, 69)",
12
+
13
+ "EditorBackGround": "",
14
+ "EditorScrollBarBackground": "rgba(90, 99, 117, 0.5)",
15
+ "EditorCursorBackground": "#528bff",
16
+ "EditorSelectionBackground": "#3e4451",
17
+
18
+ "FocusOutline": "#528bff",
19
+
20
+ "InputBackground": "#1B1D23",
21
+
22
+ "ListActiveSelectionBackground": "#2C313A",
23
+ "ListActiveSelectionForeground": "",
24
+ "ListHoverBackground": "#2C313A66",
25
+ "ListHoverForeground": "",
26
+ "ListInactiveSelectionBackground": "",
27
+ "ListForeground": "rgb(204, 204, 204)",
28
+
29
+ "MainBackground": "#282C34",
30
+
31
+ "MenuBackground": "rgb(53, 59, 69)",
32
+ "MenuItemHoverBackground": "rgb(44, 49, 58)",
33
+
34
+ "PanelBackground": "rgb(40, 44, 52)",
35
+ "PanelBorderTopColor": "",
36
+ "PanelTabActiveForeground": "rgb(231, 231, 231)",
37
+ "PanelTabForeground": "rgba(231, 231, 231, 0.6)",
38
+
39
+ "QuickPickBackground": "rgb(33, 37, 43)",
40
+
41
+ "SideBarBackground": "#21252B",
42
+
43
+ "StatusBarBackground": "#21252B",
44
+ "StatusBarBorderTopColor": "transparent",
45
+
46
+ "TabForeground": "rgba(157, 165, 180, 0.6)",
47
+ "TabActiveForeground": "#d7dae0",
48
+ "TabActiveBackground": "#282c34",
49
+ "TabBackground": "#21252b",
50
+
51
+ "TabsBackground": "#21252b",
52
+
53
+ "TitleBarBackground": "#21252B",
54
+ "TitleBarBorderBottomColor": "",
55
+ "TitleBarColor": "",
56
+ "TitleBarColorInactive": "",
57
+
58
+ "TreeItemHoverBackground": "rgba(44, 49, 58, 0.4)"
59
+ },
60
+ "tokenColors": [
61
+ {
62
+ "name": "TagName",
63
+ "foreground": "#E06C75"
64
+ },
65
+ {
66
+ "name": "PunctuationTag",
67
+ "foreground": "#ABB2BF"
68
+ },
69
+ {
70
+ "name": "AttributeName",
71
+ "foreground": "#D19A66"
72
+ },
73
+ {
74
+ "name": "String",
75
+ "foreground": "#98C379"
76
+ },
77
+ {
78
+ "name": "JsonPropertyValueString",
79
+ "foreground": "#98C379"
80
+ },
81
+ {
82
+ "name": "PunctuationString",
83
+ "foreground": "#98C379"
84
+ },
85
+ {
86
+ "name": "CssSelector",
87
+ "foreground": "#D19A66"
88
+ },
89
+ {
90
+ "name": "CssPropertyName",
91
+ "foreground": "#ABB2BF"
92
+ },
93
+ {
94
+ "name": "CssPropertyValue",
95
+ "foreground": "#D19A66"
96
+ },
97
+ {
98
+ "name": "Punctuation",
99
+ "foreground": "#ABB2BF"
100
+ },
101
+ {
102
+ "name": "Keyword",
103
+ "foreground": "#C678DD"
104
+ },
105
+ {
106
+ "name": "Numeric",
107
+ "foreground": "#D19A66"
108
+ },
109
+ {
110
+ "name": "Comment",
111
+ "foreground": "#5C6370"
112
+ },
113
+ {
114
+ "name": "VariableName",
115
+ "foreground": "#ABB2BF"
116
+ },
117
+ {
118
+ "name": "JsonPropertyName",
119
+ "foreground": "#E06C75"
120
+ },
121
+ {
122
+ "name": "LanguageConstant",
123
+ "foreground": "#D19A66"
124
+ },
125
+ {
126
+ "name": "KeywordImport",
127
+ "foreground": "#C678DD"
128
+ },
129
+ {
130
+ "name": "Macro",
131
+ "foreground": "#C678DD"
132
+ },
133
+ {
134
+ "name": "Heading",
135
+ "foreground": "#e06c75"
136
+ },
137
+ {
138
+ "name": "KeywordNew",
139
+ "foreground": "#C678DD"
140
+ },
141
+ {
142
+ "name": "KeywordReturn",
143
+ "foreground": "#C678DD"
144
+ },
145
+ {
146
+ "name": "Text",
147
+ "foreground": "#ABB2BF"
148
+ },
149
+ {
150
+ "name": "PropertyName",
151
+ "foreground": "#E06C75"
152
+ }
153
+ ]
154
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "id": "builtin.theme-atom-one-dark",
3
+ "name": "Atom One Dark Theme",
4
+ "description": "One Dark Theme based on Atom",
5
+ "colorThemes": [
6
+ {
7
+ "id": "atom-one-dark",
8
+ "label": "Atom One Dark",
9
+ "path": "color-theme.json"
10
+ }
11
+ ]
12
+ }
@@ -0,0 +1,10 @@
1
+ # Theme Ayu
2
+
3
+ ## Gitpod
4
+
5
+ [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/lvce-editor/theme-ayu)
6
+
7
+
8
+ ## Credits
9
+
10
+ Extension is based on https://github.com/ayu-theme/vscode-ayu by @dempfi (License MIT)
@@ -0,0 +1,174 @@
1
+ {
2
+ "type": "dark",
3
+ "colors": {
4
+ "ActivityBarBackground": "#f8f9fa",
5
+ "ActivityBarActiveForeground": "#8a9199cc",
6
+ "ActivityBarForeground": "#8a919999",
7
+ "ActivityBarBorder": "#f8f9fa",
8
+
9
+ "BadgeBackground": "#ffaa33",
10
+ "BadgeForeground": "#f8f9fa",
11
+
12
+ "ContextMenuBackground": "rgb(252, 252, 252)",
13
+ "ContextMenuForeground": "rgb(138, 145, 153)",
14
+
15
+ "EditorBackGround": "",
16
+ "EditorScrollBarBackground": "rgba(138, 145, 153, 0.6)",
17
+ "EditorCursorBackground": "#ffaa33",
18
+ "EditorSelectionBackground": "rgba(3, 91, 214, 0.15)",
19
+
20
+ "FocusOutline": "#ffaa33b3",
21
+
22
+ "InputBoxForeground": "rgb(92, 97, 102)",
23
+
24
+ "ListActiveSelectionBackground": "#56728f1f",
25
+ "ListActiveSelectionForeground": "#5c6166",
26
+ "ListHoverBackground": "#56728f1f",
27
+ "ListHoverForeground": "",
28
+ "ListInactiveSelectionBackground": "",
29
+ "ListForeground": "rgb(138, 145, 153)",
30
+
31
+ "MainBackground": "#f8f9fa",
32
+
33
+ "MenuBackground": "rgb(252, 252, 252)",
34
+ "MenuForeground": "rgb(138, 145, 153)",
35
+ "MenuBoxShadow": "rgb(0 0 0 / 15%) 0px 2px 4px",
36
+
37
+ "MenuItemHoverForeground": "rgb(92, 97, 102)",
38
+ "MenuItemHoverBackground": "rgba(86, 114, 143, 0.12)",
39
+
40
+ "PanelBackground": "#f8f9fa",
41
+ "PanelBorderTopColor": "#6b7d8f1f",
42
+ "PanelTabForeground": "rgb(138, 145, 153)",
43
+ "PanelTabActiveForeground": "rgb(92, 97, 102)",
44
+
45
+ "QuickPickBackground": "rgb(243, 244, 245)",
46
+
47
+ "SideBarBackground": "#f8f9fa",
48
+ "SideBarBorder": "#f8f9fa",
49
+ "SideBarForeground": "rgb(138, 145, 153)",
50
+
51
+ "StatusBarBackground": "#f8f9fa",
52
+ "StatusBarForeground": "#8a9199",
53
+ "StatusBarBorderTopColor": "#f8f9fa",
54
+
55
+ "TabForeground": "rgb(138, 145, 153)",
56
+ "TabActiveForeground": "rgb(92, 97, 102)",
57
+ "TabActiveBackground": "",
58
+ "TabInactiveBackground": "",
59
+
60
+ "TitleBarBackground": "",
61
+ "TitleBarBorderBottomColor": "",
62
+ "TitleBarForeground": "#8a9199",
63
+ "TitleBarColorInactive": "",
64
+ "TitleBarItemHoverForeground": "rgba(0, 0, 0, 0.1)",
65
+
66
+ "TreeItemForeground": "#8a9199"
67
+ },
68
+ "tokenColors": [
69
+ {
70
+ "name": "CssSelector",
71
+ "foreground": "#f2ae49"
72
+ },
73
+ {
74
+ "name": "CssPropertyName",
75
+ "foreground": "#55b4d4"
76
+ },
77
+ {
78
+ "name": "CssPropertyValue",
79
+ "foreground": "#ed9366"
80
+ },
81
+ {
82
+ "name": "TagName",
83
+ "foreground": "#55b4d4"
84
+ },
85
+ {
86
+ "name": "PunctuationTag",
87
+ "foreground": "rgba(85, 180, 212, 0.5)"
88
+ },
89
+ {
90
+ "name": "AttributeName",
91
+ "foreground": "#f2ae49"
92
+ },
93
+ {
94
+ "name": "String",
95
+ "foreground": "#86B300"
96
+ },
97
+ {
98
+ "name": "JsonPropertyValueString",
99
+ "foreground": "#86B300"
100
+ },
101
+ {
102
+ "name": "PunctuationString",
103
+ "foreground": "#86b300"
104
+ },
105
+ {
106
+ "name": "JsonPropertyName",
107
+ "foreground": "#55B4D4"
108
+ },
109
+ {
110
+ "name": "Punctuation",
111
+ "foreground": "#5C6166B3"
112
+ },
113
+ {
114
+ "name": "LanguageConstant",
115
+ "foreground": "#A37ACC"
116
+ },
117
+ {
118
+ "name": "VariableName",
119
+ "foreground": "#5c6166"
120
+ },
121
+ {
122
+ "name": "KeywordImport",
123
+ "foreground": "#FA8D3E"
124
+ },
125
+ {
126
+ "name": "Text",
127
+ "foreground": "#5c6166"
128
+ },
129
+ {
130
+ "name": "Comment",
131
+ "foreground": "#787B8099"
132
+ },
133
+ {
134
+ "name": "Keyword",
135
+ "foreground": "#fa8d3e"
136
+ },
137
+ {
138
+ "name": "Numeric",
139
+ "foreground": "#a37acc"
140
+ },
141
+ {
142
+ "name": "Type",
143
+ "foreground": "#399ee6"
144
+ },
145
+ {
146
+ "name": "Regex",
147
+ "foreground": "#4CBF99"
148
+ },
149
+ {
150
+ "name": "Parameter",
151
+ "foreground": "#a37acc"
152
+ },
153
+ {
154
+ "name": "Function",
155
+ "foreground": "#f2ae49"
156
+ },
157
+ {
158
+ "name": "KeywordControl",
159
+ "foreground": "#FA8D3E"
160
+ },
161
+ {
162
+ "name": "Heading",
163
+ "foreground": "#86b300"
164
+ },
165
+ {
166
+ "name": "VariableName",
167
+ "foreground": "#a37acc"
168
+ },
169
+ {
170
+ "name": "KeywordReturn",
171
+ "foreground": "#fa8d3e"
172
+ }
173
+ ]
174
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "id": "builtin.theme-ayu",
3
+ "name": "Ayu Theme",
4
+ "description": "A simple theme with bright colors and comes in three versions — dark, light and mirage for all day long comfortable work.",
5
+ "colorThemes": [
6
+ {
7
+ "id": "ayu",
8
+ "label": "Ayu",
9
+ "path": "color-theme.json"
10
+ }
11
+ ]
12
+ }
@@ -0,0 +1,9 @@
1
+ # Theme High Contrast
2
+
3
+ ## Gitpod
4
+
5
+ [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/lvce-editor/theme-ayu)
6
+
7
+ ## Credits
8
+
9
+ Extension is based on https://github.com/microsoft/vscode/blob/main/extensions/theme-defaults/themes/hc_black.json by Microsoft (License MIT)
@@ -0,0 +1,86 @@
1
+ {
2
+ "type": "high-contrast",
3
+ "colors": {
4
+ "ActivityBarBackground": "#000000",
5
+ "ActivityBarActiveForeground": "#ffffff",
6
+ "ActivityBarForeground": "#ffffff",
7
+
8
+ "BadgeBackground": "",
9
+ "BadgeForeground": "",
10
+
11
+ "ContextMenuBackground": "",
12
+ "ContextMenuForeground": "",
13
+
14
+ "ContrastBorder": "#6FC3DF",
15
+
16
+ "EditorBackGround": "",
17
+ "EditorScrollBarBackground": "rgba(111, 195, 223, 0.6)",
18
+ "EditorCursorBackground": "#ffffff",
19
+ "EditorSelectionBackground": "#ffffff",
20
+
21
+ "FocusOutline": "",
22
+
23
+ "InputBoxBackground": "",
24
+ "InputBoxForeground": "",
25
+
26
+ "ListActiveSelectionBackground": "#444",
27
+ "ListActiveSelectionForeground": "",
28
+ "ListHoverBackground": "#444",
29
+ "ListHoverForeground": "",
30
+ "ListInactiveSelectionBackground": "",
31
+ "ListForeground": "#ffffff",
32
+
33
+ "MainBackground": "#000000",
34
+
35
+ "PanelBackground": "#000000",
36
+ "PanelBorderTopColor": "",
37
+
38
+ "QuickPickBackground": "#000000",
39
+ "QuickPickInputBackground": "",
40
+
41
+ "SideBarBackground": "#000000",
42
+
43
+ "StatusBarBackground": "#000000",
44
+ "StatusBarBorderTopColor": "",
45
+
46
+ "TabActiveForeground": "rgb(255, 255, 255)",
47
+ "TabForeground": "rgb(255, 255, 255)",
48
+ "TabActiveBackground": "",
49
+ "TabInactiveBackground": "",
50
+
51
+ "TitleBarBackground": "#000000",
52
+ "TitleBarBorderBottomColor": "",
53
+ "TitleBarColor": "",
54
+ "TitleBarColorInactive": ""
55
+ },
56
+ "tokenColors": [
57
+ {
58
+ "name": "CssSelector",
59
+ "foreground": "#3AD900"
60
+ },
61
+ {
62
+ "name": "Type",
63
+ "foreground": "#4EC9B0"
64
+ },
65
+ {
66
+ "name": "Keyword",
67
+ "foreground": "#569CD6"
68
+ },
69
+ {
70
+ "name": "Comment",
71
+ "foreground": "#7CA668"
72
+ },
73
+ {
74
+ "name": "KeywordImport",
75
+ "foreground": "#C586C0"
76
+ },
77
+ {
78
+ "name": "VariableName",
79
+ "foreground": "#9CDCFE"
80
+ },
81
+ {
82
+ "name": "KeywordControl",
83
+ "foreground": "#C586C0"
84
+ }
85
+ ]
86
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "id": "builtin.high-contrast-theme",
3
+ "name": "High Contrast Theme",
4
+ "colorThemes": [
5
+ {
6
+ "id": "high-contrast",
7
+ "label": "High Contrast",
8
+ "path": "color-theme.json"
9
+ }
10
+ ]
11
+ }
@@ -0,0 +1,10 @@
1
+ # Theme Monokai
2
+
3
+ ## Gitpod
4
+
5
+ [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/lvce-editor/theme-monokai)
6
+
7
+
8
+ ## Credits
9
+
10
+ Extension is based on https://github.com/microsoft/vscode/tree/main/extensions/theme-monokai by Microsoft (License MIT) which itself is based on https://github.com/Colorsublime/Colorsublime-Themes by @Colorsublime (License MIT)
@@ -0,0 +1,121 @@
1
+ {
2
+ "type": "dark",
3
+ "colors": {
4
+ "ActivityBarBackground": "#272822",
5
+ "ActivityBarForeground": "rgba(248, 248, 242, 0.4)",
6
+ "ActivityBarActiveForeground": "#f8f8f2",
7
+
8
+ "BadgeBackground": "rgb(0, 122, 204)",
9
+ "BadgeForeground": "#fff",
10
+
11
+ "MenuBackground": "rgb(30, 31, 28)",
12
+
13
+ "EditorBackGround": "",
14
+ "EditorScrollBarBackground": "",
15
+ "EditorCursorBackground": "white",
16
+ "EditorSelectionBackground": "rgba(135, 139, 145, 0.25)",
17
+
18
+ "InputBackground": "#414339",
19
+
20
+ "ListActiveSelectionBackground": "#414339",
21
+ "ListActiveSelectionForeground": "#fff",
22
+ "ListHoverBackground": "#3e3d32",
23
+ "ListHoverForeground": "",
24
+ "ListInactiveSelectionBackground": "#414339",
25
+ "ListForeground": "rgb(204, 204, 204)",
26
+
27
+ "MainBackground": "#272822",
28
+
29
+ "PanelBackground": "",
30
+ "PanelBorderTopColor": "",
31
+
32
+ "QuickPickBackground": "#1e1f1c",
33
+
34
+ "SideBarBackground": "#1e1f1c",
35
+
36
+ "StatusBarBackground": "#414339",
37
+ "StatusBarBorderTopColor": "",
38
+
39
+ "TabActiveForeground": "white",
40
+ "TabForeground": "rgb(204, 204, 199)",
41
+ "TabActiveBackground": "rgb(39, 40, 34)",
42
+ "TabBackground": "rgb(52, 53, 47)",
43
+
44
+ "TabsBackground": "rgb(30, 31, 28)",
45
+
46
+ "TitleBarBackground": "rgb(30, 31, 28)",
47
+ "TitleBarBorderBottomColor": "",
48
+ "TitleBarColor": "",
49
+ "TitleBarColorInactive": ""
50
+ },
51
+ "tokenColors": [
52
+ {
53
+ "name": "CssSelector",
54
+ "foreground": ""
55
+ },
56
+ {
57
+ "name": "CssPropertyName",
58
+ "foreground": ""
59
+ },
60
+ {
61
+ "name": "CssPropertyValue",
62
+ "foreground": ""
63
+ },
64
+ {
65
+ "name": "TagName",
66
+ "foreground": ""
67
+ },
68
+ {
69
+ "name": "AttributeName",
70
+ "foreground": ""
71
+ },
72
+ {
73
+ "name": "String",
74
+ "foreground": "#CFCFC2"
75
+ },
76
+ {
77
+ "name": "JsonPropertyValueString",
78
+ "foreground": "#CFCFC2"
79
+ },
80
+ {
81
+ "name": "PunctuationString",
82
+ "foreground": ""
83
+ },
84
+ {
85
+ "name": "JsonPropertyName",
86
+ "foreground": "#66D9EF"
87
+ },
88
+ {
89
+ "name": "Numeric",
90
+ "foreground": "#ae81ff"
91
+ },
92
+ {
93
+ "name": "Heading",
94
+ "foreground": "#a6e22e"
95
+ },
96
+ {
97
+ "name": "CssSelector",
98
+ "foreground": "#a6e22e"
99
+ },
100
+ {
101
+ "name": "CssPropertyName",
102
+ "foreground": "#66d9ef"
103
+ },
104
+ {
105
+ "name": "TagName",
106
+ "foreground": "#f92672"
107
+ },
108
+ {
109
+ "name": "AttributeName",
110
+ "foreground": "#a6e22e"
111
+ },
112
+ {
113
+ "name": "Comment",
114
+ "foreground": "#88846f"
115
+ },
116
+ {
117
+ "name": "LanguageConstant",
118
+ "foreground": "#ae81ff"
119
+ }
120
+ ]
121
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "id": "builtin.theme-monokai",
3
+ "name": "Monokai Theme",
4
+ "colorThemes": [
5
+ {
6
+ "id": "monokai",
7
+ "label": "Monokai",
8
+ "path": "color-theme.json"
9
+ }
10
+ ]
11
+ }
@@ -0,0 +1,10 @@
1
+ # Theme Palenight
2
+
3
+ ## Gitpod
4
+
5
+ [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/lvce-editor/theme-palenight)
6
+
7
+
8
+ ## Credits
9
+
10
+ Extension is based on https://github.com/whizkydee/vscode-palenight-theme by @whizkydee (License MIT)
@@ -0,0 +1,161 @@
1
+ {
2
+ "type": "dark",
3
+ "colors": {
4
+ "ActivityBarBackground": "#282C3D",
5
+ "ActivityBarActiveForeground": "#eeffff",
6
+ "ActivityBarForeground": "rgba(238, 255, 255, 0.4)",
7
+
8
+ "BadgeBackground": "#7e57c2",
9
+ "BadgeForeground": "#ffffff",
10
+
11
+ "ContextMenuBackground": "rgb(41, 45, 62)",
12
+ "ContextMenuForeground": "rgba(255, 255, 255, 0.8)",
13
+
14
+ "EditorBackground": "",
15
+ "EditorScrollBarBackground": "",
16
+ "EditorCursorBackground": "#7e57c2",
17
+ "EditorSelectionBackground": "rgba(117, 128, 184, 0.31)",
18
+
19
+ "FocusOutline": "",
20
+
21
+ "InputBoxForeground": "rgba(255, 255, 255, 0.8)",
22
+
23
+ "ListActiveSelectionBackground": "#7e57c2",
24
+ "ListActiveSelectionForeground": "",
25
+ "ListHoverBackground": "#0000001a",
26
+ "ListHoverForeground": "",
27
+ "ListInactiveSelectionBackground": "",
28
+ "ListForeground": "rgb(255, 255, 255)",
29
+
30
+ "MainBackground": "#292D3E",
31
+
32
+ "MenuBackground": "rgb(41, 45, 62)",
33
+ "MenuItemHoverBackground": "rgb(126, 87, 194)",
34
+
35
+ "PanelBackground": "#292D3E",
36
+ "PanelBorderTopColor": "#282B3C",
37
+
38
+ "QuickPickBackground": "rgb(49, 54, 74)",
39
+
40
+ "SideBarBackground": "#292D3E",
41
+ "SideBarBorder": "#282B3C",
42
+
43
+ "StatusBarBackground": "#282C3D",
44
+ "StatusBarForeground": "",
45
+ "StatusBarBorderTopColor": "",
46
+
47
+ "TabActiveBackground": "rgb(41, 45, 62)",
48
+ "TabActiveForeground": "rgb(238, 255, 255)",
49
+ "TabForeground": "rgb(146, 154, 201)",
50
+ "TabInactiveBackground": "",
51
+
52
+ "TabsBackground": "rgb(49, 54, 74)",
53
+
54
+ "TitleBarBackground": "#292d3e",
55
+ "TitleBarBorderBottomColor": "",
56
+ "TitleBarColor": "",
57
+ "TitleBarColorInactive": "rgba(204, 204, 204, 0.6)"
58
+ },
59
+ "tokenColors": [
60
+ {
61
+ "name": "CssSelector",
62
+ "foreground": ""
63
+ },
64
+ {
65
+ "name": "CssPropertyName",
66
+ "foreground": ""
67
+ },
68
+ {
69
+ "name": "CssPropertyValue",
70
+ "foreground": ""
71
+ },
72
+ {
73
+ "name": "TagName",
74
+ "foreground": ""
75
+ },
76
+ {
77
+ "name": "PunctuationTag",
78
+ "foreground": ""
79
+ },
80
+ {
81
+ "name": "AttributeName",
82
+ "foreground": ""
83
+ },
84
+ {
85
+ "name": "String",
86
+ "foreground": "#c3e88d"
87
+ },
88
+ {
89
+ "name": "PunctuationString",
90
+ "foreground": ""
91
+ },
92
+ {
93
+ "name": "JsonPropertyName",
94
+ "foreground": "#C3E88D"
95
+ },
96
+ {
97
+ "name": "Keyword",
98
+ "foreground": "#C792EA"
99
+ },
100
+ {
101
+ "name": "LanguageConstant",
102
+ "foreground": "#FF5874"
103
+ },
104
+ {
105
+ "name": "VariableName",
106
+ "foreground": "#82AAFF"
107
+ },
108
+ {
109
+ "name": "KeywordImport",
110
+ "foreground": "#C792EA"
111
+ },
112
+ {
113
+ "name": "Macro",
114
+ "foreground": "#C792EA"
115
+ },
116
+ {
117
+ "name": "Comment",
118
+ "foreground": "#697098"
119
+ },
120
+ {
121
+ "name": "Numeric",
122
+ "foreground": "#f78c6c"
123
+ },
124
+ {
125
+ "name": "TagName",
126
+ "foreground": "#ff5572"
127
+ },
128
+ {
129
+ "name": "AttributeName",
130
+ "foreground": "#ffcb6b"
131
+ },
132
+ {
133
+ "name": "Heading",
134
+ "foreground": "#82b1ff"
135
+ },
136
+ {
137
+ "name": "CssPropertyName",
138
+ "foreground": "#80cbc4"
139
+ },
140
+ {
141
+ "name": "CssSelector",
142
+ "foreground": "#ff5572"
143
+ },
144
+ {
145
+ "name": "Query",
146
+ "foreground": "#c792ea"
147
+ },
148
+ {
149
+ "name": "KeywordReturn",
150
+ "foreground": "#C792EA"
151
+ },
152
+ {
153
+ "name": "Text",
154
+ "foreground": "#bfc7d5"
155
+ },
156
+ {
157
+ "name": "JsonPropertyName",
158
+ "foreground": "#80cbc4"
159
+ }
160
+ ]
161
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "id": "builtin.theme-palenight",
3
+ "name": "Palenight Theme",
4
+ "description": "An elegant and juicy material-inspired theme for Visual Studio Code.",
5
+ "colorThemes": [
6
+ {
7
+ "id": "palenight",
8
+ "label": "Palenight",
9
+ "path": "color-theme.json"
10
+ }
11
+ ]
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/shared-process",
3
- "version": "0.7.11",
3
+ "version": "0.7.12",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -20,8 +20,8 @@
20
20
  "node": ">=16"
21
21
  },
22
22
  "dependencies": {
23
- "@lvce-editor/extension-host": "0.7.11",
24
- "@lvce-editor/pty-host": "0.7.11",
23
+ "@lvce-editor/extension-host": "0.7.12",
24
+ "@lvce-editor/pty-host": "0.7.12",
25
25
  "chokidar": "^3.5.3",
26
26
  "debug": "^4.3.4",
27
27
  "execa": "^6.1.0",