zedx 0.1.0
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.
- package/LICENSE +201 -0
- package/README.md +28 -0
- package/dist/generator.d.ts +2 -0
- package/dist/generator.js +37 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +71 -0
- package/dist/prompts.d.ts +6 -0
- package/dist/prompts.js +116 -0
- package/dist/templates/base/extension.toml.ejs +7 -0
- package/dist/templates/base/licenses/Apache-2.0 +201 -0
- package/dist/templates/base/licenses/BSD-2-Clause +24 -0
- package/dist/templates/base/licenses/BSD-3-Clause +28 -0
- package/dist/templates/base/licenses/GPL-3.0 +674 -0
- package/dist/templates/base/licenses/LGPL-3.0 +163 -0
- package/dist/templates/base/licenses/MIT +21 -0
- package/dist/templates/base/licenses/Zlib +21 -0
- package/dist/templates/theme/theme.json.ejs +302 -0
- package/dist/types/index.d.ts +16 -0
- package/dist/types/index.js +1 -0
- package/package.json +53 -0
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 29 June 2007
|
|
3
|
+
|
|
4
|
+
Copyright (C) {{YEAR}} {{AUTHOR}}
|
|
5
|
+
Everyone is permitted to copy and distribute verbatim copies
|
|
6
|
+
of this license document, but changing it is not allowed.
|
|
7
|
+
|
|
8
|
+
This version of the GNU Lesser General Public License incorporates
|
|
9
|
+
the terms and conditions of version 3 of the GNU General Public
|
|
10
|
+
License, supplemented by the additional permissions listed below.
|
|
11
|
+
|
|
12
|
+
0. Additional Definitions.
|
|
13
|
+
|
|
14
|
+
As used herein, "this License" refers to version 3 of the GNU Lesser
|
|
15
|
+
General Public License, and the "GNU GPL" refers to version 3 of the
|
|
16
|
+
GNU General Public License.
|
|
17
|
+
|
|
18
|
+
"The Library" refers to a covered work governed by this License,
|
|
19
|
+
other than an Application or a Combined Work as defined below.
|
|
20
|
+
|
|
21
|
+
An "Application" is any work that makes use of an interface provided
|
|
22
|
+
by the Library, but which is not otherwise based on the Library.
|
|
23
|
+
Defining a subclass of a class defined by the Library is deemed a
|
|
24
|
+
mode of using an interface provided by the Library.
|
|
25
|
+
|
|
26
|
+
A "Combined Work" is a work produced by combining or linking an
|
|
27
|
+
Application with the Library, but as opposed to using the Library,
|
|
28
|
+
is not governed by this License. The "Corresponding Source" for a
|
|
29
|
+
Combined Work means Corresponding Source for the Combined Work,
|
|
30
|
+
excluding any source code for parts of the Combined Work that,
|
|
31
|
+
considered in isolation, are based on the Application, and not on
|
|
32
|
+
the Library being linked with.
|
|
33
|
+
|
|
34
|
+
"Corresponding Source" for a work in object code form means all
|
|
35
|
+
the source code needed to generate, install, and (for an executable
|
|
36
|
+
work) run the object code and to modify the work, including scripts to
|
|
37
|
+
control those activities. However, it does not include the work's
|
|
38
|
+
System Libraries, or general-purpose tools or generally available free
|
|
39
|
+
programs which are used unmodified in performing those activities but
|
|
40
|
+
which are not part of the work. For example, Corresponding Source
|
|
41
|
+
includes interface definition files associated with source files for
|
|
42
|
+
the work, and the source code for shared libraries and dynamically
|
|
43
|
+
linked subprograms that the work is specifically designed to require,
|
|
44
|
+
such as by intimate data communication or control flow between those
|
|
45
|
+
subprograms and other parts of the work.
|
|
46
|
+
|
|
47
|
+
The Corresponding Source need not include anything that users
|
|
48
|
+
can regenerate automatically from other parts of the Corresponding
|
|
49
|
+
Source.
|
|
50
|
+
|
|
51
|
+
1. Exception to Section 3 of the GNU GPL.
|
|
52
|
+
|
|
53
|
+
You may convey a covered work under sections 3 and 4 of this License
|
|
54
|
+
without being bound by section 3 of the GNU GPL.
|
|
55
|
+
|
|
56
|
+
2. Conveying Modified Versions.
|
|
57
|
+
|
|
58
|
+
If you modify a copy of the Library, and, in your modifications, a
|
|
59
|
+
facility refers to a function or data to be supplied by an Application
|
|
60
|
+
that uses the facility (other than as an argument passed when the
|
|
61
|
+
facility is invoked), then you may convey a copy of the modified
|
|
62
|
+
version:
|
|
63
|
+
|
|
64
|
+
a) under this License, provided that you make clear to the recipients
|
|
65
|
+
that the Library is used in your modification, and provide them with
|
|
66
|
+
information reasonably sufficient to locate the modified Library; or
|
|
67
|
+
|
|
68
|
+
b) under the GNU GPL, with the complete machine-readable "work that
|
|
69
|
+
uses the Library", as object code and/or source code, so that the
|
|
70
|
+
recipients can relink or recompile the application with the modified
|
|
71
|
+
Library. (Alternative conveying of the Library may be in the form of
|
|
72
|
+
source code or object code, with accompanying scripts to recompile.)
|
|
73
|
+
|
|
74
|
+
The information you provide must include a copy of this License and
|
|
75
|
+
the notice required by section 4 of the GNU GPL. You must make the
|
|
76
|
+
modified Library available in source code form, under the terms of
|
|
77
|
+
sections 1 and 2 above, on a medium customarily used for software
|
|
78
|
+
interchange.
|
|
79
|
+
|
|
80
|
+
3. Combined Libraries.
|
|
81
|
+
|
|
82
|
+
You may place library facilities that are a work based on the
|
|
83
|
+
Library side by side in a single library together with other library
|
|
84
|
+
facilities that are not Applications and are not covered by this
|
|
85
|
+
License, and convey such a combined library under terms of your
|
|
86
|
+
choice, if you do both of the following:
|
|
87
|
+
|
|
88
|
+
a) Accompany the combined library with a copy of the same work based
|
|
89
|
+
on the Library, uncombined with any other library facilities,
|
|
90
|
+
conveyed under the terms of this License.
|
|
91
|
+
|
|
92
|
+
b) Give prominent notice with the combined library that part of it
|
|
93
|
+
is a work based on the Library, and explaining where to find the
|
|
94
|
+
accompanying uncombined form of the same work.
|
|
95
|
+
|
|
96
|
+
4. Revised Versions of the GNU Lesser General Public License.
|
|
97
|
+
|
|
98
|
+
The Free Software Foundation may publish revised and/or new versions of
|
|
99
|
+
the GNU Lesser General Public License from time to time. Such new
|
|
100
|
+
versions will be similar in spirit to the present version, but may
|
|
101
|
+
differ in detail to address new problems or concerns.
|
|
102
|
+
|
|
103
|
+
Each version is given a distinguishing version number. If the
|
|
104
|
+
Library specifies that a certain numbered version of the GNU Lesser
|
|
105
|
+
General Public License "or any later version" applies to it, you have
|
|
106
|
+
the option of following the terms and conditions either of that
|
|
107
|
+
published version or of any later version published by the Free
|
|
108
|
+
Software Foundation. If the Library does not specify a license
|
|
109
|
+
version number, you may choose any version ever published by the
|
|
110
|
+
Free Software Foundation.
|
|
111
|
+
|
|
112
|
+
5. If you modify a copy of the Library, or any portion of it,
|
|
113
|
+
or any derivative work, and you wish to prevent others from using
|
|
114
|
+
your derivative work on a different basis (for example, charging a
|
|
115
|
+
fee for the act of linking your derivative work to the Library), you
|
|
116
|
+
must provide adequate information, in a prominent and clearly
|
|
117
|
+
accessible place in the modified Library, that gives adequate notice
|
|
118
|
+
of your right to prevent use of your modified version for those
|
|
119
|
+
users. This must include a copy of this License (with the text
|
|
120
|
+
as modified, as needed) and any additional terms you choose to
|
|
121
|
+
offer, in the manner described in section 4 above.
|
|
122
|
+
|
|
123
|
+
This License includes the complete Library, together with any
|
|
124
|
+
other software, documentation, and other data provided in connection
|
|
125
|
+
with the Library, in a volume usable within a system, and provides
|
|
126
|
+
permissions for the use of that volume on a different basis,
|
|
127
|
+
as described in section 2 above. It also provides permissions
|
|
128
|
+
to modify or combine the Library with other software, and to copy
|
|
129
|
+
and distribute the resulting combined library under the terms
|
|
130
|
+
of your choice, provided that you also meet all of these conditions:
|
|
131
|
+
|
|
132
|
+
a) The combined library must contain prominent notice that it is
|
|
133
|
+
based on this Library, and explaining where to find the
|
|
134
|
+
accompanying uncombined form of the same Library.
|
|
135
|
+
|
|
136
|
+
b) The combined library must be accompanied by a copy of this
|
|
137
|
+
License (with the text as modified, as needed) and any notices
|
|
138
|
+
required by section 4 of the GNU GPL.
|
|
139
|
+
|
|
140
|
+
c) You must not impose any further restrictions on the exercise of
|
|
141
|
+
the rights granted or affirmed under this License. For example,
|
|
142
|
+
you may not impose a license fee, royalty, or other charge for the
|
|
143
|
+
exercise of rights granted under this License for the combined
|
|
144
|
+
library.
|
|
145
|
+
|
|
146
|
+
d) If the combined library is used to provide facilities for a
|
|
147
|
+
product or service, you must give recipients of the combined
|
|
148
|
+
library notice that it is a derivative of the Library, and offer
|
|
149
|
+
them the terms of this License in connection with the entire
|
|
150
|
+
combined library.
|
|
151
|
+
|
|
152
|
+
NO WARRANTY
|
|
153
|
+
|
|
154
|
+
THIS LIBRARY IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
|
|
155
|
+
EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
156
|
+
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
157
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
158
|
+
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
159
|
+
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
160
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
161
|
+
LIBRARY.
|
|
162
|
+
|
|
163
|
+
END OF TERMS AND CONDITIONS
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) {{YEAR}} {{AUTHOR}}
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
zlib License
|
|
2
|
+
|
|
3
|
+
Copyright (c) {{YEAR}} {{AUTHOR}}
|
|
4
|
+
|
|
5
|
+
This software is provided 'as-is', without any express or implied
|
|
6
|
+
warranty. In no event will the authors be held liable for any damages
|
|
7
|
+
arising from the use of this software.
|
|
8
|
+
|
|
9
|
+
Permission is granted to anyone to use this software for any purpose,
|
|
10
|
+
including commercial applications, and to alter it and redistribute it
|
|
11
|
+
freely, subject to the following restrictions:
|
|
12
|
+
|
|
13
|
+
1. The origin of this software must not be misrepresented; you must not
|
|
14
|
+
claim that you wrote the original software. If you use this software
|
|
15
|
+
in a product, an acknowledgment in the product documentation would be
|
|
16
|
+
appreciated but is not required.
|
|
17
|
+
|
|
18
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
|
19
|
+
misrepresented as being the original software.
|
|
20
|
+
|
|
21
|
+
3. This notice may not be removed or altered from any source distribution.
|
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://zed.dev/schema/themes/v0.2.0.json",
|
|
3
|
+
"name": "<%= themeName %>",
|
|
4
|
+
"author": "<%= author %>",
|
|
5
|
+
"themes": [
|
|
6
|
+
<% appearances.forEach((app, index) => { %>
|
|
7
|
+
{
|
|
8
|
+
"name": "<%= themeName %> <%= app === 'dark' ? 'Dark' : 'Light' %>",
|
|
9
|
+
"appearance": "<%= app %>",
|
|
10
|
+
"style": {
|
|
11
|
+
"accents": <%- JSON.stringify(app === 'dark' ? ['#d4d4d4ff', '#c0c0c0ff', '#a0a0a0ff', '#909090ff', '#808080ff', '#707070ff', '#606060ff'] : ['#1e1e1eff', '#333333ff', '#4d4d4dff', '#666666ff', '#808080ff', '#999999ff', '#b3b3b3ff']) %>,
|
|
12
|
+
"vim.mode.text": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#f5f5f5ff') %>,
|
|
13
|
+
"vim.normal.foreground": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#f5f5f5ff') %>,
|
|
14
|
+
"vim.helix_normal.foreground": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#f5f5f5ff') %>,
|
|
15
|
+
"vim.visual.foreground": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#f5f5f5ff') %>,
|
|
16
|
+
"vim.helix_select.foreground": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#f5f5f5ff') %>,
|
|
17
|
+
"vim.insert.foreground": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#f5f5f5ff') %>,
|
|
18
|
+
"vim.visual_line.foreground": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#f5f5f5ff') %>,
|
|
19
|
+
"vim.visual_block.foreground": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#f5f5f5ff') %>,
|
|
20
|
+
"vim.replace.foreground": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#f5f5f5ff') %>,
|
|
21
|
+
"vim.normal.background": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#666666ff') %>,
|
|
22
|
+
"vim.helix_normal.background": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#666666ff') %>,
|
|
23
|
+
"vim.visual.background": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#4d4d4dff') %>,
|
|
24
|
+
"vim.helix_select.background": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#4d4d4dff') %>,
|
|
25
|
+
"vim.insert.background": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#666666ff') %>,
|
|
26
|
+
"vim.visual_line.background": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#4d4d4dff') %>,
|
|
27
|
+
"vim.visual_block.background": <%- JSON.stringify(app === 'dark' ? '#c0c0c0ff' : '#333333ff') %>,
|
|
28
|
+
"vim.replace.background": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#1e1e1eff') %>,
|
|
29
|
+
"background.appearance": "opaque",
|
|
30
|
+
"border": <%- JSON.stringify(app === 'dark' ? '#404040ff' : '#c0c0c0ff') %>,
|
|
31
|
+
"border.variant": <%- JSON.stringify(app === 'dark' ? '#333333ff' : '#d8d8d8ff') %>,
|
|
32
|
+
"border.focused": <%- JSON.stringify(app === 'dark' ? '#808080ff' : '#909090ff') %>,
|
|
33
|
+
"border.selected": <%- JSON.stringify(app === 'dark' ? '#606060ff' : '#a0a0a0ff') %>,
|
|
34
|
+
"border.transparent": "#00000000",
|
|
35
|
+
"border.disabled": <%- JSON.stringify(app === 'dark' ? '#3a3a3aff' : '#b0b0b0ff') %>,
|
|
36
|
+
"elevated_surface.background": <%- JSON.stringify(app === 'dark' ? '#252525ff' : '#f0f0f0ff') %>,
|
|
37
|
+
"surface.background": <%- JSON.stringify(app === 'dark' ? '#252525ff' : '#f0f0f0ff') %>,
|
|
38
|
+
"background": <%- JSON.stringify(app === 'dark' ? '#2d2d2dff' : '#e8e8e8ff') %>,
|
|
39
|
+
"element.background": <%- JSON.stringify(app === 'dark' ? '#262626ff' : '#f0f0f0ff') %>,
|
|
40
|
+
"element.hover": <%- JSON.stringify(app === 'dark' ? '#333333ff' : '#d8d8d8ff') %>,
|
|
41
|
+
"element.active": <%- JSON.stringify(app === 'dark' ? '#404040ff' : '#c8c8c8ff') %>,
|
|
42
|
+
"element.selected": <%- JSON.stringify(app === 'dark' ? '#404040ff' : '#c8c8c8ff') %>,
|
|
43
|
+
"element.disabled": <%- JSON.stringify(app === 'dark' ? '#262626ff' : '#f0f0f0ff') %>,
|
|
44
|
+
"drop_target.background": <%- JSON.stringify(app === 'dark' ? '#33333366' : '#d8d8d866') %>,
|
|
45
|
+
"ghost_element.background": "#00000000",
|
|
46
|
+
"ghost_element.hover": <%- JSON.stringify(app === 'dark' ? '#3333334d' : '#d8d8d84d') %>,
|
|
47
|
+
"ghost_element.active": <%- JSON.stringify(app === 'dark' ? '#40404099' : '#c8c8c899') %>,
|
|
48
|
+
"ghost_element.selected": <%- JSON.stringify(app === 'dark' ? '#4040404d' : '#c8c8c84d') %>,
|
|
49
|
+
"ghost_element.disabled": <%- JSON.stringify(app === 'dark' ? '#262626ff' : '#f0f0f0ff') %>,
|
|
50
|
+
"text": <%- JSON.stringify(app === 'dark' ? '#d9d9d9ff' : '#1e1e1eff') %>,
|
|
51
|
+
"text.muted": <%- JSON.stringify(app === 'dark' ? '#888888ff' : '#666666ff') %>,
|
|
52
|
+
"text.placeholder": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>,
|
|
53
|
+
"text.disabled": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>,
|
|
54
|
+
"text.accent": <%- JSON.stringify(app === 'dark' ? '#c0c0c0ff' : '#4d4d4dff') %>,
|
|
55
|
+
"icon": <%- JSON.stringify(app === 'dark' ? '#d9d9d9ff' : '#1e1e1eff') %>,
|
|
56
|
+
"icon.muted": <%- JSON.stringify(app === 'dark' ? '#888888ff' : '#666666ff') %>,
|
|
57
|
+
"icon.disabled": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>,
|
|
58
|
+
"icon.placeholder": <%- JSON.stringify(app === 'dark' ? '#888888ff' : '#666666ff') %>,
|
|
59
|
+
"icon.accent": <%- JSON.stringify(app === 'dark' ? '#c0c0c0ff' : '#4d4d4dff') %>,
|
|
60
|
+
"status_bar.background": <%- JSON.stringify(app === 'dark' ? '#2d2d2dff' : '#e8e8e8ff') %>,
|
|
61
|
+
"title_bar.background": <%- JSON.stringify(app === 'dark' ? '#2d2d2dff' : '#e8e8e8ff') %>,
|
|
62
|
+
"title_bar.inactive_background": <%- JSON.stringify(app === 'dark' ? '#262626ff' : '#f0f0f0ff') %>,
|
|
63
|
+
"toolbar.background": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#fafafaff') %>,
|
|
64
|
+
"tab_bar.background": <%- JSON.stringify(app === 'dark' ? '#252525ff' : '#f0f0f0ff') %>,
|
|
65
|
+
"tab.inactive_background": <%- JSON.stringify(app === 'dark' ? '#252525ff' : '#f0f0f0ff') %>,
|
|
66
|
+
"tab.active_background": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#fafafaff') %>,
|
|
67
|
+
"search.match_background": <%- JSON.stringify(app === 'dark' ? '#c0c0c04d' : '#4d4d4d4d') %>,
|
|
68
|
+
"search.active_match_background": <%- JSON.stringify(app === 'dark' ? '#d0d0d04d' : '#3333334d') %>,
|
|
69
|
+
"panel.background": <%- JSON.stringify(app === 'dark' ? '#252525ff' : '#f0f0f0ff') %>,
|
|
70
|
+
"panel.focused_border": <%- JSON.stringify(app === 'dark' ? '#d9d9d9ff' : '#1e1e1eff') %>,
|
|
71
|
+
"panel.indent_guide": <%- JSON.stringify(app === 'dark' ? '#33333399' : '#d8d8d899') %>,
|
|
72
|
+
"panel.indent_guide_active": <%- JSON.stringify(app === 'dark' ? '#404040ff' : '#c8c8c8ff') %>,
|
|
73
|
+
"panel.indent_guide_hover": <%- JSON.stringify(app === 'dark' ? '#606060ff' : '#909090ff') %>,
|
|
74
|
+
"panel.overlay_background": <%- JSON.stringify(app === 'dark' ? '#252525ff' : '#f0f0f0ff') %>,
|
|
75
|
+
"pane.focused_border": <%- JSON.stringify(app === 'dark' ? '#d9d9d9ff' : '#1e1e1eff') %>,
|
|
76
|
+
"pane_group.border": <%- JSON.stringify(app === 'dark' ? '#333333ff' : '#d8d8d8ff') %>,
|
|
77
|
+
"scrollbar.thumb.background": <%- JSON.stringify(app === 'dark' ? '#40404080' : '#c8c8c880') %>,
|
|
78
|
+
"scrollbar.thumb.hover_background": <%- JSON.stringify(app === 'dark' ? '#3a3a3aff' : '#b0b0b0ff') %>,
|
|
79
|
+
"scrollbar.thumb.active_background": null,
|
|
80
|
+
"scrollbar.thumb.border": null,
|
|
81
|
+
"scrollbar.track.background": <%- JSON.stringify(app === 'dark' ? '#2d2d2dff' : '#e8e8e8ff') %>,
|
|
82
|
+
"scrollbar.track.border": <%- JSON.stringify(app === 'dark' ? '#d9d9d912' : '#1e1e1e12') %>,
|
|
83
|
+
"minimap.thumb.background": <%- JSON.stringify(app === 'dark' ? '#c0c0c033' : '#4d4d4d33') %>,
|
|
84
|
+
"minimap.thumb.hover_background": <%- JSON.stringify(app === 'dark' ? '#c0c0c066' : '#4d4d4d66') %>,
|
|
85
|
+
"minimap.thumb.active_background": <%- JSON.stringify(app === 'dark' ? '#c0c0c099' : '#4d4d4d99') %>,
|
|
86
|
+
"minimap.thumb.border": null,
|
|
87
|
+
"editor.foreground": <%- JSON.stringify(app === 'dark' ? '#ccccccff' : '#1e1e1eff') %>,
|
|
88
|
+
"editor.background": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#fafafaff') %>,
|
|
89
|
+
"editor.gutter.background": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#fafafaff') %>,
|
|
90
|
+
"editor.subheader.background": <%- JSON.stringify(app === 'dark' ? '#252525ff' : '#f0f0f0ff') %>,
|
|
91
|
+
"editor.active_line.background": <%- JSON.stringify(app === 'dark' ? '#252525bf' : '#f0f0f0bf') %>,
|
|
92
|
+
"editor.highlighted_line.background": <%- JSON.stringify(app === 'dark' ? '#252525ff' : '#f0f0f0ff') %>,
|
|
93
|
+
"editor.line_number": <%- JSON.stringify(app === 'dark' ? '#5a5a5a' : '#a0a0a0') %>,
|
|
94
|
+
"editor.active_line_number": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#4d4d4dff') %>,
|
|
95
|
+
"editor.invisible": <%- JSON.stringify(app === 'dark' ? '#5a5a5a66' : '#a0a0a066') %>,
|
|
96
|
+
"editor.wrap_guide": <%- JSON.stringify(app === 'dark' ? '#d9d9d90d' : '#1e1e1e0d') %>,
|
|
97
|
+
"editor.active_wrap_guide": <%- JSON.stringify(app === 'dark' ? '#d9d9d91a' : '#1e1e1e1a') %>,
|
|
98
|
+
"editor.document_highlight.bracket_background": <%- JSON.stringify(app === 'dark' ? '#b0b0b017' : '#4d4d4d17') %>,
|
|
99
|
+
"editor.document_highlight.read_background": <%- JSON.stringify(app === 'dark' ? '#40404029' : '#c8c8c829') %>,
|
|
100
|
+
"editor.document_highlight.write_background": <%- JSON.stringify(app === 'dark' ? '#40404029' : '#c8c8c829') %>,
|
|
101
|
+
"editor.indent_guide": <%- JSON.stringify(app === 'dark' ? '#33333399' : '#d8d8d899') %>,
|
|
102
|
+
"editor.indent_guide_active": <%- JSON.stringify(app === 'dark' ? '#404040ff' : '#c8c8c8ff') %>,
|
|
103
|
+
"terminal.background": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#fafafaff') %>,
|
|
104
|
+
"terminal.ansi.background": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#fafafaff') %>,
|
|
105
|
+
"terminal.foreground": <%- JSON.stringify(app === 'dark' ? '#bbbbbbff' : '#2a2a2aff') %>,
|
|
106
|
+
"terminal.dim_foreground": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>,
|
|
107
|
+
"terminal.bright_foreground": <%- JSON.stringify(app === 'dark' ? '#d9d9d9ff' : '#1e1e1eff') %>,
|
|
108
|
+
"terminal.ansi.black": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#000000ff') %>,
|
|
109
|
+
"terminal.ansi.white": <%- JSON.stringify(app === 'dark' ? '#bbbbbbff' : '#bbbbbbff') %>,
|
|
110
|
+
"terminal.ansi.red": <%- JSON.stringify(app === 'dark' ? '#c0c0c0ff' : '#404040ff') %>,
|
|
111
|
+
"terminal.ansi.green": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>,
|
|
112
|
+
"terminal.ansi.yellow": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>,
|
|
113
|
+
"terminal.ansi.blue": <%- JSON.stringify(app === 'dark' ? '#808080ff' : '#505050ff') %>,
|
|
114
|
+
"terminal.ansi.magenta": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#3a3a3aff') %>,
|
|
115
|
+
"terminal.ansi.cyan": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>,
|
|
116
|
+
"terminal.ansi.bright_black": <%- JSON.stringify(app === 'dark' ? '#606060ff' : '#000000ff') %>,
|
|
117
|
+
"terminal.ansi.bright_white": <%- JSON.stringify(app === 'dark' ? '#fafafaff' : '#ffffffff') %>,
|
|
118
|
+
"terminal.ansi.bright_red": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#404040ff') %>,
|
|
119
|
+
"terminal.ansi.bright_green": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#606060ff') %>,
|
|
120
|
+
"terminal.ansi.bright_yellow": <%- JSON.stringify(app === 'dark' ? '#c0c0c0ff' : '#707070ff') %>,
|
|
121
|
+
"terminal.ansi.bright_blue": <%- JSON.stringify(app === 'dark' ? '#c8c8c8ff' : '#505050ff') %>,
|
|
122
|
+
"terminal.ansi.bright_magenta": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#3a3a3aff') %>,
|
|
123
|
+
"terminal.ansi.bright_cyan": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#666666ff') %>,
|
|
124
|
+
"terminal.ansi.dim_black": <%- JSON.stringify(app === 'dark' ? '#1e1e1eff' : '#000000ff') %>,
|
|
125
|
+
"terminal.ansi.dim_white": <%- JSON.stringify(app === 'dark' ? '#bbbbbbff' : '#bbbbbbff') %>,
|
|
126
|
+
"terminal.ansi.dim_red": <%- JSON.stringify(app === 'dark' ? '#c0c0c0ff' : '#404040ff') %>,
|
|
127
|
+
"terminal.ansi.dim_green": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>,
|
|
128
|
+
"terminal.ansi.dim_yellow": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>,
|
|
129
|
+
"terminal.ansi.dim_blue": <%- JSON.stringify(app === 'dark' ? '#808080ff' : '#505050ff') %>,
|
|
130
|
+
"terminal.ansi.dim_magenta": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#3a3a3aff') %>,
|
|
131
|
+
"terminal.ansi.dim_cyan": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>,
|
|
132
|
+
"link_text.hover": <%- JSON.stringify(app === 'dark' ? '#c0c0c0ff' : '#4d4d4dff') %>,
|
|
133
|
+
"conflict": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>,
|
|
134
|
+
"conflict.border": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>,
|
|
135
|
+
"conflict.background": <%- JSON.stringify(app === 'dark' ? '#d0d0d026' : '#33333326') %>,
|
|
136
|
+
"created": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>,
|
|
137
|
+
"created.border": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>,
|
|
138
|
+
"created.background": <%- JSON.stringify(app === 'dark' ? '#a0a0a026' : '#60606026') %>,
|
|
139
|
+
"deleted": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>,
|
|
140
|
+
"deleted.border": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>,
|
|
141
|
+
"deleted.background": <%- JSON.stringify(app === 'dark' ? '#d0d0d026' : '#33333326') %>,
|
|
142
|
+
"hidden": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>,
|
|
143
|
+
"hidden.border": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>,
|
|
144
|
+
"hidden.background": <%- JSON.stringify(app === 'dark' ? '#252525ff' : '#f0f0f0ff') %>,
|
|
145
|
+
"hint": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>,
|
|
146
|
+
"hint.border": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>,
|
|
147
|
+
"hint.background": <%- JSON.stringify(app === 'dark' ? '#252525ff' : '#f0f0f0ff') %>,
|
|
148
|
+
"ignored": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>,
|
|
149
|
+
"ignored.border": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>,
|
|
150
|
+
"ignored.background": <%- JSON.stringify(app === 'dark' ? '#70707026' : '#80808026') %>,
|
|
151
|
+
"modified": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>,
|
|
152
|
+
"modified.border": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>,
|
|
153
|
+
"modified.background": <%- JSON.stringify(app === 'dark' ? '#90909026' : '#70707026') %>,
|
|
154
|
+
"predictive": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>,
|
|
155
|
+
"predictive.border": <%- JSON.stringify(app === 'dark' ? '#808080ff' : '#505050ff') %>,
|
|
156
|
+
"predictive.background": <%- JSON.stringify(app === 'dark' ? '#252525ff' : '#f0f0f0ff') %>,
|
|
157
|
+
"renamed": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>,
|
|
158
|
+
"renamed.border": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>,
|
|
159
|
+
"renamed.background": <%- JSON.stringify(app === 'dark' ? '#99999926' : '#66666626') %>,
|
|
160
|
+
"info": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>,
|
|
161
|
+
"info.border": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>,
|
|
162
|
+
"info.background": <%- JSON.stringify(app === 'dark' ? '#70707033' : '#80808033') %>,
|
|
163
|
+
"warning": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>,
|
|
164
|
+
"warning.border": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>,
|
|
165
|
+
"warning.background": <%- JSON.stringify(app === 'dark' ? '#9090901f' : '#7070701f') %>,
|
|
166
|
+
"error": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>,
|
|
167
|
+
"error.border": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>,
|
|
168
|
+
"error.background": <%- JSON.stringify(app === 'dark' ? '#d0d0d01f' : '#3333331f') %>,
|
|
169
|
+
"success": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>,
|
|
170
|
+
"success.border": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>,
|
|
171
|
+
"success.background": <%- JSON.stringify(app === 'dark' ? '#a0a0a01f' : '#6060601f') %>,
|
|
172
|
+
"unreachable": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>,
|
|
173
|
+
"unreachable.border": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>,
|
|
174
|
+
"unreachable.background": <%- JSON.stringify(app === 'dark' ? '#d0d0d01f' : '#3333331f') %>,
|
|
175
|
+
"players": [
|
|
176
|
+
{ "cursor": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "selection": <%- JSON.stringify(app === 'dark' ? '#a0a0a04d' : '#6060604d') %>, "background": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %> },
|
|
177
|
+
{ "cursor": <%- JSON.stringify(app === 'dark' ? '#c0c0c0ff' : '#4d4d4dff') %>, "selection": <%- JSON.stringify(app === 'dark' ? '#c0c0c04d' : '#4d4d4d4d') %>, "background": <%- JSON.stringify(app === 'dark' ? '#c0c0c0ff' : '#4d4d4dff') %> },
|
|
178
|
+
{ "cursor": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#555555ff') %>, "selection": <%- JSON.stringify(app === 'dark' ? '#b0b0b04d' : '#5555554d') %>, "background": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#555555ff') %> },
|
|
179
|
+
{ "cursor": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>, "selection": <%- JSON.stringify(app === 'dark' ? '#9999994d' : '#6666664d') %>, "background": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %> },
|
|
180
|
+
{ "cursor": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "selection": <%- JSON.stringify(app === 'dark' ? '#a0a0a04d' : '#6060604d') %>, "background": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %> },
|
|
181
|
+
{ "cursor": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>, "selection": <%- JSON.stringify(app === 'dark' ? '#9090904d' : '#7070704d') %>, "background": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %> },
|
|
182
|
+
{ "cursor": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>, "selection": <%- JSON.stringify(app === 'dark' ? '#d0d0d04d' : '#3333334d') %>, "background": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %> },
|
|
183
|
+
{ "cursor": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#3a3a3aff') %>, "selection": <%- JSON.stringify(app === 'dark' ? '#b0b0b04d' : '#3a3a3a4d') %>, "background": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#3a3a3aff') %> }
|
|
184
|
+
],
|
|
185
|
+
"version_control.added": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>,
|
|
186
|
+
"version_control.deleted": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>,
|
|
187
|
+
"version_control.modified": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>,
|
|
188
|
+
"version_control.renamed": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>,
|
|
189
|
+
"version_control.conflict": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>,
|
|
190
|
+
"version_control.conflict_marker.ours": <%- JSON.stringify(app === 'dark' ? '#a0a0a033' : '#60606033') %>,
|
|
191
|
+
"version_control.conflict_marker.theirs": <%- JSON.stringify(app === 'dark' ? '#b0b0b033' : '#50505033') %>,
|
|
192
|
+
"version_control.ignored": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>,
|
|
193
|
+
"debugger.accent": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>,
|
|
194
|
+
"editor.debugger_active_line.background": <%- JSON.stringify(app === 'dark' ? '#d0d0d012' : '#33333312') %>,
|
|
195
|
+
"syntax": {
|
|
196
|
+
"variable": { "color": <%- JSON.stringify(app === 'dark' ? '#ccccccff' : '#1e1e1eff') %>, "font_style": null, "font_weight": null },
|
|
197
|
+
"variable.builtin": { "color": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>, "font_style": null, "font_weight": null },
|
|
198
|
+
"variable.parameter": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#454545ff') %>, "font_style": null, "font_weight": null },
|
|
199
|
+
"variable.member": { "color": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>, "font_style": null, "font_weight": null },
|
|
200
|
+
"variable.special": { "color": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>, "font_style": "italic", "font_weight": null },
|
|
201
|
+
"constant": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": null, "font_weight": null },
|
|
202
|
+
"constant.builtin": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": null, "font_weight": null },
|
|
203
|
+
"constant.macro": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
204
|
+
"module": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": "italic", "font_weight": null },
|
|
205
|
+
"label": { "color": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>, "font_style": null, "font_weight": null },
|
|
206
|
+
"string": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
207
|
+
"string.documentation": { "color": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>, "font_style": null, "font_weight": null },
|
|
208
|
+
"string.regexp": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": null, "font_weight": null },
|
|
209
|
+
"string.escape": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
210
|
+
"string.special": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
211
|
+
"string.special.path": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": "italic", "font_weight": null },
|
|
212
|
+
"string.special.symbol": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
213
|
+
"string.special.url": { "color": <%- JSON.stringify(app === 'dark' ? '#c0c0c0ff' : '#4d4d4dff') %>, "font_style": "italic", "font_weight": null },
|
|
214
|
+
"character": { "color": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>, "font_style": null, "font_weight": null },
|
|
215
|
+
"character.special": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
216
|
+
"boolean": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": null, "font_weight": null },
|
|
217
|
+
"number": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#454545ff') %>, "font_style": null, "font_weight": null },
|
|
218
|
+
"number.float": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#454545ff') %>, "font_style": null, "font_weight": null },
|
|
219
|
+
"tag": { "color": <%- JSON.stringify(app === 'dark' ? '#808080ff' : '#707070ff') %>, "font_style": null, "font_weight": null },
|
|
220
|
+
"tag.attribute": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": "italic", "font_weight": null },
|
|
221
|
+
"tag.delimiter": { "color": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>, "font_style": null, "font_weight": null },
|
|
222
|
+
"type": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": null, "font_weight": null },
|
|
223
|
+
"type.builtin": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": "italic", "font_weight": null },
|
|
224
|
+
"type.definition": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": null, "font_weight": null },
|
|
225
|
+
"type.interface": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": "italic", "font_weight": null },
|
|
226
|
+
"type.super": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": "italic", "font_weight": null },
|
|
227
|
+
"attribute": { "color": <%- JSON.stringify(app === 'dark' ? '#c0c0c0ff' : '#4d4d4dff') %>, "font_style": null, "font_weight": null },
|
|
228
|
+
"property": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#454545ff') %>, "font_style": null, "font_weight": null },
|
|
229
|
+
"function": { "color": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>, "font_style": null, "font_weight": null },
|
|
230
|
+
"function.builtin": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": null, "font_weight": null },
|
|
231
|
+
"function.call": { "color": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>, "font_style": null, "font_weight": null },
|
|
232
|
+
"function.macro": { "color": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>, "font_style": null, "font_weight": null },
|
|
233
|
+
"function.method": { "color": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>, "font_style": null, "font_weight": null },
|
|
234
|
+
"function.method.call": { "color": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>, "font_style": null, "font_weight": null },
|
|
235
|
+
"constructor": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#454545ff') %>, "font_style": null, "font_weight": null },
|
|
236
|
+
"operator": { "color": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>, "font_style": null, "font_weight": null },
|
|
237
|
+
"keyword": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
238
|
+
"keyword.modifier": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
239
|
+
"keyword.type": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
240
|
+
"keyword.coroutine": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
241
|
+
"keyword.function": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
242
|
+
"keyword.operator": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
243
|
+
"keyword.import": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
244
|
+
"keyword.repeat": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
245
|
+
"keyword.return": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
246
|
+
"keyword.debug": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
247
|
+
"keyword.exception": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
248
|
+
"keyword.conditional": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
249
|
+
"keyword.conditional.ternary": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
250
|
+
"keyword.directive": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
251
|
+
"keyword.directive.define": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
252
|
+
"keyword.export": { "color": <%- JSON.stringify(app === 'dark' ? '#c0c0c0ff' : '#4d4d4dff') %>, "font_style": null, "font_weight": null },
|
|
253
|
+
"punctuation": { "color": <%- JSON.stringify(app === 'dark' ? '#ccccccff' : '#1e1e1eff') %>, "font_style": null, "font_weight": null },
|
|
254
|
+
"punctuation.delimiter": { "color": <%- JSON.stringify(app === 'dark' ? '#ccccccff' : '#1e1e1eff') %>, "font_style": null, "font_weight": null },
|
|
255
|
+
"punctuation.bracket": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#404040ff') %>, "font_style": null, "font_weight": null },
|
|
256
|
+
"punctuation.special": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
257
|
+
"punctuation.special.symbol": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
258
|
+
"punctuation.list_marker": { "color": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>, "font_style": null, "font_weight": null },
|
|
259
|
+
"comment": { "color": <%- JSON.stringify(app === 'dark' ? '#606060ff' : '#909090ff') %>, "font_style": "italic", "font_weight": null },
|
|
260
|
+
"comment.doc": { "color": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>, "font_style": "italic", "font_weight": null },
|
|
261
|
+
"comment.documentation": { "color": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>, "font_style": "italic", "font_weight": null },
|
|
262
|
+
"comment.info": { "color": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>, "font_style": "italic", "font_weight": null },
|
|
263
|
+
"comment.error": { "color": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>, "font_style": "italic", "font_weight": null },
|
|
264
|
+
"comment.warning": { "color": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>, "font_style": "italic", "font_weight": null },
|
|
265
|
+
"comment.warn": { "color": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>, "font_style": "italic", "font_weight": null },
|
|
266
|
+
"comment.hint": { "color": <%- JSON.stringify(app === 'dark' ? '#808080ff' : '#707070ff') %>, "font_style": "italic", "font_weight": null },
|
|
267
|
+
"comment.todo": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#454545ff') %>, "font_style": "italic", "font_weight": null },
|
|
268
|
+
"comment.note": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": "italic", "font_weight": null },
|
|
269
|
+
"diff.plus": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
270
|
+
"diff.minus": { "color": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>, "font_style": null, "font_weight": null },
|
|
271
|
+
"parameter": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#454545ff') %>, "font_style": null, "font_weight": null },
|
|
272
|
+
"field": { "color": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>, "font_style": null, "font_weight": null },
|
|
273
|
+
"namespace": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": "italic", "font_weight": null },
|
|
274
|
+
"float": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#454545ff') %>, "font_style": null, "font_weight": null },
|
|
275
|
+
"symbol": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
276
|
+
"string.regex": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": null, "font_weight": null },
|
|
277
|
+
"text": { "color": <%- JSON.stringify(app === 'dark' ? '#ccccccff' : '#1e1e1eff') %>, "font_style": null, "font_weight": null },
|
|
278
|
+
"emphasis.strong": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#454545ff') %>, "font_style": null, "font_weight": 700 },
|
|
279
|
+
"emphasis": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#454545ff') %>, "font_style": "italic", "font_weight": null },
|
|
280
|
+
"embedded": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#454545ff') %>, "font_style": null, "font_weight": null },
|
|
281
|
+
"text.literal": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
282
|
+
"concept": { "color": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>, "font_style": null, "font_weight": null },
|
|
283
|
+
"enum": { "color": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>, "font_style": null, "font_weight": 700 },
|
|
284
|
+
"function.decorator": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": null, "font_weight": null },
|
|
285
|
+
"type.class.definition": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": null, "font_weight": 700 },
|
|
286
|
+
"hint": { "color": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>, "font_style": "italic", "font_weight": null },
|
|
287
|
+
"link_text": { "color": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>, "font_style": null, "font_weight": null },
|
|
288
|
+
"link_uri": { "color": <%- JSON.stringify(app === 'dark' ? '#909090ff' : '#707070ff') %>, "font_style": "italic", "font_weight": null },
|
|
289
|
+
"parent": { "color": <%- JSON.stringify(app === 'dark' ? '#b0b0b0ff' : '#505050ff') %>, "font_style": null, "font_weight": null },
|
|
290
|
+
"predictive": { "color": <%- JSON.stringify(app === 'dark' ? '#707070ff' : '#808080ff') %>, "font_style": null, "font_weight": null },
|
|
291
|
+
"predoc": { "color": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>, "font_style": null, "font_weight": null },
|
|
292
|
+
"primary": { "color": <%- JSON.stringify(app === 'dark' ? '#b8b8b8ff' : '#454545ff') %>, "font_style": null, "font_weight": null },
|
|
293
|
+
"tag.doctype": { "color": <%- JSON.stringify(app === 'dark' ? '#a0a0a0ff' : '#606060ff') %>, "font_style": null, "font_weight": null },
|
|
294
|
+
"string.doc": { "color": <%- JSON.stringify(app === 'dark' ? '#999999ff' : '#666666ff') %>, "font_style": "italic", "font_weight": null },
|
|
295
|
+
"title": { "color": <%- JSON.stringify(app === 'dark' ? '#ccccccff' : '#1e1e1eff') %>, "font_style": null, "font_weight": 800 },
|
|
296
|
+
"variant": { "color": <%- JSON.stringify(app === 'dark' ? '#d0d0d0ff' : '#333333ff') %>, "font_style": null, "font_weight": null }
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
}<% if (index < appearances.length - 1) { %>,<% } %>
|
|
300
|
+
<% }); %>
|
|
301
|
+
]
|
|
302
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type ExtensionType = 'theme';
|
|
2
|
+
export type License = 'Apache-2.0' | 'BSD-2-Clause' | 'BSD-3-Clause' | 'GPL-3.0' | 'LGPL-3.0' | 'MIT' | 'Zlib';
|
|
3
|
+
export interface ExtensionOptions {
|
|
4
|
+
name: string;
|
|
5
|
+
id: string;
|
|
6
|
+
description: string;
|
|
7
|
+
author: string;
|
|
8
|
+
repository: string;
|
|
9
|
+
license: License;
|
|
10
|
+
types: ExtensionType[];
|
|
11
|
+
[key: string]: unknown;
|
|
12
|
+
}
|
|
13
|
+
export interface ThemeOptions extends ExtensionOptions {
|
|
14
|
+
themeName: string;
|
|
15
|
+
appearance: 'light' | 'dark' | 'both';
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zedx",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Boilerplate generator for Zed extensions",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"zedx": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsc && cp -r src/templates dist/",
|
|
15
|
+
"start": "node dist/index.js",
|
|
16
|
+
"dev": "tsx src/index.ts"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"zed",
|
|
20
|
+
"zed-editor",
|
|
21
|
+
"extension",
|
|
22
|
+
"boilerplate",
|
|
23
|
+
"scaffold"
|
|
24
|
+
],
|
|
25
|
+
"author": "Taha Nejad <taha@noiserandom.com>",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/tahayvr/zedx.git"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://github.com/tahayvr/zedx#readme",
|
|
31
|
+
"license": "Apache-2.0",
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=18"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@types/ejs": "^3.1.5",
|
|
40
|
+
"@types/fs-extra": "^11.0.4",
|
|
41
|
+
"@types/node": "^25.2.3",
|
|
42
|
+
"tsx": "^4.21.0",
|
|
43
|
+
"typescript": "^5.9.3"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@clack/prompts": "^0.10.1",
|
|
47
|
+
"commander": "^14.0.3",
|
|
48
|
+
"ejs": "^4.0.1",
|
|
49
|
+
"fs-extra": "^11.3.3",
|
|
50
|
+
"picocolors": "^1.1.1"
|
|
51
|
+
},
|
|
52
|
+
"packageManager": "pnpm@10.30.0+sha512.2b5753de015d480eeb88f5b5b61e0051f05b4301808a82ec8b840c9d2adf7748eb352c83f5c1593ca703ff1017295bc3fdd3119abb9686efc96b9fcb18200937"
|
|
53
|
+
}
|