@mevdragon/vidfarm-devcli 0.5.2 → 0.6.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.
Files changed (113) hide show
  1. package/README.md +3 -3
  2. package/demo/README.md +28 -0
  3. package/demo/dist/app.css +1 -0
  4. package/demo/dist/app.js +1184 -0
  5. package/demo/dist/chunks/chunk-DXB73IDG.js +1 -0
  6. package/demo/dist/chunks/chunk-S7OWAJDS.js +36 -0
  7. package/demo/dist/chunks/chunk-VTIBZ6AN.js +1 -0
  8. package/demo/dist/chunks/dist-ADSJKBVE.js +332 -0
  9. package/demo/dist/chunks/domEditingLayers-VZMLL4AP-SGHWPND4.js +1 -0
  10. package/demo/dist/chunks/hyperframes-player-XB65TCD6.js +425 -0
  11. package/demo/dist/chunks/lib-XAQ37YOE.js +1 -0
  12. package/demo/dist/chunks/src-TJ2QYA4U.js +207 -0
  13. package/demo/dist/favicon.ico +0 -0
  14. package/demo/dist/icons/timeline/audio.svg +7 -0
  15. package/demo/dist/icons/timeline/captions.svg +5 -0
  16. package/demo/dist/icons/timeline/composition.svg +12 -0
  17. package/demo/dist/icons/timeline/image.svg +18 -0
  18. package/demo/dist/icons/timeline/music.svg +10 -0
  19. package/demo/dist/icons/timeline/text.svg +3 -0
  20. package/demo/dist/index.html +15 -0
  21. package/dist/src/account-pages-legacy.js +9396 -0
  22. package/dist/src/account-pages.js +61 -0
  23. package/dist/src/app.js +14378 -0
  24. package/dist/src/cli.js +1 -1
  25. package/dist/src/composition-runtime.js +613 -0
  26. package/dist/src/config.js +166 -0
  27. package/dist/src/context.js +447 -0
  28. package/dist/src/dev-app-legacy.js +739 -0
  29. package/dist/src/dev-app.js +6 -0
  30. package/dist/src/domain.js +2 -0
  31. package/dist/src/editor-chat-history.js +82 -0
  32. package/dist/src/editor-chat.js +449 -0
  33. package/dist/src/editor-dark-theme.js +1128 -0
  34. package/dist/src/frontend/debug.js +71 -0
  35. package/dist/src/frontend/flockposter-cache-store.js +124 -0
  36. package/dist/src/frontend/homepage-client.js +182 -0
  37. package/dist/src/frontend/homepage-shared.js +4 -0
  38. package/dist/src/frontend/homepage-store.js +28 -0
  39. package/dist/src/frontend/homepage-view.js +547 -0
  40. package/dist/src/frontend/page-runtime-client.js +132 -0
  41. package/dist/src/frontend/page-runtime-store.js +9 -0
  42. package/dist/src/frontend/sentry.js +42 -0
  43. package/dist/src/frontend/template-editor-chat.js +3960 -0
  44. package/dist/src/help-page.js +346 -0
  45. package/dist/src/homepage.js +1235 -0
  46. package/dist/src/hyperframes/composition.js +180 -0
  47. package/dist/src/index.js +16 -0
  48. package/dist/src/instrument.js +30 -0
  49. package/dist/src/lib/crypto.js +45 -0
  50. package/dist/src/lib/dev-log.js +54 -0
  51. package/dist/src/lib/display-name.js +11 -0
  52. package/dist/src/lib/ids.js +24 -0
  53. package/dist/src/lib/images.js +19 -0
  54. package/dist/src/lib/json.js +15 -0
  55. package/dist/src/lib/package-root.js +47 -0
  56. package/dist/src/lib/template-paths.js +28 -0
  57. package/dist/src/lib/time.js +7 -0
  58. package/dist/src/lib/url-clean.js +85 -0
  59. package/dist/src/page-runtime.js +2 -0
  60. package/dist/src/page-shell.js +1381 -0
  61. package/dist/src/primitive-context.js +357 -0
  62. package/dist/src/primitive-registry.js +2436 -0
  63. package/dist/src/primitive-sdk.js +4 -0
  64. package/dist/src/primitives/hyperframes-media.js +108 -0
  65. package/dist/src/react-page-shell.js +35 -0
  66. package/dist/src/ready-post-schedule-component.js +1540 -0
  67. package/dist/src/registry.js +296 -0
  68. package/dist/src/runtime.js +35 -0
  69. package/dist/src/services/api-call-history.js +249 -0
  70. package/dist/src/services/auth.js +152 -0
  71. package/dist/src/services/billing-pricing.js +39 -0
  72. package/dist/src/services/billing.js +228 -0
  73. package/dist/src/services/cast.js +127 -0
  74. package/dist/src/services/chat-threads.js +92 -0
  75. package/dist/src/services/composition-sanitize.js +124 -0
  76. package/dist/src/services/composition-watch.js +79 -0
  77. package/dist/src/services/fork-access.js +93 -0
  78. package/dist/src/services/fork-manifest.js +42 -0
  79. package/dist/src/services/ghostcut.js +179 -0
  80. package/dist/src/services/hyperframes.js +2307 -0
  81. package/dist/src/services/job-capacity.js +14 -0
  82. package/dist/src/services/job-logs.js +197 -0
  83. package/dist/src/services/jobs.js +136 -0
  84. package/dist/src/services/local-dynamo.js +0 -0
  85. package/dist/src/services/media-processing.js +766 -0
  86. package/dist/src/services/primitive-media-lambda.js +280 -0
  87. package/dist/src/services/providers.js +2926 -0
  88. package/dist/src/services/rate-limits.js +262 -0
  89. package/dist/src/services/serverless-auth.js +382 -0
  90. package/dist/src/services/serverless-jobs.js +1082 -0
  91. package/dist/src/services/serverless-provider-keys.js +409 -0
  92. package/dist/src/services/serverless-records.js +1385 -0
  93. package/dist/src/services/serverless-template-configs.js +75 -0
  94. package/dist/src/services/storage.js +383 -0
  95. package/dist/src/services/template-certification.js +413 -0
  96. package/dist/src/services/template-loader.js +99 -0
  97. package/dist/src/services/template-runtime-bundles.js +217 -0
  98. package/dist/src/services/template-sources.js +1017 -0
  99. package/dist/src/services/video-normalization.js +2 -0
  100. package/dist/src/services/webhooks.js +62 -0
  101. package/dist/src/template-editor-pages.js +2576 -0
  102. package/dist/src/template-editor-shell.js +2840 -0
  103. package/dist/src/template-sdk.js +4 -0
  104. package/dist/src/worker.js +17 -0
  105. package/package.json +6 -4
  106. package/public/assets/homepage-app.js +54 -0
  107. package/public/assets/homepage-client-app.js +80 -0
  108. package/public/assets/page-runtime-client-app.js +94 -0
  109. package/src/assets/SELLING_AWARENESS_STAGES.md +579 -0
  110. package/src/assets/SELLING_WITH_HOOKS.md +377 -0
  111. package/src/assets/SELLING_WITH_VSLS.md +606 -0
  112. package/src/assets/favicon.ico +0 -0
  113. package/src/assets/logo-vidfarm.png +0 -0
