@dragcraft/themes 0.0.1
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 +21 -0
- package/dist/css-custom-data.json +275 -0
- package/dist/material.css +1700 -0
- package/dist/standard.css +1695 -0
- package/dist/structure.css +1067 -0
- package/dist/theme-contract.json +105 -0
- package/package.json +45 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025-PRESENT hackycy <https://github.com/hackycy>
|
|
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,275 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1.1,
|
|
3
|
+
"properties": [
|
|
4
|
+
{
|
|
5
|
+
"name": "--dc-color-accent",
|
|
6
|
+
"description": "Primary action and selection color.",
|
|
7
|
+
"syntax": "*"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "--dc-color-accent-hover",
|
|
11
|
+
"description": "Hovered primary action color.",
|
|
12
|
+
"syntax": "*"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "--dc-color-accent-active",
|
|
16
|
+
"description": "Pressed primary action color.",
|
|
17
|
+
"syntax": "*"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "--dc-color-accent-subtle",
|
|
21
|
+
"description": "Low-emphasis accent surface.",
|
|
22
|
+
"syntax": "*"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "--dc-color-accent-border",
|
|
26
|
+
"description": "Border color on subtle accent surfaces.",
|
|
27
|
+
"syntax": "*"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "--dc-color-accent-ring",
|
|
31
|
+
"description": "Translucent accent ring and glow.",
|
|
32
|
+
"syntax": "*"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "--dc-color-on-accent",
|
|
36
|
+
"description": "Content color on strong accent surfaces.",
|
|
37
|
+
"syntax": "*"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "--dc-color-on-accent-subtle",
|
|
41
|
+
"description": "Content color on subtle accent surfaces.",
|
|
42
|
+
"syntax": "*"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "--dc-color-success",
|
|
46
|
+
"description": "Success feedback color.",
|
|
47
|
+
"syntax": "*"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "--dc-color-warning",
|
|
51
|
+
"description": "Warning feedback color.",
|
|
52
|
+
"syntax": "*"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "--dc-color-danger",
|
|
56
|
+
"description": "Danger and destructive action color.",
|
|
57
|
+
"syntax": "*"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "--dc-color-danger-subtle",
|
|
61
|
+
"description": "Low-emphasis danger surface.",
|
|
62
|
+
"syntax": "*"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "--dc-color-text",
|
|
66
|
+
"description": "Primary workbench text color.",
|
|
67
|
+
"syntax": "*"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "--dc-color-text-muted",
|
|
71
|
+
"description": "Secondary workbench text color.",
|
|
72
|
+
"syntax": "*"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "--dc-color-text-subtle",
|
|
76
|
+
"description": "Tertiary and placeholder text color.",
|
|
77
|
+
"syntax": "*"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "--dc-color-surface",
|
|
81
|
+
"description": "Primary workbench surface.",
|
|
82
|
+
"syntax": "*"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "--dc-color-surface-subtle",
|
|
86
|
+
"description": "Low-contrast workbench surface.",
|
|
87
|
+
"syntax": "*"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "--dc-color-surface-muted",
|
|
91
|
+
"description": "Muted control and hover surface.",
|
|
92
|
+
"syntax": "*"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "--dc-color-surface-raised",
|
|
96
|
+
"description": "Raised workbench surface.",
|
|
97
|
+
"syntax": "*"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "--dc-color-canvas",
|
|
101
|
+
"description": "Designer canvas background.",
|
|
102
|
+
"syntax": "*"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "--dc-color-border",
|
|
106
|
+
"description": "Standard workbench border.",
|
|
107
|
+
"syntax": "*"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "--dc-color-border-subtle",
|
|
111
|
+
"description": "Low-contrast workbench border.",
|
|
112
|
+
"syntax": "*"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "--dc-color-focus-ring",
|
|
116
|
+
"description": "Keyboard focus ring color.",
|
|
117
|
+
"syntax": "*"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "--dc-color-backdrop",
|
|
121
|
+
"description": "Compact drawer backdrop.",
|
|
122
|
+
"syntax": "*"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "--dc-color-sidebar-handle",
|
|
126
|
+
"description": "Collapsed sidebar handle surface.",
|
|
127
|
+
"syntax": "*"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "--dc-color-sidebar-handle-hover",
|
|
131
|
+
"description": "Hovered sidebar handle surface.",
|
|
132
|
+
"syntax": "*"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "--dc-font-sans",
|
|
136
|
+
"description": "Workbench sans-serif font stack.",
|
|
137
|
+
"syntax": "*"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"name": "--dc-font-size-xs",
|
|
141
|
+
"description": "Extra-small workbench text.",
|
|
142
|
+
"syntax": "*"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"name": "--dc-font-size-sm",
|
|
146
|
+
"description": "Small workbench text.",
|
|
147
|
+
"syntax": "*"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "--dc-font-size-md",
|
|
151
|
+
"description": "Default workbench text.",
|
|
152
|
+
"syntax": "*"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "--dc-font-size-lg",
|
|
156
|
+
"description": "Large workbench text.",
|
|
157
|
+
"syntax": "*"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "--dc-font-weight-regular",
|
|
161
|
+
"description": "Regular workbench font weight.",
|
|
162
|
+
"syntax": "*"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "--dc-font-weight-medium",
|
|
166
|
+
"description": "Medium workbench font weight.",
|
|
167
|
+
"syntax": "*"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"name": "--dc-font-weight-semibold",
|
|
171
|
+
"description": "Semibold workbench font weight.",
|
|
172
|
+
"syntax": "*"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"name": "--dc-radius-sm",
|
|
176
|
+
"description": "Small component radius.",
|
|
177
|
+
"syntax": "*"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"name": "--dc-radius-md",
|
|
181
|
+
"description": "Default component radius.",
|
|
182
|
+
"syntax": "*"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "--dc-radius-lg",
|
|
186
|
+
"description": "Large component radius.",
|
|
187
|
+
"syntax": "*"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"name": "--dc-radius-full",
|
|
191
|
+
"description": "Pill-shaped component radius.",
|
|
192
|
+
"syntax": "*"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"name": "--dc-control-height-sm",
|
|
196
|
+
"description": "Compact control height.",
|
|
197
|
+
"syntax": "*"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"name": "--dc-control-height-md",
|
|
201
|
+
"description": "Default control height.",
|
|
202
|
+
"syntax": "*"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"name": "--dc-control-height-lg",
|
|
206
|
+
"description": "Comfortable control height.",
|
|
207
|
+
"syntax": "*"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"name": "--dc-shadow-sm",
|
|
211
|
+
"description": "Low elevation shadow.",
|
|
212
|
+
"syntax": "*"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"name": "--dc-shadow-md",
|
|
216
|
+
"description": "Medium elevation shadow.",
|
|
217
|
+
"syntax": "*"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"name": "--dc-shadow-lg",
|
|
221
|
+
"description": "High elevation shadow.",
|
|
222
|
+
"syntax": "*"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"name": "--dc-duration-fast",
|
|
226
|
+
"description": "Fast interaction duration.",
|
|
227
|
+
"syntax": "*"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"name": "--dc-duration-normal",
|
|
231
|
+
"description": "Default interaction duration.",
|
|
232
|
+
"syntax": "*"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"name": "--dc-ease-standard",
|
|
236
|
+
"description": "Standard workbench easing curve.",
|
|
237
|
+
"syntax": "*"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"name": "--dc-empty-state-icon-opacity",
|
|
241
|
+
"description": "Empty-state icon opacity.",
|
|
242
|
+
"syntax": "*"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "--dc-empty-state-icon-size",
|
|
246
|
+
"description": "Empty-state icon size.",
|
|
247
|
+
"syntax": "*"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"name": "--dc-material-item-shadow",
|
|
251
|
+
"description": "Resting material-item shadow.",
|
|
252
|
+
"syntax": "*"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"name": "--dc-material-item-hover-shadow",
|
|
256
|
+
"description": "Hovered material-item shadow.",
|
|
257
|
+
"syntax": "*"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"name": "--dc-material-search-radius",
|
|
261
|
+
"description": "Material-panel search input radius.",
|
|
262
|
+
"syntax": "*"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "--dc-node-selection-stroke-width",
|
|
266
|
+
"description": "Node selection stroke width.",
|
|
267
|
+
"syntax": "*"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"name": "--dc-node-toolbar-shadow",
|
|
271
|
+
"description": "Floating node-toolbar shadow.",
|
|
272
|
+
"syntax": "*"
|
|
273
|
+
}
|
|
274
|
+
]
|
|
275
|
+
}
|