dsh-dracula-theme 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 +21 -0
- package/README.md +58 -0
- package/README.zh.md +57 -0
- package/cordis.patch.yml +7 -0
- package/lib/client.js +846 -0
- package/lib/index.js +13 -0
- package/package.json +59 -0
- package/themes/dracula-soft.json +189 -0
- package/themes/dracula.json +189 -0
package/lib/index.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* dsh-dracula-theme — host half.
|
|
3
|
+
*
|
|
4
|
+
* The host side is intentionally a no-op loader entry: the whole feature
|
|
5
|
+
* lives in the browser half (`./client`), which DSH's dsh-client-modules
|
|
6
|
+
* picks up through the package's `dsh.client` declaration — the same shape
|
|
7
|
+
* as the shipped ui-* packages. The theme choice is persisted in
|
|
8
|
+
* localStorage, because the Host settings wire only exposes an allowlisted
|
|
9
|
+
* set of namespaces to browser clients.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
/** Host loader entry for the browser implementation exported from `./client`. */
|
|
13
|
+
export function apply() {}
|
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-dracula-theme",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "🧛 Dracula theme for DeepSeek Harness: the classic dark palette (plus the Soft variant) registered into the built-in theme runtime",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "ossFrankFrank",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/ossFrankFrank/dsh-dracula-theme.git"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"deepseek-harness",
|
|
13
|
+
"dsh",
|
|
14
|
+
"plugin",
|
|
15
|
+
"dsh-plugin",
|
|
16
|
+
"theme",
|
|
17
|
+
"dracula",
|
|
18
|
+
"skin",
|
|
19
|
+
"web-ui"
|
|
20
|
+
],
|
|
21
|
+
"type": "module",
|
|
22
|
+
"main": "lib/index.js",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": "./lib/index.js",
|
|
25
|
+
"./client": "./lib/client.js",
|
|
26
|
+
"./package.json": "./package.json"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"lib/index.js",
|
|
30
|
+
"lib/client.js",
|
|
31
|
+
"cordis.patch.yml",
|
|
32
|
+
"themes"
|
|
33
|
+
],
|
|
34
|
+
"dsh": {
|
|
35
|
+
"bundle": {
|
|
36
|
+
"patch": "./cordis.patch.yml"
|
|
37
|
+
},
|
|
38
|
+
"client": {
|
|
39
|
+
"inject": [
|
|
40
|
+
"@deepseek-ai/dsh-client-runtime",
|
|
41
|
+
"@deepseek-ai/dsh-client-locale",
|
|
42
|
+
"@deepseek-ai/dsh-client-ui-theme"
|
|
43
|
+
],
|
|
44
|
+
"platform": "web",
|
|
45
|
+
"immediately": true
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"react": "^18.2.0",
|
|
50
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
51
|
+
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.6",
|
|
52
|
+
"@deepseek-ai/dsh-client-ui-theme": "^0.1.0-rc.6",
|
|
53
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.0-rc.6",
|
|
54
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.0-rc.6"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"generate": "node scripts/gen-themes.mjs"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "dracula-soft",
|
|
3
|
+
"name": "Dracula Soft",
|
|
4
|
+
"colorScheme": "dark",
|
|
5
|
+
"tokens": {
|
|
6
|
+
"--dsw-static-neutral-50": "#efefe9",
|
|
7
|
+
"--dsw-static-neutral-100": "#e2e2da",
|
|
8
|
+
"--dsw-static-neutral-200": "#cdcdc5",
|
|
9
|
+
"--dsw-static-neutral-300": "#b6b6ae",
|
|
10
|
+
"--dsw-static-neutral-400": "#8f8f96",
|
|
11
|
+
"--dsw-static-neutral-500": "#6d6d7a",
|
|
12
|
+
"--dsw-static-neutral-550": "#5c5c6b",
|
|
13
|
+
"--dsw-static-neutral-600": "#4d4d5e",
|
|
14
|
+
"--dsw-static-neutral-700": "#3e3e50",
|
|
15
|
+
"--dsw-static-neutral-800": "#30303f",
|
|
16
|
+
"--dsw-static-neutral-850": "#282a36",
|
|
17
|
+
"--dsw-static-neutral-900": "#20212b",
|
|
18
|
+
"--dsw-static-neutral-1000": "#191a21",
|
|
19
|
+
"--dsw-static-neutral-description": "Anchor stops of the neutral grayscale ramp (--dsw-static-neutral-*), lightest (00) to darkest (1000). The official port does not override this ramp; values are Dracula-gray interpolations for a self-contained theme.",
|
|
20
|
+
"--dsw-static-neutral-00": "#f8f8f2",
|
|
21
|
+
"--dsw-static-neutral-bluish-50": "#f8f8f2",
|
|
22
|
+
"--dsw-static-neutral-bluish-60": "#282a36",
|
|
23
|
+
"--dsw-static-neutral-bluish-75": "#eef0f8",
|
|
24
|
+
"--dsw-static-neutral-bluish-100": "#e8eaf4",
|
|
25
|
+
"--dsw-static-neutral-bluish-150": "#d8ddef",
|
|
26
|
+
"--dsw-static-neutral-bluish-200": "#ccd2e8",
|
|
27
|
+
"--dsw-static-neutral-bluish-250": "#c4cbe3",
|
|
28
|
+
"--dsw-static-neutral-bluish-300": "#bbc4de",
|
|
29
|
+
"--dsw-static-neutral-bluish-400": "#9ba9d0",
|
|
30
|
+
"--dsw-static-neutral-bluish-500": "#7b8fc4",
|
|
31
|
+
"--dsw-static-neutral-bluish-550": "#6f81b4",
|
|
32
|
+
"--dsw-static-neutral-bluish-600": "#6272a4",
|
|
33
|
+
"--dsw-static-neutral-bluish-700": "#6272a4",
|
|
34
|
+
"--dsw-static-neutral-bluish-750": "#44475a",
|
|
35
|
+
"--dsw-static-neutral-bluish-800": "#44475a",
|
|
36
|
+
"--dsw-static-neutral-bluish-850": "#343746",
|
|
37
|
+
"--dsw-static-neutral-bluish-875": "#2b2d3a",
|
|
38
|
+
"--dsw-static-neutral-bluish-900": "#2b2d3a",
|
|
39
|
+
"--dsw-static-neutral-bluish-950": "#262833",
|
|
40
|
+
"--dsw-static-neutral-bluish-1000": "#1a1b24",
|
|
41
|
+
"--dsw-static-neutral-bluish-00": "#f8f8f2",
|
|
42
|
+
"--dsw-static-deepseek-50": "#f0eaff",
|
|
43
|
+
"--dsw-static-deepseek-100": "#e0d2fe",
|
|
44
|
+
"--dsw-static-deepseek-200": "#c8aafd",
|
|
45
|
+
"--dsw-static-deepseek-300": "#b088fc",
|
|
46
|
+
"--dsw-static-deepseek-400": "#8be9fd",
|
|
47
|
+
"--dsw-static-deepseek-450": "#bd93f9",
|
|
48
|
+
"--dsw-static-deepseek-500": "#a97dfa",
|
|
49
|
+
"--dsw-static-deepseek-600": "#7a5abf",
|
|
50
|
+
"--dsw-static-deepseek-800": "#44475a",
|
|
51
|
+
"--dsw-static-deepseek-900": "#383a4a",
|
|
52
|
+
"--dsw-static-deepseek-description": "--dsw-static-deepseek-* overrides from the official port. 400 link / brand-text → cyan, 450 brand-primary → purple, 500 hover.",
|
|
53
|
+
"--dsw-static-deepseek-700-delete": "#5a3e99",
|
|
54
|
+
"--dsw-static-blue-50": "#eafcff",
|
|
55
|
+
"--dsw-static-blue-75": "#c6f3fd",
|
|
56
|
+
"--dsw-static-blue-100": "#b0edfc",
|
|
57
|
+
"--dsw-static-blue-300": "#8be9fd",
|
|
58
|
+
"--dsw-static-blue-400": "#6fd8f0",
|
|
59
|
+
"--dsw-static-blue-450": "#58c6e2",
|
|
60
|
+
"--dsw-static-blue-500": "#41b0cf",
|
|
61
|
+
"--dsw-static-blue-600": "#2b94b5",
|
|
62
|
+
"--dsw-static-blue-800": "#1c6a86",
|
|
63
|
+
"--dsw-static-blue-900": "#165064",
|
|
64
|
+
"--dsw-static-blue-950": "#103d4d",
|
|
65
|
+
"--dsw-static-blue-50p": "#d9f8fe",
|
|
66
|
+
"--dsw-static-red-50": "#ffecec",
|
|
67
|
+
"--dsw-static-red-100": "#ffd9d9",
|
|
68
|
+
"--dsw-static-red-400": "#ff5555",
|
|
69
|
+
"--dsw-static-red-500": "#ec4d4d",
|
|
70
|
+
"--dsw-static-red-600": "#cd4141",
|
|
71
|
+
"--dsw-static-red-900": "#5e2727",
|
|
72
|
+
"--dsw-static-green-100": "#dcfce6",
|
|
73
|
+
"--dsw-static-green-400": "#50fa7b",
|
|
74
|
+
"--dsw-static-green-500": "#3fdd68",
|
|
75
|
+
"--dsw-static-green-900": "#205c38",
|
|
76
|
+
"--dsw-static-amber-100": "#fff0dc",
|
|
77
|
+
"--dsw-static-amber-400": "#ffb86c",
|
|
78
|
+
"--dsw-static-amber-500": "#f2a352",
|
|
79
|
+
"--dsw-static-amber-600": "#d48b43",
|
|
80
|
+
"--dsw-static-amber-900": "#6b4521",
|
|
81
|
+
"--dsw-alias-bg-base": "#262833",
|
|
82
|
+
"--dsw-alias-bg-layer-1": "#2b2d3a",
|
|
83
|
+
"--dsw-alias-bg-layer-2": "#343746",
|
|
84
|
+
"--dsw-alias-bg-layer-3": "#44475a",
|
|
85
|
+
"--dsw-alias-bg-module-platform": "#44475a",
|
|
86
|
+
"--dsw-alias-bg-overlay": "#44475a",
|
|
87
|
+
"--dsw-alias-bg-multi-select": "#44475a",
|
|
88
|
+
"--dsw-alias-bg-skeleton": "rgba(248, 248, 242, 0.05)",
|
|
89
|
+
"--dsw-alias-bg-mask-1": "rgba(0, 0, 0, 0.45)",
|
|
90
|
+
"--dsw-alias-bg-mask-2": "rgba(0, 0, 0, 0.55)",
|
|
91
|
+
"--dsw-alias-bg-mask-3": "rgba(0, 0, 0, 0.65)",
|
|
92
|
+
"--dsw-alias-bg-mask-photo": "rgba(0, 0, 0, 0.88)",
|
|
93
|
+
"--dsw-alias-bg-mask-drop": "rgba(32, 33, 43, 0.7)",
|
|
94
|
+
"--dsw-alias-border-l1": "color-mix(in srgb, #6272a4 30%, transparent)",
|
|
95
|
+
"--dsw-alias-border-l2": "color-mix(in srgb, #6272a4 45%, transparent)",
|
|
96
|
+
"--dsw-alias-border-l3": "color-mix(in srgb, #6272a4 60%, transparent)",
|
|
97
|
+
"--dsw-alias-border-l4": "color-mix(in srgb, #6272a4 75%, transparent)",
|
|
98
|
+
"--dsw-alias-border-inverted": "rgba(0, 0, 0, 0.08)",
|
|
99
|
+
"--dsw-alias-border-inverted2": "rgba(0, 0, 0, 0.12)",
|
|
100
|
+
"--dsw-alias-border-l2-darkmode-thin": "rgba(98, 114, 164, 0.3)",
|
|
101
|
+
"--dsw-alias-brand-primary": "#bd93f9",
|
|
102
|
+
"--dsw-alias-brand-primary-invert": "#f8f8f2",
|
|
103
|
+
"--dsw-alias-brand-primary-new-colorprimary-new-color": "#bd93f9",
|
|
104
|
+
"--dsw-alias-brand-text": "#8be9fd",
|
|
105
|
+
"--dsw-alias-button-contrast-fill": "#282a36",
|
|
106
|
+
"--dsw-alias-button-elevated-fill": "#343746",
|
|
107
|
+
"--dsw-alias-button-floating-fill": "#44475a",
|
|
108
|
+
"--dsw-alias-button-floating-hover": "#59658e",
|
|
109
|
+
"--dsw-alias-button-ghost-active-border": "#6272a4",
|
|
110
|
+
"--dsw-alias-button-ghost-active-fill": "#343746",
|
|
111
|
+
"--dsw-alias-button-ghost-active-hover": "#44475a",
|
|
112
|
+
"--dsw-alias-button-info-fill": "#bd93f9",
|
|
113
|
+
"--dsw-alias-button-info-hover": "#5a3e99",
|
|
114
|
+
"--dsw-alias-button-primary-dimmed": "#7a5abf",
|
|
115
|
+
"--dsw-alias-button-primary-fill": "#bd93f9",
|
|
116
|
+
"--dsw-alias-button-primary-hover": "#a97dfa",
|
|
117
|
+
"--dsw-alias-button-tool-bar-fill": "rgba(98, 114, 164, 0.35)",
|
|
118
|
+
"--dsw-alias-button-tool-bar-fill-invisible": "rgba(98, 114, 164, 0.2)",
|
|
119
|
+
"--dsw-alias-button-tool-bar-hover": "rgba(189, 147, 249, 0.35)",
|
|
120
|
+
"--dsw-alias-interactive-bg-active": "rgba(248, 248, 242, 0.14)",
|
|
121
|
+
"--dsw-alias-interactive-bg-hover": "rgba(248, 248, 242, 0.08)",
|
|
122
|
+
"--dsw-alias-interactive-bg-hover-accent": "rgba(189, 147, 249, 0.16)",
|
|
123
|
+
"--dsw-alias-interactive-bg-hover-danger": "rgba(255, 85, 85, 0.14)",
|
|
124
|
+
"--dsw-alias-interactive-bg-hover-solid": "#59658e",
|
|
125
|
+
"--dsw-alias-label-caption": "#6272a4",
|
|
126
|
+
"--dsw-alias-label-dimmed": "#7b8fc4",
|
|
127
|
+
"--dsw-alias-label-primary": "#f8f8f2",
|
|
128
|
+
"--dsw-alias-label-primary-bluish": "#f8f8f2",
|
|
129
|
+
"--dsw-alias-label-primary-dimmed": "#9ba9d0",
|
|
130
|
+
"--dsw-alias-label-primary-foreground": "#282a36",
|
|
131
|
+
"--dsw-alias-label-primary-inverted": "#44475a",
|
|
132
|
+
"--dsw-alias-label-secondary": "#bbc4de",
|
|
133
|
+
"--dsw-alias-label-tertiary": "#9ba9d0",
|
|
134
|
+
"--dsw-alias-markdown-citation": "#44475a",
|
|
135
|
+
"--dsw-alias-markdown-code-block": "#343746",
|
|
136
|
+
"--dsw-alias-markdown-code-block-banner": "#2b2d3a",
|
|
137
|
+
"--dsw-alias-markdown-code-segment-selected": "#44475a",
|
|
138
|
+
"--dsw-alias-markdown-code-segment-unselected": "#343746",
|
|
139
|
+
"--dsw-alias-markdown-inline-code": "#44475a",
|
|
140
|
+
"--dsw-alias-markdown-placeholder": "#7b8fc4",
|
|
141
|
+
"--dsw-alias-markdown-tag": "#bd93f9",
|
|
142
|
+
"--dsw-alias-scrollbar-bg-l1": "#44475a",
|
|
143
|
+
"--dsw-alias-scrollbar-bg-l2": "#44475a",
|
|
144
|
+
"--dsw-alias-scrollbar-hover-l1": "#59658e",
|
|
145
|
+
"--dsw-alias-scrollbar-hover-l2": "#59658e",
|
|
146
|
+
"--dsw-alias-separator-primary": "rgba(189, 147, 249, 0.8)",
|
|
147
|
+
"--dsw-alias-state-business-primary": "#8be9fd",
|
|
148
|
+
"--dsw-alias-state-business-tertiary": "rgba(139, 233, 253, 0.1)",
|
|
149
|
+
"--dsw-alias-state-error-primary": "#ff5555",
|
|
150
|
+
"--dsw-alias-state-error-secondary": "rgba(255, 85, 85, 0.16)",
|
|
151
|
+
"--dsw-alias-state-success-primary": "#50fa7b",
|
|
152
|
+
"--dsw-alias-state-success-secondary": "rgba(80, 250, 123, 0.16)",
|
|
153
|
+
"--dsw-alias-state-success-tertiary": "rgba(80, 250, 123, 0.1)",
|
|
154
|
+
"--dsw-alias-state-warn-label": "#ffca80",
|
|
155
|
+
"--dsw-alias-state-warn-primary": "#ffb86c",
|
|
156
|
+
"--dsw-alias-state-warn-secondary": "rgba(255, 184, 108, 0.16)",
|
|
157
|
+
"--dsw-alias-state-warn-tertiary": "rgba(255, 184, 108, 0.1)",
|
|
158
|
+
"--dsw-alias-toast-bg": "#343746",
|
|
159
|
+
"--dsw-alias-tooltip-bg": "#44475a",
|
|
160
|
+
"--dsw-specific-sidebar-fill": "#2b2d3a",
|
|
161
|
+
"--dsw-specific-sidebar-nav-item-active": "#44475a",
|
|
162
|
+
"--dsw-specific-sidebar-nav-item-active-accent": "rgba(189, 147, 249, 0.25)",
|
|
163
|
+
"--dsw-specific-sidebar-nav-item-hover": "#343746",
|
|
164
|
+
"--dsw-specific-bubble": "#343746",
|
|
165
|
+
"--dsw-specific-bubble-highlight": "#44475a",
|
|
166
|
+
"--dsw-specific-input-major": "#2b2d3a",
|
|
167
|
+
"--dsw-specific-login-input": "#2b2d3a",
|
|
168
|
+
"--dsw-specific-menu": "#343746",
|
|
169
|
+
"--dsw-specific-selector": "#44475a",
|
|
170
|
+
"--dsw-specific-tip": "#343746",
|
|
171
|
+
"--shiki-description": "The official Prism token mapping, translated to the DSH shiki vocabulary: comments #6272a4, punctuation #f8f8f2, tags/parameters/this → cyan, numbers/constants/strings/inserted → yellow, keywords/operators/builtins/regex → pink, functions → green, deleted/important → red.",
|
|
172
|
+
"--shiki-foreground": "#f8f8f2",
|
|
173
|
+
"--shiki-background": "#282a36",
|
|
174
|
+
"--shiki-token-comment": "#6272a4",
|
|
175
|
+
"--shiki-token-punctuation": "#f8f8f2",
|
|
176
|
+
"--shiki-token-constant": "#f1fa8c",
|
|
177
|
+
"--shiki-token-string": "#f1fa8c",
|
|
178
|
+
"--shiki-token-string-expression": "#f1fa8c",
|
|
179
|
+
"--shiki-token-inserted": "#f1fa8c",
|
|
180
|
+
"--shiki-token-link": "#f1fa8c",
|
|
181
|
+
"--shiki-token-keyword": "#ff79c6",
|
|
182
|
+
"--shiki-token-parameter": "#8be9fd",
|
|
183
|
+
"--shiki-token-function": "#50fa7b",
|
|
184
|
+
"--shiki-token-deleted": "#ff5555",
|
|
185
|
+
"--shiki-token-changed": "#ffb86c",
|
|
186
|
+
"--scroll-color": "rgba(98, 114, 164, 0.4)",
|
|
187
|
+
"--scroll-color-hover": "rgba(189, 147, 249, 0.6)"
|
|
188
|
+
}
|
|
189
|
+
}
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "dracula",
|
|
3
|
+
"name": "Dracula",
|
|
4
|
+
"colorScheme": "dark",
|
|
5
|
+
"tokens": {
|
|
6
|
+
"--dsw-static-neutral-50": "#efefe9",
|
|
7
|
+
"--dsw-static-neutral-100": "#e2e2da",
|
|
8
|
+
"--dsw-static-neutral-200": "#cdcdc5",
|
|
9
|
+
"--dsw-static-neutral-300": "#b6b6ae",
|
|
10
|
+
"--dsw-static-neutral-400": "#8f8f96",
|
|
11
|
+
"--dsw-static-neutral-500": "#6d6d7a",
|
|
12
|
+
"--dsw-static-neutral-550": "#5c5c6b",
|
|
13
|
+
"--dsw-static-neutral-600": "#4d4d5e",
|
|
14
|
+
"--dsw-static-neutral-700": "#3e3e50",
|
|
15
|
+
"--dsw-static-neutral-800": "#30303f",
|
|
16
|
+
"--dsw-static-neutral-850": "#282a36",
|
|
17
|
+
"--dsw-static-neutral-900": "#20212b",
|
|
18
|
+
"--dsw-static-neutral-1000": "#191a21",
|
|
19
|
+
"--dsw-static-neutral-description": "Anchor stops of the neutral grayscale ramp (--dsw-static-neutral-*), lightest (00) to darkest (1000). The official port does not override this ramp; values are Dracula-gray interpolations for a self-contained theme.",
|
|
20
|
+
"--dsw-static-neutral-00": "#f8f8f2",
|
|
21
|
+
"--dsw-static-neutral-bluish-50": "#f8f8f2",
|
|
22
|
+
"--dsw-static-neutral-bluish-60": "#282a36",
|
|
23
|
+
"--dsw-static-neutral-bluish-75": "#eef0f8",
|
|
24
|
+
"--dsw-static-neutral-bluish-100": "#e8eaf4",
|
|
25
|
+
"--dsw-static-neutral-bluish-150": "#d8ddef",
|
|
26
|
+
"--dsw-static-neutral-bluish-200": "#ccd2e8",
|
|
27
|
+
"--dsw-static-neutral-bluish-250": "#c4cbe3",
|
|
28
|
+
"--dsw-static-neutral-bluish-300": "#bbc4de",
|
|
29
|
+
"--dsw-static-neutral-bluish-400": "#9ba9d0",
|
|
30
|
+
"--dsw-static-neutral-bluish-500": "#7b8fc4",
|
|
31
|
+
"--dsw-static-neutral-bluish-550": "#6f81b4",
|
|
32
|
+
"--dsw-static-neutral-bluish-600": "#6272a4",
|
|
33
|
+
"--dsw-static-neutral-bluish-700": "#6272a4",
|
|
34
|
+
"--dsw-static-neutral-bluish-750": "#44475a",
|
|
35
|
+
"--dsw-static-neutral-bluish-800": "#44475a",
|
|
36
|
+
"--dsw-static-neutral-bluish-850": "#2e3040",
|
|
37
|
+
"--dsw-static-neutral-bluish-875": "#282a36",
|
|
38
|
+
"--dsw-static-neutral-bluish-900": "#282a36",
|
|
39
|
+
"--dsw-static-neutral-bluish-950": "#20212b",
|
|
40
|
+
"--dsw-static-neutral-bluish-1000": "#1a1b24",
|
|
41
|
+
"--dsw-static-neutral-bluish-00": "#f8f8f2",
|
|
42
|
+
"--dsw-static-deepseek-50": "#f0eaff",
|
|
43
|
+
"--dsw-static-deepseek-100": "#e0d2fe",
|
|
44
|
+
"--dsw-static-deepseek-200": "#c8aafd",
|
|
45
|
+
"--dsw-static-deepseek-300": "#b088fc",
|
|
46
|
+
"--dsw-static-deepseek-400": "#8be9fd",
|
|
47
|
+
"--dsw-static-deepseek-450": "#bd93f9",
|
|
48
|
+
"--dsw-static-deepseek-500": "#a97dfa",
|
|
49
|
+
"--dsw-static-deepseek-600": "#7a5abf",
|
|
50
|
+
"--dsw-static-deepseek-800": "#44475a",
|
|
51
|
+
"--dsw-static-deepseek-900": "#383a4a",
|
|
52
|
+
"--dsw-static-deepseek-description": "--dsw-static-deepseek-* overrides from the official port. 400 link / brand-text → cyan, 450 brand-primary → purple, 500 hover.",
|
|
53
|
+
"--dsw-static-deepseek-700-delete": "#5a3e99",
|
|
54
|
+
"--dsw-static-blue-50": "#eafcff",
|
|
55
|
+
"--dsw-static-blue-75": "#c6f3fd",
|
|
56
|
+
"--dsw-static-blue-100": "#b0edfc",
|
|
57
|
+
"--dsw-static-blue-300": "#8be9fd",
|
|
58
|
+
"--dsw-static-blue-400": "#6fd8f0",
|
|
59
|
+
"--dsw-static-blue-450": "#58c6e2",
|
|
60
|
+
"--dsw-static-blue-500": "#41b0cf",
|
|
61
|
+
"--dsw-static-blue-600": "#2b94b5",
|
|
62
|
+
"--dsw-static-blue-800": "#1c6a86",
|
|
63
|
+
"--dsw-static-blue-900": "#165064",
|
|
64
|
+
"--dsw-static-blue-950": "#103d4d",
|
|
65
|
+
"--dsw-static-blue-50p": "#d9f8fe",
|
|
66
|
+
"--dsw-static-red-50": "#ffecec",
|
|
67
|
+
"--dsw-static-red-100": "#ffd9d9",
|
|
68
|
+
"--dsw-static-red-400": "#ff5555",
|
|
69
|
+
"--dsw-static-red-500": "#ec4d4d",
|
|
70
|
+
"--dsw-static-red-600": "#cd4141",
|
|
71
|
+
"--dsw-static-red-900": "#5e2727",
|
|
72
|
+
"--dsw-static-green-100": "#dcfce6",
|
|
73
|
+
"--dsw-static-green-400": "#50fa7b",
|
|
74
|
+
"--dsw-static-green-500": "#3fdd68",
|
|
75
|
+
"--dsw-static-green-900": "#205c38",
|
|
76
|
+
"--dsw-static-amber-100": "#fff0dc",
|
|
77
|
+
"--dsw-static-amber-400": "#ffb86c",
|
|
78
|
+
"--dsw-static-amber-500": "#f2a352",
|
|
79
|
+
"--dsw-static-amber-600": "#d48b43",
|
|
80
|
+
"--dsw-static-amber-900": "#6b4521",
|
|
81
|
+
"--dsw-alias-bg-base": "#20212b",
|
|
82
|
+
"--dsw-alias-bg-layer-1": "#282a36",
|
|
83
|
+
"--dsw-alias-bg-layer-2": "#2e3040",
|
|
84
|
+
"--dsw-alias-bg-layer-3": "#44475a",
|
|
85
|
+
"--dsw-alias-bg-module-platform": "#44475a",
|
|
86
|
+
"--dsw-alias-bg-overlay": "#44475a",
|
|
87
|
+
"--dsw-alias-bg-multi-select": "#44475a",
|
|
88
|
+
"--dsw-alias-bg-skeleton": "rgba(248, 248, 242, 0.05)",
|
|
89
|
+
"--dsw-alias-bg-mask-1": "rgba(0, 0, 0, 0.45)",
|
|
90
|
+
"--dsw-alias-bg-mask-2": "rgba(0, 0, 0, 0.55)",
|
|
91
|
+
"--dsw-alias-bg-mask-3": "rgba(0, 0, 0, 0.65)",
|
|
92
|
+
"--dsw-alias-bg-mask-photo": "rgba(0, 0, 0, 0.88)",
|
|
93
|
+
"--dsw-alias-bg-mask-drop": "rgba(32, 33, 43, 0.7)",
|
|
94
|
+
"--dsw-alias-border-l1": "color-mix(in srgb, #6272a4 30%, transparent)",
|
|
95
|
+
"--dsw-alias-border-l2": "color-mix(in srgb, #6272a4 45%, transparent)",
|
|
96
|
+
"--dsw-alias-border-l3": "color-mix(in srgb, #6272a4 60%, transparent)",
|
|
97
|
+
"--dsw-alias-border-l4": "color-mix(in srgb, #6272a4 75%, transparent)",
|
|
98
|
+
"--dsw-alias-border-inverted": "rgba(0, 0, 0, 0.08)",
|
|
99
|
+
"--dsw-alias-border-inverted2": "rgba(0, 0, 0, 0.12)",
|
|
100
|
+
"--dsw-alias-border-l2-darkmode-thin": "rgba(98, 114, 164, 0.3)",
|
|
101
|
+
"--dsw-alias-brand-primary": "#bd93f9",
|
|
102
|
+
"--dsw-alias-brand-primary-invert": "#f8f8f2",
|
|
103
|
+
"--dsw-alias-brand-primary-new-colorprimary-new-color": "#bd93f9",
|
|
104
|
+
"--dsw-alias-brand-text": "#8be9fd",
|
|
105
|
+
"--dsw-alias-button-contrast-fill": "#282a36",
|
|
106
|
+
"--dsw-alias-button-elevated-fill": "#2e3040",
|
|
107
|
+
"--dsw-alias-button-floating-fill": "#44475a",
|
|
108
|
+
"--dsw-alias-button-floating-hover": "#6272a4",
|
|
109
|
+
"--dsw-alias-button-ghost-active-border": "#6272a4",
|
|
110
|
+
"--dsw-alias-button-ghost-active-fill": "#2e3040",
|
|
111
|
+
"--dsw-alias-button-ghost-active-hover": "#44475a",
|
|
112
|
+
"--dsw-alias-button-info-fill": "#bd93f9",
|
|
113
|
+
"--dsw-alias-button-info-hover": "#5a3e99",
|
|
114
|
+
"--dsw-alias-button-primary-dimmed": "#7a5abf",
|
|
115
|
+
"--dsw-alias-button-primary-fill": "#bd93f9",
|
|
116
|
+
"--dsw-alias-button-primary-hover": "#a97dfa",
|
|
117
|
+
"--dsw-alias-button-tool-bar-fill": "rgba(98, 114, 164, 0.35)",
|
|
118
|
+
"--dsw-alias-button-tool-bar-fill-invisible": "rgba(98, 114, 164, 0.2)",
|
|
119
|
+
"--dsw-alias-button-tool-bar-hover": "rgba(189, 147, 249, 0.35)",
|
|
120
|
+
"--dsw-alias-interactive-bg-active": "rgba(248, 248, 242, 0.14)",
|
|
121
|
+
"--dsw-alias-interactive-bg-hover": "rgba(248, 248, 242, 0.08)",
|
|
122
|
+
"--dsw-alias-interactive-bg-hover-accent": "rgba(189, 147, 249, 0.16)",
|
|
123
|
+
"--dsw-alias-interactive-bg-hover-danger": "rgba(255, 85, 85, 0.14)",
|
|
124
|
+
"--dsw-alias-interactive-bg-hover-solid": "#44475a",
|
|
125
|
+
"--dsw-alias-label-caption": "#6272a4",
|
|
126
|
+
"--dsw-alias-label-dimmed": "#7b8fc4",
|
|
127
|
+
"--dsw-alias-label-primary": "#f8f8f2",
|
|
128
|
+
"--dsw-alias-label-primary-bluish": "#f8f8f2",
|
|
129
|
+
"--dsw-alias-label-primary-dimmed": "#9ba9d0",
|
|
130
|
+
"--dsw-alias-label-primary-foreground": "#282a36",
|
|
131
|
+
"--dsw-alias-label-primary-inverted": "#44475a",
|
|
132
|
+
"--dsw-alias-label-secondary": "#bbc4de",
|
|
133
|
+
"--dsw-alias-label-tertiary": "#9ba9d0",
|
|
134
|
+
"--dsw-alias-markdown-citation": "#44475a",
|
|
135
|
+
"--dsw-alias-markdown-code-block": "#2e3040",
|
|
136
|
+
"--dsw-alias-markdown-code-block-banner": "#282a36",
|
|
137
|
+
"--dsw-alias-markdown-code-segment-selected": "#44475a",
|
|
138
|
+
"--dsw-alias-markdown-code-segment-unselected": "#2e3040",
|
|
139
|
+
"--dsw-alias-markdown-inline-code": "#44475a",
|
|
140
|
+
"--dsw-alias-markdown-placeholder": "#7b8fc4",
|
|
141
|
+
"--dsw-alias-markdown-tag": "#bd93f9",
|
|
142
|
+
"--dsw-alias-scrollbar-bg-l1": "rgba(98, 114, 164, 0.4)",
|
|
143
|
+
"--dsw-alias-scrollbar-bg-l2": "rgba(98, 114, 164, 0.4)",
|
|
144
|
+
"--dsw-alias-scrollbar-hover-l1": "rgba(189, 147, 249, 0.6)",
|
|
145
|
+
"--dsw-alias-scrollbar-hover-l2": "rgba(189, 147, 249, 0.6)",
|
|
146
|
+
"--dsw-alias-separator-primary": "rgba(189, 147, 249, 0.8)",
|
|
147
|
+
"--dsw-alias-state-business-primary": "#8be9fd",
|
|
148
|
+
"--dsw-alias-state-business-tertiary": "rgba(139, 233, 253, 0.1)",
|
|
149
|
+
"--dsw-alias-state-error-primary": "#ff5555",
|
|
150
|
+
"--dsw-alias-state-error-secondary": "rgba(255, 85, 85, 0.16)",
|
|
151
|
+
"--dsw-alias-state-success-primary": "#50fa7b",
|
|
152
|
+
"--dsw-alias-state-success-secondary": "rgba(80, 250, 123, 0.16)",
|
|
153
|
+
"--dsw-alias-state-success-tertiary": "rgba(80, 250, 123, 0.1)",
|
|
154
|
+
"--dsw-alias-state-warn-label": "#ffca80",
|
|
155
|
+
"--dsw-alias-state-warn-primary": "#ffb86c",
|
|
156
|
+
"--dsw-alias-state-warn-secondary": "rgba(255, 184, 108, 0.16)",
|
|
157
|
+
"--dsw-alias-state-warn-tertiary": "rgba(255, 184, 108, 0.1)",
|
|
158
|
+
"--dsw-alias-toast-bg": "#2e3040",
|
|
159
|
+
"--dsw-alias-tooltip-bg": "#44475a",
|
|
160
|
+
"--dsw-specific-sidebar-fill": "#282a36",
|
|
161
|
+
"--dsw-specific-sidebar-nav-item-active": "#44475a",
|
|
162
|
+
"--dsw-specific-sidebar-nav-item-active-accent": "rgba(189, 147, 249, 0.25)",
|
|
163
|
+
"--dsw-specific-sidebar-nav-item-hover": "#2e3040",
|
|
164
|
+
"--dsw-specific-bubble": "#2e3040",
|
|
165
|
+
"--dsw-specific-bubble-highlight": "#44475a",
|
|
166
|
+
"--dsw-specific-input-major": "#282a36",
|
|
167
|
+
"--dsw-specific-login-input": "#282a36",
|
|
168
|
+
"--dsw-specific-menu": "#2e3040",
|
|
169
|
+
"--dsw-specific-selector": "#44475a",
|
|
170
|
+
"--dsw-specific-tip": "#2e3040",
|
|
171
|
+
"--shiki-description": "The official Prism token mapping, translated to the DSH shiki vocabulary: comments #6272a4, punctuation #f8f8f2, tags/parameters/this → cyan, numbers/constants/strings/inserted → yellow, keywords/operators/builtins/regex → pink, functions → green, deleted/important → red.",
|
|
172
|
+
"--shiki-foreground": "#f8f8f2",
|
|
173
|
+
"--shiki-background": "#282a36",
|
|
174
|
+
"--shiki-token-comment": "#6272a4",
|
|
175
|
+
"--shiki-token-punctuation": "#f8f8f2",
|
|
176
|
+
"--shiki-token-constant": "#f1fa8c",
|
|
177
|
+
"--shiki-token-string": "#f1fa8c",
|
|
178
|
+
"--shiki-token-string-expression": "#f1fa8c",
|
|
179
|
+
"--shiki-token-inserted": "#f1fa8c",
|
|
180
|
+
"--shiki-token-link": "#f1fa8c",
|
|
181
|
+
"--shiki-token-keyword": "#ff79c6",
|
|
182
|
+
"--shiki-token-parameter": "#8be9fd",
|
|
183
|
+
"--shiki-token-function": "#50fa7b",
|
|
184
|
+
"--shiki-token-deleted": "#ff5555",
|
|
185
|
+
"--shiki-token-changed": "#ffb86c",
|
|
186
|
+
"--scroll-color": "rgba(98, 114, 164, 0.4)",
|
|
187
|
+
"--scroll-color-hover": "rgba(189, 147, 249, 0.6)"
|
|
188
|
+
}
|
|
189
|
+
}
|