@@ -0,0 +1,1128 @@
1
+ // Dark green "HyperFrames render-bay" theme.
2
+ // Applied only when renderPageShell receives bodyClass === "is-editor-theme".
3
+ // Injected after the base page CSS so it overrides the light-paper defaults.
4
+ export const EDITOR_DARK_THEME_CSS = `
5
+ /* Dark green theme (editor pages only) — override light-paper base. */
6
+ :root {
7
+ color-scheme: dark;
8
+ --bg: #030603;
9
+ --paper: rgba(7, 13, 7, 0.82);
10
+ --paper-strong: rgba(12, 20, 12, 0.96);
11
+ --panel: transparent;
12
+ --panel-muted: rgba(18, 28, 15, 0.82);
13
+ --ink: #fff9d7;
14
+ --muted: #a6b39b;
15
+ --line: rgba(210, 255, 110, 0.2);
16
+ --line-strong: rgba(248, 210, 74, 0.46);
17
+ --accent: #d7ff46;
18
+ --accent-deep: #0b1209;
19
+ --accent-soft: rgba(215, 255, 70, 0.16);
20
+ --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
21
+ --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.32);
22
+ }
23
+
24
+ body.is-editor-theme {
25
+ color: var(--ink);
26
+ background:
27
+ radial-gradient(circle at 14% 14%, rgba(65, 255, 109, 0.2), transparent 26%),
28
+ radial-gradient(circle at 84% 8%, rgba(255, 216, 75, 0.18), transparent 28%),
29
+ radial-gradient(circle at 72% 82%, rgba(91, 146, 255, 0.12), transparent 24%),
30
+ linear-gradient(145deg, #020402 0%, #071006 46%, #171603 100%);
31
+ background-attachment: fixed;
32
+ }
33
+
34
+ body.is-editor-theme::before {
35
+ content: "";
36
+ position: fixed;
37
+ inset: 0;
38
+ pointer-events: none;
39
+ background-image:
40
+ linear-gradient(rgba(223, 255, 118, 0.055) 1px, transparent 1px),
41
+ linear-gradient(90deg, rgba(223, 255, 118, 0.045) 1px, transparent 1px),
42
+ linear-gradient(115deg, transparent 0 47%, rgba(255, 222, 88, 0.04) 48% 52%, transparent 53% 100%);
43
+ background-size: 30px 30px;
44
+ mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
45
+ }
46
+
47
+ body.is-editor-theme::after {
48
+ content: "";
49
+ position: fixed;
50
+ inset: auto -10% -18% -10%;
51
+ height: 34vh;
52
+ pointer-events: none;
53
+ background:
54
+ repeating-linear-gradient(90deg, rgba(215, 255, 70, 0.18) 0 2px, transparent 2px 72px),
55
+ linear-gradient(180deg, transparent, rgba(215, 255, 70, 0.08));
56
+ filter: blur(0.2px);
57
+ opacity: 0.45;
58
+ transform: perspective(520px) rotateX(58deg);
59
+ transform-origin: bottom center;
60
+ }
61
+
62
+ /* HyperFrames render-bay skin. Kept after page CSS so old surfaces cannot leak through visually. */
63
+ .frame {
64
+ overflow: visible;
65
+ }
66
+
67
+ .frame-body {
68
+ position: relative;
69
+ z-index: 1;
70
+ }
71
+
72
+ .topbar {
73
+ position: relative;
74
+ z-index: 40;
75
+ border: 1px solid rgba(215, 255, 70, 0.22);
76
+ background:
77
+ linear-gradient(135deg, rgba(10, 18, 9, 0.92), rgba(15, 18, 5, 0.84)),
78
+ radial-gradient(circle at 10% 0%, rgba(215, 255, 70, 0.14), transparent 36%);
79
+ box-shadow:
80
+ inset 0 1px 0 rgba(255, 255, 255, 0.08),
81
+ 0 24px 68px rgba(0, 0, 0, 0.44);
82
+ backdrop-filter: blur(18px);
83
+ }
84
+
85
+ .brand-lockup::before {
86
+ content: "";
87
+ width: 10px;
88
+ height: 10px;
89
+ border-radius: 999px;
90
+ background: #d7ff46;
91
+ box-shadow: 0 0 0 5px rgba(215, 255, 70, 0.12), 0 0 26px rgba(215, 255, 70, 0.64);
92
+ flex: 0 0 auto;
93
+ }
94
+
95
+ .brand-logo-image {
96
+ filter: saturate(1.12) contrast(1.08);
97
+ }
98
+
99
+ .brand-title,
100
+ .brand-title-static,
101
+ h1,
102
+ h2 {
103
+ color: var(--ink);
104
+ font-family: "Bebas Neue", "Instrument Serif", serif;
105
+ font-weight: 400;
106
+ letter-spacing: 0.01em;
107
+ text-transform: uppercase;
108
+ }
109
+
110
+ h3 {
111
+ color: var(--ink);
112
+ }
113
+
114
+ p,
115
+ .brand-account-meta,
116
+ .brand-account-meta span,
117
+ .helper,
118
+ .tiny,
119
+ .meta-copy {
120
+ color: var(--muted);
121
+ }
122
+
123
+ .primary-nav {
124
+ position: relative;
125
+ z-index: 45;
126
+ border: 1px solid rgba(215, 255, 70, 0.18);
127
+ background:
128
+ linear-gradient(180deg, rgba(18, 28, 15, 0.72), rgba(6, 12, 6, 0.78)),
129
+ repeating-linear-gradient(90deg, rgba(215, 255, 70, 0.07) 0 1px, transparent 1px 38px);
130
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
131
+ }
132
+
133
+ .nav-link,
134
+ .nav-menu-trigger,
135
+ .nav-menu-item {
136
+ color: rgba(255, 249, 215, 0.72);
137
+ font-family: "JetBrains Mono", "SFMono-Regular", monospace;
138
+ font-size: 0.78rem;
139
+ font-weight: 700;
140
+ letter-spacing: 0.02em;
141
+ }
142
+
143
+ .nav-link:hover,
144
+ .nav-menu-trigger:hover,
145
+ .nav-menu[open] > .nav-menu-trigger {
146
+ color: var(--ink);
147
+ }
148
+
149
+ .nav-link.is-active,
150
+ .nav-menu-item.is-active {
151
+ border-color: rgba(215, 255, 70, 0.42);
152
+ background: rgba(215, 255, 70, 0.12);
153
+ color: #f8ffd6;
154
+ box-shadow: 0 0 0 1px rgba(215, 255, 70, 0.08), 0 10px 28px rgba(0, 0, 0, 0.28);
155
+ }
156
+
157
+ .nav-menu-panel,
158
+ .logout-dialog,
159
+ .notice,
160
+ .empty-state {
161
+ z-index: 80;
162
+ border-color: rgba(215, 255, 70, 0.22);
163
+ background: rgba(8, 14, 8, 0.96);
164
+ color: var(--ink);
165
+ box-shadow: 0 26px 70px rgba(0, 0, 0, 0.52);
166
+ }
167
+
168
+ .surface,
169
+ .surface-hero,
170
+ .surface-muted,
171
+ .page-section,
172
+ .developer-panel,
173
+ .settings-pane,
174
+ .library-shell,
175
+ .help-shell,
176
+ .discover-shell,
177
+ .calendar-shell,
178
+ .custom-inpaint-panel,
179
+ .custom-inpaint-stage,
180
+ .custom-inpaint-output,
181
+ .editor-inpaint-panel,
182
+ .history-toolbar,
183
+ .history-group,
184
+ .history-subgroup,
185
+ .history-linked-job,
186
+ .history-media-modal,
187
+ .editor-hero,
188
+ .editor-section,
189
+ .editor-panel,
190
+ .editor-modal,
191
+ .editor-media-modal,
192
+ .editor-inpaint-modal,
193
+ .vf-editor-chat-http-card,
194
+ .vf-editor-chat-http-modal,
195
+ .library-post,
196
+ .library-options-panel,
197
+ .calendar-main,
198
+ .calendar-sidebar,
199
+ .calendar-day-panel,
200
+ .calendar-schedule-modal,
201
+ .help-details {
202
+ border-color: rgba(215, 255, 70, 0.18) !important;
203
+ background:
204
+ linear-gradient(180deg, rgba(13, 22, 11, 0.9), rgba(6, 11, 6, 0.9)),
205
+ radial-gradient(circle at 12% 0%, rgba(215, 255, 70, 0.1), transparent 30%) !important;
206
+ color: var(--ink);
207
+ box-shadow: var(--shadow-soft);
208
+ }
209
+
210
+ .surface-hero,
211
+ .editor-hero,
212
+ .discover-shell {
213
+ position: relative;
214
+ overflow: hidden;
215
+ }
216
+
217
+ .surface-hero::after,
218
+ .editor-hero::after,
219
+ .discover-shell::after {
220
+ content: "";
221
+ position: absolute;
222
+ inset: auto 20px 18px 20px;
223
+ height: 8px;
224
+ border-radius: 999px;
225
+ background: repeating-linear-gradient(90deg, rgba(215, 255, 70, 0.9) 0 18px, rgba(215, 255, 70, 0.2) 18px 22px, transparent 22px 54px);
226
+ opacity: 0.4;
227
+ pointer-events: none;
228
+ }
229
+
230
+ .button,
231
+ button,
232
+ .link-button,
233
+ .cta-button,
234
+ .history-filter-button,
235
+ .history-action-link,
236
+ .editor-history-button,
237
+ .vf-editor-chat-new-thread,
238
+ .vf-editor-chat-history-toggle,
239
+ .vf-editor-chat-history-close,
240
+ .vf-editor-chat-back-button {
241
+ border-color: rgba(215, 255, 70, 0.42);
242
+ background: linear-gradient(180deg, #e8ff63, #bddf26);
243
+ color: #071006;
244
+ font-family: "JetBrains Mono", "SFMono-Regular", monospace;
245
+ font-weight: 800;
246
+ letter-spacing: -0.02em;
247
+ box-shadow:
248
+ inset 0 1px 0 rgba(255, 255, 255, 0.48),
249
+ 0 12px 28px rgba(174, 219, 32, 0.18);
250
+ }
251
+
252
+ .button:hover,
253
+ button:hover,
254
+ .link-button:hover,
255
+ .cta-button:hover,
256
+ .history-filter-button:hover,
257
+ .history-action-link:hover,
258
+ .editor-history-button:hover {
259
+ border-color: rgba(248, 210, 74, 0.74);
260
+ box-shadow:
261
+ inset 0 1px 0 rgba(255, 255, 255, 0.54),
262
+ 0 14px 34px rgba(215, 255, 70, 0.24);
263
+ }
264
+
265
+ .button.secondary,
266
+ button.secondary,
267
+ .link-button.secondary,
268
+ .history-filter-button:not(.is-primary),
269
+ .editor-history-button:not(.is-primary),
270
+ .discover-media-modal-action,
271
+ .history-media-modal-source,
272
+ .editor-media-modal-source {
273
+ border-color: rgba(255, 249, 215, 0.16);
274
+ background: rgba(255, 249, 215, 0.08);
275
+ color: rgba(255, 249, 215, 0.88);
276
+ box-shadow: none;
277
+ }
278
+
279
+ .input,
280
+ input,
281
+ select,
282
+ textarea {
283
+ border-color: rgba(215, 255, 70, 0.22);
284
+ background: rgba(0, 0, 0, 0.34);
285
+ color: var(--ink);
286
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
287
+ }
288
+
289
+ input::placeholder,
290
+ textarea::placeholder {
291
+ color: rgba(166, 179, 155, 0.66);
292
+ }
293
+
294
+ input:focus,
295
+ select:focus,
296
+ textarea:focus {
297
+ border-color: rgba(215, 255, 70, 0.74);
298
+ box-shadow: 0 0 0 4px rgba(215, 255, 70, 0.13);
299
+ }
300
+
301
+ label,
302
+ .label,
303
+ .kicker,
304
+ .eyebrow,
305
+ .pill,
306
+ .pill-tag,
307
+ .history-chip,
308
+ .editor-pill,
309
+ .vf-editor-chat-kicker,
310
+ .vf-editor-chat-tracer-label,
311
+ .vf-editor-chat-http-label {
312
+ color: rgba(215, 255, 70, 0.82);
313
+ font-family: "JetBrains Mono", "SFMono-Regular", monospace;
314
+ letter-spacing: 0.18em;
315
+ }
316
+
317
+ .pill,
318
+ .pill-tag,
319
+ .history-chip,
320
+ .editor-pill,
321
+ .vf-editor-chat-tracer-chip,
322
+ .vf-editor-chat-thread-chip {
323
+ border-color: rgba(215, 255, 70, 0.18);
324
+ background: rgba(215, 255, 70, 0.08);
325
+ color: rgba(255, 249, 215, 0.86);
326
+ }
327
+
328
+ pre,
329
+ code,
330
+ .vf-editor-chat-http-pre {
331
+ border-color: rgba(215, 255, 70, 0.18);
332
+ background: rgba(0, 0, 0, 0.48);
333
+ color: #e8ff9b;
334
+ }
335
+
336
+ .discover-shell {
337
+ border: 1px solid rgba(215, 255, 70, 0.22);
338
+ background:
339
+ radial-gradient(circle at 9% 12%, rgba(215, 255, 70, 0.12), transparent 30%),
340
+ linear-gradient(135deg, rgba(9, 15, 8, 0.96), rgba(3, 6, 3, 0.94)) !important;
341
+ box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
342
+ }
343
+
344
+ .discover-sidebar {
345
+ border-right-color: rgba(215, 255, 70, 0.18);
346
+ background:
347
+ linear-gradient(180deg, rgba(16, 27, 12, 0.94), rgba(4, 8, 4, 0.9)),
348
+ repeating-linear-gradient(0deg, rgba(215, 255, 70, 0.06) 0 1px, transparent 1px 44px) !important;
349
+ }
350
+
351
+ .discover-filter-block {
352
+ padding: 18px;
353
+ border: 1px solid rgba(215, 255, 70, 0.16);
354
+ border-radius: 20px;
355
+ background: rgba(0, 0, 0, 0.22);
356
+ }
357
+
358
+ .bookmarks-row,
359
+ .switch-shell,
360
+ .discover-filter-panel > summary {
361
+ border-color: rgba(215, 255, 70, 0.18);
362
+ background: rgba(0, 0, 0, 0.26);
363
+ color: rgba(255, 249, 215, 0.82);
364
+ }
365
+
366
+ .switch-shell[data-active="true"],
367
+ .switch-input:checked + .switch-knob {
368
+ background: #d7ff46;
369
+ }
370
+
371
+ .discover-results {
372
+ background:
373
+ linear-gradient(90deg, transparent 0 21px, rgba(215, 255, 70, 0.08) 21px 22px, transparent 22px 100%),
374
+ linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent);
375
+ background-size: 44px 100%, auto;
376
+ }
377
+
378
+ .discover-count {
379
+ color: rgba(215, 255, 70, 0.72);
380
+ background: linear-gradient(180deg, rgba(5, 9, 5, 0.98), rgba(5, 9, 5, 0));
381
+ font-family: "JetBrains Mono", "SFMono-Regular", monospace;
382
+ letter-spacing: 0.02em;
383
+ }
384
+
385
+ .discover-card {
386
+ position: relative;
387
+ overflow: hidden;
388
+ border-color: rgba(215, 255, 70, 0.2);
389
+ background:
390
+ linear-gradient(90deg, rgba(215, 255, 70, 0.09) 0 1px, transparent 1px 100%),
391
+ linear-gradient(180deg, rgba(17, 28, 13, 0.94), rgba(4, 8, 4, 0.94)) !important;
392
+ background-size: 58px 100%, auto !important;
393
+ box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
394
+ }
395
+
396
+ .discover-card::before {
397
+ content: "TIMELINE LAYERS";
398
+ position: absolute;
399
+ top: 14px;
400
+ right: 20px;
401
+ color: rgba(215, 255, 70, 0.46);
402
+ font-family: "JetBrains Mono", "SFMono-Regular", monospace;
403
+ font-size: 0.65rem;
404
+ font-weight: 800;
405
+ letter-spacing: 0.22em;
406
+ }
407
+
408
+ .discover-card-media {
409
+ border-color: rgba(215, 255, 70, 0.18);
410
+ background:
411
+ linear-gradient(45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
412
+ linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
413
+ #050905;
414
+ background-size: 24px 24px;
415
+ box-shadow: inset 0 0 0 1px rgba(255, 249, 215, 0.04);
416
+ }
417
+
418
+ .discover-card-media::after {
419
+ content: "";
420
+ position: absolute;
421
+ left: 16px;
422
+ right: 16px;
423
+ bottom: 16px;
424
+ height: 5px;
425
+ border-radius: 999px;
426
+ background: linear-gradient(90deg, #d7ff46 0 26%, rgba(215, 255, 70, 0.2) 26% 64%, rgba(248, 210, 74, 0.78) 64% 100%);
427
+ opacity: 0.78;
428
+ }
429
+
430
+ .discover-card-title-wrap h2,
431
+ .library-post-title,
432
+ .history-title,
433
+ .editor-title,
434
+ .vf-editor-chat-empty h2,
435
+ .vf-editor-chat-disabled h2 {
436
+ color: var(--ink);
437
+ }
438
+
439
+ .discover-card-meta,
440
+ .discover-card-body p,
441
+ .editor-note,
442
+ .history-linked-job-meta,
443
+ .library-post-meta,
444
+ .vf-editor-chat-empty p,
445
+ .vf-editor-chat-disabled p {
446
+ color: rgba(201, 215, 188, 0.78);
447
+ }
448
+
449
+ .difficulty-pill,
450
+ .difficulty-pill[data-difficulty="hard"],
451
+ .difficulty-pill[data-difficulty="expert"] {
452
+ border-color: rgba(248, 210, 74, 0.42);
453
+ background: rgba(248, 210, 74, 0.12);
454
+ color: #ffe878;
455
+ }
456
+
457
+ .copy-inline[data-state="done"] {
458
+ border-color: rgba(215, 255, 70, 0.5);
459
+ background: rgba(215, 255, 70, 0.12);
460
+ color: var(--ink);
461
+ }
462
+
463
+ .editor-floating-nav {
464
+ border-color: rgba(215, 255, 70, 0.24);
465
+ background: rgba(5, 10, 5, 0.9);
466
+ box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
467
+ backdrop-filter: blur(18px);
468
+ }
469
+
470
+ .editor-back-link {
471
+ border-color: rgba(215, 255, 70, 0.42);
472
+ background: #d7ff46;
473
+ color: #071006;
474
+ }
475
+
476
+ .editor-nav-title,
477
+ .vf-editor-chat-brainstorm-title,
478
+ .vf-editor-chat-header-title,
479
+ .vf-editor-chat-header-subtitle,
480
+ .vf-editor-chat-thread-chip-title,
481
+ .vf-editor-chat-http-url,
482
+ .editor-media-modal-title {
483
+ color: var(--ink);
484
+ }
485
+
486
+ .editor-chat-panel,
487
+ .vf-editor-chat-thread,
488
+ .vf-editor-chat-history-pane,
489
+ .vf-editor-chat-header,
490
+ .vf-editor-chat-empty,
491
+ .vf-editor-chat-disabled,
492
+ .vf-editor-chat-bubble,
493
+ .vf-editor-chat-thread-chip,
494
+ .vf-editor-chat-thread-menu {
495
+ border-color: rgba(215, 255, 70, 0.16);
496
+ background:
497
+ linear-gradient(180deg, rgba(12, 20, 10, 0.96), rgba(4, 8, 4, 0.96)) !important;
498
+ color: var(--ink);
499
+ }
500
+
501
+ .vf-editor-chat-message.is-assistant .vf-editor-chat-bubble {
502
+ border-color: rgba(215, 255, 70, 0.18);
503
+ background: rgba(255, 249, 215, 0.08) !important;
504
+ }
505
+
506
+ .vf-editor-chat-message.is-user .vf-editor-chat-bubble {
507
+ background: rgba(215, 255, 70, 0.14) !important;
508
+ }
509
+
510
+ .vf-editor-chat-composer,
511
+ .vf-editor-chat-input-shell {
512
+ border-color: rgba(215, 255, 70, 0.2);
513
+ background: rgba(0, 0, 0, 0.32);
514
+ }
515
+
516
+ .history-card,
517
+ .history-subgroup,
518
+ .history-linked-job,
519
+ .library-post,
520
+ .help-details,
521
+ .settings-pane,
522
+ .developer-panel {
523
+ box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
524
+ }
525
+
526
+ .history-card-path,
527
+ .history-linked-job-title,
528
+ .history-card-time,
529
+ .library-content-box,
530
+ .calendar-ribbon-title,
531
+ .calendar-post-title {
532
+ color: var(--ink);
533
+ }
534
+
535
+ .library-toolbar,
536
+ .calendar-toolbar,
537
+ .history-options-popover {
538
+ border-color: rgba(215, 255, 70, 0.18);
539
+ background: rgba(6, 11, 6, 0.94);
540
+ }
541
+
542
+ .library-post[data-selected="true"] {
543
+ border-color: rgba(215, 255, 70, 0.48);
544
+ box-shadow: 0 0 0 1px rgba(215, 255, 70, 0.16), 0 18px 52px rgba(0, 0, 0, 0.42);
545
+ }
546
+
547
+ .discover-media-modal,
548
+ .custom-inpaint-lightbox-dialog,
549
+ .logout-dialog-head {
550
+ border-color: rgba(215, 255, 70, 0.18);
551
+ background: rgba(8, 14, 8, 0.98);
552
+ }
553
+
554
+ .discover-media-modal-head h2,
555
+ .custom-inpaint-lightbox-title,
556
+ .logout-dialog-head h3 {
557
+ color: var(--ink);
558
+ }
559
+
560
+ .discover-media-modal-stage,
561
+ .custom-inpaint-lightbox-stage,
562
+ .editor-media-modal-body {
563
+ background: #020402;
564
+ }
565
+
566
+ .auth-frame {
567
+ overflow: visible;
568
+ }
569
+
570
+ .auth-layout {
571
+ align-items: stretch;
572
+ overflow: auto;
573
+ padding-bottom: 22px;
574
+ }
575
+
576
+ .auth-shell-panel {
577
+ position: relative;
578
+ overflow: hidden;
579
+ border-color: rgba(215, 255, 70, 0.22) !important;
580
+ background:
581
+ radial-gradient(circle at 12% 8%, rgba(215, 255, 70, 0.12), transparent 30%),
582
+ linear-gradient(135deg, rgba(9, 15, 8, 0.96), rgba(3, 6, 3, 0.94)) !important;
583
+ color: var(--ink);
584
+ box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
585
+ }
586
+
587
+ .auth-shell-inner {
588
+ min-height: min(680px, calc(100dvh - 148px));
589
+ }
590
+
591
+ .auth-shell-copy {
592
+ border-right-color: rgba(215, 255, 70, 0.18) !important;
593
+ background:
594
+ linear-gradient(180deg, rgba(16, 27, 12, 0.82), rgba(4, 8, 4, 0.68)),
595
+ repeating-linear-gradient(0deg, rgba(215, 255, 70, 0.06) 0 1px, transparent 1px 44px) !important;
596
+ }
597
+
598
+ .auth-copy-stack .label,
599
+ .auth-plan-kicker,
600
+ .mode-switch a {
601
+ color: #e8ff63 !important;
602
+ }
603
+
604
+ .auth-plan-card,
605
+ .auth-shell,
606
+ .form-panel {
607
+ border-color: rgba(215, 255, 70, 0.18) !important;
608
+ background: rgba(0, 0, 0, 0.26) !important;
609
+ color: var(--ink);
610
+ }
611
+
612
+ .auth-plan-card.featured {
613
+ border-color: rgba(248, 210, 74, 0.42) !important;
614
+ background:
615
+ linear-gradient(180deg, rgba(248, 210, 74, 0.12), rgba(0, 0, 0, 0.24)) !important;
616
+ }
617
+
618
+ .auth-plan-card p,
619
+ .auth-shell p,
620
+ .form-panel p {
621
+ color: rgba(201, 215, 188, 0.78) !important;
622
+ }
623
+
624
+ .auth-plan-name,
625
+ .auth-plan-price strong,
626
+ .auth-plan-features span,
627
+ .form-panel label {
628
+ color: var(--ink) !important;
629
+ }
630
+
631
+ .form-panel input,
632
+ .auth-shell input {
633
+ border-color: rgba(215, 255, 70, 0.22) !important;
634
+ background: rgba(0, 0, 0, 0.32) !important;
635
+ color: var(--ink) !important;
636
+ }
637
+
638
+ /* Dark surface normalization for legacy pages that still ship light local CSS. */
639
+ .app-shell h1,
640
+ .app-shell h2,
641
+ .app-shell .history-title,
642
+ .app-shell .settings-sidebar h1,
643
+ .app-shell .calendar-ribbon-title {
644
+ font-family: "Bebas Neue", "Arial Narrow", sans-serif !important;
645
+ font-weight: 400 !important;
646
+ letter-spacing: 0.01em !important;
647
+ text-transform: uppercase !important;
648
+ }
649
+
650
+ .auth-login-frame .auth-shell-inner {
651
+ grid-template-columns: minmax(360px, 0.66fr) minmax(0, 1fr) !important;
652
+ align-items: stretch;
653
+ }
654
+
655
+ .auth-login-frame .auth-shell-form {
656
+ order: 1;
657
+ align-items: stretch;
658
+ justify-content: stretch;
659
+ padding: clamp(20px, 3vw, 34px);
660
+ border: 1px solid rgba(215, 255, 70, 0.2);
661
+ border-radius: 28px;
662
+ background:
663
+ radial-gradient(circle at 16% 12%, rgba(215, 255, 70, 0.12), transparent 34%),
664
+ rgba(0, 0, 0, 0.26);
665
+ }
666
+
667
+ .auth-login-frame .auth-shell-copy {
668
+ order: 2;
669
+ padding: clamp(18px, 2.2vw, 28px);
670
+ border-right: 0 !important;
671
+ border-left: 1px solid rgba(215, 255, 70, 0.14);
672
+ }
673
+
674
+ .auth-login-frame .auth-shell {
675
+ display: grid;
676
+ width: 100%;
677
+ align-content: center;
678
+ }
679
+
680
+ .auth-login-frame .auth-plan-grid {
681
+ max-height: min(54dvh, 520px);
682
+ overflow: auto;
683
+ padding-right: 6px;
684
+ }
685
+
686
+ .auth-shell-form .form-panel {
687
+ padding: clamp(22px, 3vw, 34px);
688
+ border-radius: 24px;
689
+ }
690
+
691
+ .auth-shell-form .form-panel h2 {
692
+ font-size: clamp(3rem, 6vw, 5.4rem);
693
+ line-height: 0.85;
694
+ }
695
+
696
+ .auth-frame .price-panel,
697
+ .auth-frame .auth-plan-features span,
698
+ .settings-frame .settings-nav-panel > summary,
699
+ .settings-frame .flockposter-dialog,
700
+ .settings-frame .channel-menu,
701
+ .settings-frame .channel-menu-panel {
702
+ border-color: rgba(215, 255, 70, 0.18) !important;
703
+ background:
704
+ linear-gradient(180deg, rgba(13, 22, 11, 0.94), rgba(6, 11, 6, 0.94)) !important;
705
+ color: var(--ink) !important;
706
+ }
707
+
708
+ .auth-login-frame .auth-shell-panel {
709
+ place-items: stretch;
710
+ overflow: auto;
711
+ }
712
+
713
+ .auth-login-frame .auth-shell-inner {
714
+ min-height: 0;
715
+ }
716
+
717
+ .settings-shell,
718
+ .calendar-shell,
719
+ .calendar-rail,
720
+ .calendar-stage,
721
+ .library-toolbar,
722
+ .history-toolbar,
723
+ .custom-inpaint-workbench,
724
+ .vf-editor-chat-shell {
725
+ color: var(--ink) !important;
726
+ }
727
+
728
+ .settings-shell,
729
+ .calendar-shell {
730
+ border-color: rgba(215, 255, 70, 0.2) !important;
731
+ background:
732
+ linear-gradient(135deg, rgba(10, 18, 9, 0.94), rgba(3, 6, 3, 0.96)),
733
+ radial-gradient(circle at 8% 8%, rgba(215, 255, 70, 0.12), transparent 32%) !important;
734
+ box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52) !important;
735
+ }
736
+
737
+ .settings-sidebar,
738
+ .settings-content,
739
+ .calendar-rail,
740
+ .calendar-stage {
741
+ border-color: rgba(215, 255, 70, 0.16) !important;
742
+ background:
743
+ linear-gradient(180deg, rgba(14, 24, 11, 0.9), rgba(3, 7, 3, 0.92)),
744
+ repeating-linear-gradient(0deg, rgba(215, 255, 70, 0.045) 0 1px, transparent 1px 42px) !important;
745
+ }
746
+
747
+ .profile-card,
748
+ .files-card,
749
+ .settings-panel,
750
+ .key-card,
751
+ .attachment-card,
752
+ .price-panel,
753
+ .developer-panel,
754
+ .wallet-panel,
755
+ .wallet-history,
756
+ .wallet-history-item,
757
+ .wallet-history-empty,
758
+ .file-card,
759
+ .developer-card,
760
+ .channel-card,
761
+ .provider-key-card,
762
+ .email-avatar-preview,
763
+ .files-dropzone,
764
+ .file-popconfirm,
765
+ .settings-flash,
766
+ .agency-list-card,
767
+ .agency-account-card,
768
+ .library-post,
769
+ .library-options-panel,
770
+ .library-row-menu,
771
+ .library-content-box,
772
+ .library-empty,
773
+ .history-card,
774
+ .history-group,
775
+ .history-subgroup,
776
+ .history-linked-job,
777
+ .history-options-popover,
778
+ .history-output-preview,
779
+ .history-preview-empty,
780
+ .history-summary-preview,
781
+ .history-summary-preview-more,
782
+ .history-mobile-details summary::after,
783
+ .calendar-channel-card,
784
+ .calendar-empty-card,
785
+ .calendar-board,
786
+ .calendar-weekdays,
787
+ .calendar-grid,
788
+ .calendar-cell,
789
+ .calendar-day-post,
790
+ .calendar-day-hero,
791
+ .calendar-post-pill,
792
+ .calendar-view-tabs,
793
+ .calendar-nav,
794
+ .custom-inpaint-upload,
795
+ .custom-inpaint-history,
796
+ .custom-inpaint-history-item,
797
+ .custom-inpaint-history-empty,
798
+ .custom-inpaint-history-popconfirm,
799
+ .custom-inpaint-settings,
800
+ .custom-inpaint-output,
801
+ .editor-inpaint-toolbar,
802
+ .editor-inpaint-color-row,
803
+ .editor-inpaint-global,
804
+ .editor-inpaint-prompt-field,
805
+ .editor-inpaint-attachment-chip,
806
+ .vf-editor-chat-footer,
807
+ .vf-editor-chat-composer,
808
+ .vf-editor-chat-input-shell,
809
+ .vf-editor-chat-empty-prompts button {
810
+ border-color: rgba(215, 255, 70, 0.18) !important;
811
+ background:
812
+ linear-gradient(180deg, rgba(16, 27, 12, 0.88), rgba(4, 8, 4, 0.9)),
813
+ radial-gradient(circle at 0% 0%, rgba(215, 255, 70, 0.08), transparent 34%) !important;
814
+ color: var(--ink) !important;
815
+ box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34) !important;
816
+ }
817
+
818
+ .wallet-hero {
819
+ border-color: rgba(248, 210, 74, 0.32) !important;
820
+ background:
821
+ linear-gradient(135deg, rgba(248, 210, 74, 0.16), rgba(215, 255, 70, 0.08)),
822
+ rgba(0, 0, 0, 0.26) !important;
823
+ }
824
+
825
+ .settings-nav-item,
826
+ .library-options summary,
827
+ .library-row-menu button,
828
+ .library-row-menu a,
829
+ .history-filter-button,
830
+ .history-toolbar-back,
831
+ .calendar-tab,
832
+ .calendar-nav button,
833
+ .calendar-ribbon-refresh,
834
+ .calendar-refresh-button,
835
+ .vf-editor-chat-empty-prompts button {
836
+ border-color: rgba(215, 255, 70, 0.24) !important;
837
+ background: rgba(255, 249, 215, 0.07) !important;
838
+ color: rgba(255, 249, 215, 0.86) !important;
839
+ box-shadow: none !important;
840
+ }
841
+
842
+ .settings-nav-item.is-active,
843
+ .calendar-tab.is-active,
844
+ .calendar-day-chip.is-selected,
845
+ .history-filter-button.is-primary {
846
+ border-color: rgba(215, 255, 70, 0.66) !important;
847
+ background: linear-gradient(180deg, #e8ff63, #bddf26) !important;
848
+ color: #071006 !important;
849
+ box-shadow: 0 12px 28px rgba(215, 255, 70, 0.18) !important;
850
+ }
851
+
852
+ .settings-nav-item-danger {
853
+ color: #ffb5a7 !important;
854
+ }
855
+
856
+ .wallet-balance-label,
857
+ .history-toolbar .label-group label,
858
+ .library-options-panel label,
859
+ .library-selection-count,
860
+ .calendar-post-meta,
861
+ .calendar-cell-more,
862
+ .editor-inpaint-label,
863
+ .custom-inpaint-status,
864
+ .vf-editor-chat-history-kicker,
865
+ .vf-editor-chat-kicker {
866
+ color: rgba(215, 255, 70, 0.72) !important;
867
+ }
868
+
869
+ .wallet-balance-amount,
870
+ .wallet-history-item-title,
871
+ .files-dropzone-title,
872
+ .file-card-copy h3,
873
+ .developer-card-titleline h3,
874
+ .history-group-head h2,
875
+ .history-subgroup-head h3,
876
+ .history-path,
877
+ .history-linked-job-title,
878
+ .library-post-title,
879
+ .library-content-details summary,
880
+ .calendar-channel-name,
881
+ .calendar-day-post-top,
882
+ .calendar-empty-title,
883
+ .custom-inpaint-history-title,
884
+ .vf-editor-chat-input {
885
+ color: var(--ink) !important;
886
+ }
887
+
888
+ .wallet-history-item-meta,
889
+ .files-dropzone-copy p,
890
+ .file-popconfirm p,
891
+ .profile-id-inline,
892
+ .history-toolbar-copy .tiny,
893
+ .history-card-time,
894
+ .history-mobile-details summary,
895
+ .history-linked-job-meta,
896
+ .library-post-meta span,
897
+ .custom-inpaint-history-subtitle,
898
+ .vf-editor-chat-input::placeholder {
899
+ color: rgba(201, 215, 188, 0.72) !important;
900
+ }
901
+
902
+ .wallet-history-item-amount.is-credit,
903
+ .history-chip.is-success,
904
+ .calendar-status.sent,
905
+ .calendar-post-pill.sent,
906
+ .custom-inpaint-status[data-tone="success"] {
907
+ color: #abff9b !important;
908
+ border-color: rgba(171, 255, 155, 0.28) !important;
909
+ }
910
+
911
+ .wallet-history-item-amount.is-debit,
912
+ .history-chip.is-error,
913
+ .calendar-status.error,
914
+ .calendar-post-pill.error,
915
+ .custom-inpaint-status[data-tone="error"] {
916
+ color: #ff9f91 !important;
917
+ border-color: rgba(255, 159, 145, 0.28) !important;
918
+ }
919
+
920
+ .history-chip,
921
+ .history-method,
922
+ .library-post-meta span,
923
+ .calendar-status,
924
+ .calendar-today-badge {
925
+ border-color: rgba(215, 255, 70, 0.18) !important;
926
+ background: rgba(215, 255, 70, 0.08) !important;
927
+ color: rgba(255, 249, 215, 0.86) !important;
928
+ }
929
+
930
+ .calendar-board {
931
+ overflow: hidden;
932
+ }
933
+
934
+ .calendar-weekdays,
935
+ .calendar-grid {
936
+ border-color: rgba(215, 255, 70, 0.16) !important;
937
+ }
938
+
939
+ .calendar-cell {
940
+ box-shadow: inset 1px 0 0 rgba(215, 255, 70, 0.09), inset 0 1px 0 rgba(215, 255, 70, 0.09) !important;
941
+ }
942
+
943
+ .calendar-cell.is-outside {
944
+ opacity: 0.56;
945
+ }
946
+
947
+ .calendar-day-chip {
948
+ color: rgba(255, 249, 215, 0.92) !important;
949
+ }
950
+
951
+ .calendar-day-chip.is-muted {
952
+ color: rgba(201, 215, 188, 0.42) !important;
953
+ }
954
+
955
+ .calendar-channel-card.is-selected {
956
+ border-color: rgba(248, 210, 74, 0.42) !important;
957
+ background:
958
+ linear-gradient(180deg, rgba(248, 210, 74, 0.12), rgba(4, 8, 4, 0.88)) !important;
959
+ }
960
+
961
+ .calendar-avatar,
962
+ .calendar-platform-avatar,
963
+ .file-card-art,
964
+ .history-summary-preview-fallback {
965
+ border-color: rgba(215, 255, 70, 0.18) !important;
966
+ background: rgba(255, 249, 215, 0.08) !important;
967
+ color: var(--ink) !important;
968
+ }
969
+
970
+ .custom-inpaint-stage,
971
+ .editor-inpaint-canvas-wrap {
972
+ background:
973
+ radial-gradient(circle at center, rgba(215, 255, 70, 0.05), transparent 44%),
974
+ rgba(0, 0, 0, 0.32) !important;
975
+ }
976
+
977
+ .custom-inpaint-upload {
978
+ border-style: dashed !important;
979
+ }
980
+
981
+ .editor-inpaint-prompt,
982
+ .editor-inpaint-provider select,
983
+ .vf-editor-chat-input,
984
+ .settings-frame input,
985
+ .settings-frame textarea,
986
+ .settings-frame select,
987
+ .calendar-frame input,
988
+ .calendar-frame select,
989
+ .history-toolbar input,
990
+ .history-toolbar select,
991
+ .library-search,
992
+ .library-options input,
993
+ .library-options select {
994
+ border-color: rgba(215, 255, 70, 0.24) !important;
995
+ background: rgba(0, 0, 0, 0.38) !important;
996
+ color: var(--ink) !important;
997
+ }
998
+
999
+ .editor-inpaint-color-picker {
1000
+ background: transparent !important;
1001
+ box-shadow: 0 0 0 1px rgba(215, 255, 70, 0.2) !important;
1002
+ }
1003
+
1004
+ .vf-editor-chat-footer {
1005
+ border-top: 1px solid rgba(215, 255, 70, 0.18) !important;
1006
+ }
1007
+
1008
+ .frame :is(
1009
+ .calendar-weekday,
1010
+ .calendar-day-view,
1011
+ .calendar-empty,
1012
+ .calendar-ribbon,
1013
+ .calendar-ribbon-channel,
1014
+ .history-http-action,
1015
+ .history-output-previews,
1016
+ .vf-editor-chat-http-card,
1017
+ .vf-editor-chat-http-modal,
1018
+ .vf-editor-chat-http-modal-header,
1019
+ .vf-editor-chat-http-body,
1020
+ .vf-editor-chat-http-pre,
1021
+ .custom-inpaint-panel-head,
1022
+ .custom-inpaint-tool-head,
1023
+ .editor-inpaint-color-row[data-active="true"]
1024
+ ) {
1025
+ border-color: rgba(215, 255, 70, 0.18) !important;
1026
+ background: rgba(6, 11, 6, 0.9) !important;
1027
+ color: var(--ink) !important;
1028
+ }
1029
+
1030
+ .frame :is(
1031
+ .calendar-nav-title,
1032
+ .calendar-day-date,
1033
+ .calendar-post-title,
1034
+ .vf-editor-chat-http-url,
1035
+ .vf-editor-chat-http-modal-url,
1036
+ .vf-editor-chat-http-status,
1037
+ .vf-editor-chat-http-expand
1038
+ ) {
1039
+ color: var(--ink) !important;
1040
+ }
1041
+
1042
+ .frame :is(
1043
+ .calendar-channel-handle-inline,
1044
+ .calendar-ribbon-channel-handle,
1045
+ .calendar-day-post-summary,
1046
+ .custom-inpaint-history-empty,
1047
+ .vf-editor-chat-http-label,
1048
+ .vf-editor-chat-http-meta
1049
+ ) {
1050
+ color: rgba(201, 215, 188, 0.78) !important;
1051
+ }
1052
+
1053
+ .vf-editor-chat-empty-prompts div,
1054
+ .vf-editor-chat-attachment,
1055
+ .vf-editor-chat-composer-attachment-item,
1056
+ .vf-editor-chat-http-pill {
1057
+ border-color: rgba(215, 255, 70, 0.18) !important;
1058
+ background: rgba(0, 0, 0, 0.34) !important;
1059
+ color: var(--ink) !important;
1060
+ }
1061
+
1062
+ .vf-editor-chat-attach-button,
1063
+ .vf-editor-chat-send-button,
1064
+ .editor-inpaint-attach-button,
1065
+ .custom-inpaint-history-icon,
1066
+ .custom-inpaint-history-check,
1067
+ .editor-inpaint-color-remove {
1068
+ border-color: rgba(215, 255, 70, 0.22) !important;
1069
+ background: rgba(255, 249, 215, 0.08) !important;
1070
+ color: var(--ink) !important;
1071
+ box-shadow: none !important;
1072
+ }
1073
+
1074
+ @media (max-width: 900px) {
1075
+ .auth-login-frame .auth-shell-inner {
1076
+ grid-template-columns: 1fr !important;
1077
+ }
1078
+
1079
+ .auth-login-frame .auth-shell-copy {
1080
+ border-left: 0 !important;
1081
+ border-top: 1px solid rgba(215, 255, 70, 0.14);
1082
+ }
1083
+ }
1084
+
1085
+ .frame h1,
1086
+ .frame h2,
1087
+ .frame h3,
1088
+ .frame summary,
1089
+ .frame [class$="-title"],
1090
+ .frame [class*="-title "],
1091
+ .frame [class*="-title"],
1092
+ .frame [class*="-head"] h1,
1093
+ .frame [class*="-head"] h2,
1094
+ .frame [class*="-head"] h3,
1095
+ .editor-workbench h1,
1096
+ .editor-workbench h2,
1097
+ .editor-workbench h3,
1098
+ .editor-workbench [class*="-title"],
1099
+ .vf-editor-chat-shell h1,
1100
+ .vf-editor-chat-shell h2,
1101
+ .vf-editor-chat-shell h3 {
1102
+ color: var(--ink) !important;
1103
+ }
1104
+
1105
+ .frame p,
1106
+ .frame [class*="-meta"],
1107
+ .frame [class*="-note"],
1108
+ .frame [class*="-desc"],
1109
+ .frame [class*="-subtitle"],
1110
+ .frame [class*="-empty"],
1111
+ .editor-workbench p,
1112
+ .editor-workbench [class*="-meta"],
1113
+ .editor-workbench [class*="-note"],
1114
+ .editor-workbench [class*="-desc"],
1115
+ .editor-workbench [class*="-subtitle"],
1116
+ .vf-editor-chat-shell p,
1117
+ .vf-editor-chat-shell [class*="-preview"],
1118
+ .vf-editor-chat-shell [class*="-tracers"] {
1119
+ color: rgba(201, 215, 188, 0.78) !important;
1120
+ }
1121
+
1122
+ .frame a:not(.button):not(.cta-button):not(.link-button),
1123
+ .editor-workbench a:not(.button):not(.cta-button):not(.link-button),
1124
+ .vf-editor-chat-shell a:not(.button):not(.cta-button):not(.link-button) {
1125
+ color: #e8ff63;
1126
+ }
1127
+ `;
1128
+ //# sourceMappingURL=editor-dark-theme.js.map