@uipath/apollo-wind 0.9.1 → 0.10.0-pr219.61d64eb
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/dist/components/custom/canvas.cjs +44 -0
- package/dist/components/custom/canvas.d.ts +14 -0
- package/dist/components/custom/canvas.js +10 -0
- package/dist/components/custom/chat-composer.cjs +105 -0
- package/dist/components/custom/chat-composer.d.ts +15 -0
- package/dist/components/custom/chat-composer.js +71 -0
- package/dist/components/custom/chat-first-experience.cjs +87 -0
- package/dist/components/custom/chat-first-experience.d.ts +24 -0
- package/dist/components/custom/chat-first-experience.js +53 -0
- package/dist/components/custom/chat-prompt-suggestions.cjs +48 -0
- package/dist/components/custom/chat-prompt-suggestions.d.ts +18 -0
- package/dist/components/custom/chat-prompt-suggestions.js +14 -0
- package/dist/components/custom/chat-steps-view.cjs +307 -0
- package/dist/components/custom/chat-steps-view.d.ts +38 -0
- package/dist/components/custom/chat-steps-view.js +273 -0
- package/dist/components/custom/flow-node.cjs +76 -0
- package/dist/components/custom/flow-node.d.ts +20 -0
- package/dist/components/custom/flow-node.js +42 -0
- package/dist/components/custom/flow-properties-bar.cjs +101 -0
- package/dist/components/custom/flow-properties-bar.d.ts +21 -0
- package/dist/components/custom/flow-properties-bar.js +67 -0
- package/dist/components/custom/flow-properties-expanded.cjs +324 -0
- package/dist/components/custom/flow-properties-expanded.d.ts +19 -0
- package/dist/components/custom/flow-properties-expanded.js +290 -0
- package/dist/components/custom/flow-properties-simple.cjs +357 -0
- package/dist/components/custom/flow-properties-simple.d.ts +62 -0
- package/dist/components/custom/flow-properties-simple.js +323 -0
- package/dist/components/custom/flow-properties.cjs +56 -0
- package/dist/components/custom/flow-properties.d.ts +28 -0
- package/dist/components/custom/flow-properties.js +22 -0
- package/dist/components/custom/global-header.cjs +415 -0
- package/dist/components/custom/global-header.d.ts +38 -0
- package/dist/components/custom/global-header.js +381 -0
- package/dist/components/custom/grid-maestro.cjs +62 -0
- package/dist/components/custom/grid-maestro.d.ts +19 -0
- package/dist/components/custom/grid-maestro.js +22 -0
- package/dist/components/custom/panel-delegate.cjs +280 -0
- package/dist/components/custom/panel-delegate.d.ts +34 -0
- package/dist/components/custom/panel-delegate.js +246 -0
- package/dist/components/custom/panel-flow.cjs +260 -0
- package/dist/components/custom/panel-flow.d.ts +38 -0
- package/dist/components/custom/panel-flow.js +223 -0
- package/dist/components/custom/panel-maestro.cjs +73 -0
- package/dist/components/custom/panel-maestro.d.ts +30 -0
- package/dist/components/custom/panel-maestro.js +39 -0
- package/dist/components/custom/toolbar-canvas.cjs +121 -0
- package/dist/components/custom/toolbar-canvas.d.ts +15 -0
- package/dist/components/custom/toolbar-canvas.js +87 -0
- package/dist/components/custom/toolbar-view.cjs +119 -0
- package/dist/components/custom/toolbar-view.d.ts +14 -0
- package/dist/components/custom/toolbar-view.js +85 -0
- package/dist/components/custom/viewport-guard.cjs +92 -0
- package/dist/components/custom/viewport-guard.d.ts +23 -0
- package/dist/components/custom/viewport-guard.js +55 -0
- package/dist/components/ui/button.cjs +3 -3
- package/dist/components/ui/button.js +3 -3
- package/dist/components/ui/chart.cjs +218 -0
- package/dist/components/ui/chart.d.ts +40 -0
- package/dist/components/ui/chart.js +169 -0
- package/dist/components/ui/data-table.cjs +14 -2
- package/dist/components/ui/data-table.d.ts +4 -1
- package/dist/components/ui/data-table.js +15 -3
- package/dist/components/ui/empty-state.cjs +17 -6
- package/dist/components/ui/empty-state.d.ts +7 -0
- package/dist/components/ui/empty-state.js +17 -6
- package/dist/components/ui/file-upload.cjs +82 -42
- package/dist/components/ui/file-upload.d.ts +3 -1
- package/dist/components/ui/file-upload.js +82 -42
- package/dist/components/ui/index.cjs +289 -149
- package/dist/components/ui/index.d.ts +2 -3
- package/dist/components/ui/index.js +2 -3
- package/dist/components/ui/tree-view.cjs +1101 -0
- package/dist/components/ui/tree-view.d.ts +95 -0
- package/dist/components/ui/tree-view.js +1067 -0
- package/dist/foundation/Future/colors.cjs +92 -0
- package/dist/foundation/Future/colors.d.ts +132 -0
- package/dist/foundation/Future/colors.js +43 -0
- package/dist/foundation/Future/radius.cjs +46 -0
- package/dist/foundation/Future/radius.d.ts +33 -0
- package/dist/foundation/Future/radius.js +12 -0
- package/dist/foundation/Future/responsive.cjs +49 -0
- package/dist/foundation/Future/responsive.d.ts +40 -0
- package/dist/foundation/Future/responsive.js +12 -0
- package/dist/foundation/Future/shadows.cjs +48 -0
- package/dist/foundation/Future/shadows.d.ts +29 -0
- package/dist/foundation/Future/shadows.js +11 -0
- package/dist/foundation/Future/spacing.cjs +71 -0
- package/dist/foundation/Future/spacing.d.ts +80 -0
- package/dist/foundation/Future/spacing.js +31 -0
- package/dist/foundation/Future/strokes.cjs +59 -0
- package/dist/foundation/Future/strokes.d.ts +49 -0
- package/dist/foundation/Future/strokes.js +19 -0
- package/dist/foundation/Future/types.cjs +18 -0
- package/dist/foundation/Future/types.d.ts +18 -0
- package/dist/foundation/Future/types.js +0 -0
- package/dist/foundation/Future/typography.cjs +79 -0
- package/dist/foundation/Future/typography.d.ts +86 -0
- package/dist/foundation/Future/typography.js +33 -0
- package/dist/index.cjs +125 -219
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2 -4
- package/dist/src/foundation/Future/themes.css +371 -0
- package/dist/styles.css +1704 -582
- package/dist/tailwind.css +4 -0
- package/dist/templates/Admin/settings-admin.d.ts +5 -0
- package/dist/templates/Admin/template-admin.d.ts +105 -0
- package/dist/templates/Delegate/template-delegate.d.ts +26 -0
- package/dist/templates/EmptyErrors/error-components.d.ts +3 -0
- package/dist/templates/Experiments/ideas-AnimatedGradientText.d.ts +23 -0
- package/dist/templates/Flow/template-flow.d.ts +52 -0
- package/dist/templates/Maestro/template-maestro.d.ts +52 -0
- package/dist/templates/{vscode-example.d.ts → VisualStudio/shell.d.ts} +1 -1
- package/package.json +10 -1
- package/dist/components/ui/menubar.cjs +0 -210
- package/dist/components/ui/menubar.d.ts +0 -28
- package/dist/components/ui/menubar.js +0 -131
- package/dist/components/ui/navigation-menu.cjs +0 -122
- package/dist/components/ui/navigation-menu.d.ts +0 -12
- package/dist/components/ui/navigation-menu.js +0 -64
- package/dist/examples/admin-layout-example.cjs +0 -490
- package/dist/examples/admin-layout-example.d.ts +0 -92
- package/dist/examples/admin-layout-example.js +0 -411
- package/dist/examples/app-shell-example.cjs +0 -452
- package/dist/examples/app-shell-example.d.ts +0 -52
- package/dist/examples/app-shell-example.js +0 -418
- package/dist/examples/dashboard-example.cjs +0 -590
- package/dist/examples/dashboard-example.d.ts +0 -11
- package/dist/examples/dashboard-example.js +0 -556
- package/dist/examples/data-management-example.cjs +0 -584
- package/dist/examples/data-management-example.d.ts +0 -1
- package/dist/examples/data-management-example.js +0 -550
- package/dist/examples/flow-editor-layout-example.cjs +0 -309
- package/dist/examples/flow-editor-layout-example.d.ts +0 -22
- package/dist/examples/flow-editor-layout-example.js +0 -269
- package/dist/examples/flow-start-example.cjs +0 -467
- package/dist/examples/flow-start-example.d.ts +0 -30
- package/dist/examples/flow-start-example.js +0 -433
- package/dist/examples/form-builder-example.cjs +0 -674
- package/dist/examples/form-builder-example.js +0 -640
- package/dist/examples/new-project-example.cjs +0 -550
- package/dist/examples/new-project-example.d.ts +0 -30
- package/dist/examples/new-project-example.js +0 -516
- package/dist/examples/settings-example.cjs +0 -864
- package/dist/examples/settings-example.d.ts +0 -1
- package/dist/examples/settings-example.js +0 -830
- package/dist/examples/vscode-example.cjs +0 -340
- package/dist/examples/vscode-example.d.ts +0 -80
- package/dist/examples/vscode-example.js +0 -270
- package/dist/templates/admin-layout-example.d.ts +0 -92
- package/dist/templates/app-shell-example.d.ts +0 -52
- package/dist/templates/dashboard-example.d.ts +0 -11
- package/dist/templates/data-management-example.d.ts +0 -1
- package/dist/templates/flow-editor-layout-example.d.ts +0 -22
- package/dist/templates/flow-start-example.d.ts +0 -30
- package/dist/templates/form-builder-example.d.ts +0 -1
- package/dist/templates/new-project-example.d.ts +0 -30
- package/dist/templates/settings-example.d.ts +0 -1
- /package/dist/{examples → templates/Forms}/form-builder-example.d.ts +0 -0
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
.future-dark {
|
|
2
|
+
--surface: #09090b;
|
|
3
|
+
--surface-raised: #18181b;
|
|
4
|
+
--surface-overlay: #27272a;
|
|
5
|
+
--surface-hover: #3f3f46;
|
|
6
|
+
--surface-muted: #71717a;
|
|
7
|
+
--surface-inverse: #fafafa;
|
|
8
|
+
--brand: #0891b2;
|
|
9
|
+
--brand-subtle: #083344;
|
|
10
|
+
--foreground: #fafafa;
|
|
11
|
+
--foreground-secondary: #f4f4f5;
|
|
12
|
+
--foreground-hover: #d4d4d8;
|
|
13
|
+
--foreground-muted: #a1a1aa;
|
|
14
|
+
--foreground-subtle: #71717a;
|
|
15
|
+
--foreground-inverse: #09090b;
|
|
16
|
+
--foreground-on-accent: #fafafa;
|
|
17
|
+
--foreground-accent: #0891b2;
|
|
18
|
+
--foreground-accent-muted: #22d3ee;
|
|
19
|
+
--border: #3f3f46;
|
|
20
|
+
--border-subtle: #27272a;
|
|
21
|
+
--border-muted: #18181b;
|
|
22
|
+
--border-deep: #09090b;
|
|
23
|
+
--border-inverse: #e4e4e7;
|
|
24
|
+
--border-hover: #52525b;
|
|
25
|
+
--ring: #52525b;
|
|
26
|
+
--gradient-1: linear-gradient(127deg, #3f3f47 25.94%, #27272a 74.06%);
|
|
27
|
+
--gradient-2: linear-gradient(128deg, #09090b 1.26%, #18181b 52.69%);
|
|
28
|
+
--gradient-3: linear-gradient(128deg, #3f3f47 1.26%, #18181b 52.69%);
|
|
29
|
+
--gradient-4: linear-gradient(180deg, #18181b 0%, #27272a 100%);
|
|
30
|
+
--gradient-5: linear-gradient(180deg, #09090b 0%, #18181b 100%);
|
|
31
|
+
--gradient-6: linear-gradient(106deg, #0092b8 28.08%, #053345 71.92%);
|
|
32
|
+
--background: var(--surface);
|
|
33
|
+
--card: var(--surface-raised);
|
|
34
|
+
--card-foreground: var(--foreground);
|
|
35
|
+
--popover: var(--surface-raised);
|
|
36
|
+
--popover-foreground: var(--foreground);
|
|
37
|
+
--primary: var(--brand);
|
|
38
|
+
--primary-foreground: var(--foreground-on-accent);
|
|
39
|
+
--secondary: var(--surface-overlay);
|
|
40
|
+
--secondary-foreground: var(--foreground);
|
|
41
|
+
--muted: var(--surface-overlay);
|
|
42
|
+
--muted-foreground: var(--foreground-muted);
|
|
43
|
+
--accent: var(--surface-hover);
|
|
44
|
+
--accent-foreground: var(--foreground);
|
|
45
|
+
--destructive: #ef4444;
|
|
46
|
+
--destructive-foreground: #fafafa;
|
|
47
|
+
--border-de-emp: var(--border-subtle);
|
|
48
|
+
--input: var(--border);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.future-light {
|
|
52
|
+
--surface: #fafafa;
|
|
53
|
+
--surface-raised: #f4f4f5;
|
|
54
|
+
--surface-overlay: #e4e4e7;
|
|
55
|
+
--surface-hover: #d4d4d8;
|
|
56
|
+
--surface-muted: #a1a1aa;
|
|
57
|
+
--surface-inverse: #09090b;
|
|
58
|
+
--brand: #0891b2;
|
|
59
|
+
--brand-subtle: #ecfeff;
|
|
60
|
+
--foreground: #09090b;
|
|
61
|
+
--foreground-secondary: #18181b;
|
|
62
|
+
--foreground-hover: #52525b;
|
|
63
|
+
--foreground-muted: #71717a;
|
|
64
|
+
--foreground-subtle: #a1a1aa;
|
|
65
|
+
--foreground-inverse: #fafafa;
|
|
66
|
+
--foreground-on-accent: #fafafa;
|
|
67
|
+
--foreground-accent: #0891b2;
|
|
68
|
+
--foreground-accent-muted: #0891b2;
|
|
69
|
+
--border: #d4d4d8;
|
|
70
|
+
--border-subtle: #e4e4e7;
|
|
71
|
+
--border-muted: #f4f4f5;
|
|
72
|
+
--border-deep: #fafafa;
|
|
73
|
+
--border-inverse: #3f3f46;
|
|
74
|
+
--border-hover: #a1a1aa;
|
|
75
|
+
--ring: #a1a1aa;
|
|
76
|
+
--gradient-1: linear-gradient(127deg, #e4e4e7 25.94%, #f4f4f5 74.06%);
|
|
77
|
+
--gradient-2: linear-gradient(128deg, #fafafa 1.26%, #fafafa 52.69%);
|
|
78
|
+
--gradient-3: linear-gradient(128deg, #e4e4e7 1.26%, #fafafa 52.69%);
|
|
79
|
+
--gradient-4: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
|
|
80
|
+
--gradient-5: linear-gradient(180deg, #fafafa 0%, #fafafa 100%);
|
|
81
|
+
--gradient-6: linear-gradient(106deg, #22d3ee 28.08%, #cffafe 71.92%);
|
|
82
|
+
--background: var(--surface);
|
|
83
|
+
--card: var(--surface-raised);
|
|
84
|
+
--card-foreground: var(--foreground);
|
|
85
|
+
--popover: var(--surface-raised);
|
|
86
|
+
--popover-foreground: var(--foreground);
|
|
87
|
+
--primary: var(--brand);
|
|
88
|
+
--primary-foreground: var(--foreground-on-accent);
|
|
89
|
+
--secondary: var(--surface-overlay);
|
|
90
|
+
--secondary-foreground: var(--foreground);
|
|
91
|
+
--muted: var(--surface-overlay);
|
|
92
|
+
--muted-foreground: var(--foreground-muted);
|
|
93
|
+
--accent: var(--surface-hover);
|
|
94
|
+
--accent-foreground: var(--foreground);
|
|
95
|
+
--destructive: #ef4444;
|
|
96
|
+
--destructive-foreground: #fafafa;
|
|
97
|
+
--border-de-emp: var(--border-subtle);
|
|
98
|
+
--input: var(--border);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.core-dark {
|
|
102
|
+
--surface: #182027;
|
|
103
|
+
--surface-raised: #273139;
|
|
104
|
+
--surface-overlay: #374652;
|
|
105
|
+
--surface-hover: #526069;
|
|
106
|
+
--surface-muted: #8a97a0;
|
|
107
|
+
--surface-inverse: #f8f9fa;
|
|
108
|
+
--surface-disabled: #273139;
|
|
109
|
+
--surface-selected: #374652;
|
|
110
|
+
--brand: #66adff;
|
|
111
|
+
--brand-hover: #87bfff;
|
|
112
|
+
--brand-lighter: #00489d;
|
|
113
|
+
--brand-darker: #badaff;
|
|
114
|
+
--foreground: #f4f5f7;
|
|
115
|
+
--foreground-emp: #f8f9fa;
|
|
116
|
+
--foreground-muted: #cfd8dd;
|
|
117
|
+
--foreground-subtle: #a4b1b8;
|
|
118
|
+
--foreground-inverse: #182027;
|
|
119
|
+
--foreground-link: #66adff;
|
|
120
|
+
--foreground-on-accent: #182027;
|
|
121
|
+
--border: #8a97a0;
|
|
122
|
+
--border-subtle: #526069;
|
|
123
|
+
--border-disabled: #526069;
|
|
124
|
+
--border-grid: #273139;
|
|
125
|
+
--error: #ff8484;
|
|
126
|
+
--success: #74c94b;
|
|
127
|
+
--warning: #ffbb27;
|
|
128
|
+
--info: #42a1ff;
|
|
129
|
+
--ring: #66adff;
|
|
130
|
+
--logo: #fff;
|
|
131
|
+
--brand-subtle: var(--brand-lighter);
|
|
132
|
+
--foreground-secondary: var(--foreground-emp);
|
|
133
|
+
--foreground-hover: var(--foreground-muted);
|
|
134
|
+
--foreground-accent: var(--brand);
|
|
135
|
+
--foreground-accent-muted: var(--brand-hover);
|
|
136
|
+
--border-muted: var(--border-grid);
|
|
137
|
+
--border-deep: var(--border-grid);
|
|
138
|
+
--border-inverse: var(--border);
|
|
139
|
+
--border-hover: var(--border);
|
|
140
|
+
--background: var(--surface);
|
|
141
|
+
--card: var(--surface-raised);
|
|
142
|
+
--card-foreground: var(--foreground);
|
|
143
|
+
--popover: var(--surface-raised);
|
|
144
|
+
--popover-foreground: var(--foreground);
|
|
145
|
+
--primary: var(--brand);
|
|
146
|
+
--primary-foreground: var(--foreground-on-accent);
|
|
147
|
+
--secondary: var(--surface-overlay);
|
|
148
|
+
--secondary-foreground: var(--foreground-muted);
|
|
149
|
+
--muted: var(--surface-raised);
|
|
150
|
+
--muted-foreground: var(--foreground-muted);
|
|
151
|
+
--accent: var(--surface-selected);
|
|
152
|
+
--accent-foreground: var(--foreground-emp);
|
|
153
|
+
--destructive: var(--error);
|
|
154
|
+
--border-de-emp: var(--border-subtle);
|
|
155
|
+
--input: var(--border-subtle);
|
|
156
|
+
color-scheme: dark;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.core-light {
|
|
160
|
+
--surface: #fff;
|
|
161
|
+
--surface-raised: #fff;
|
|
162
|
+
--surface-overlay: #f4f5f7;
|
|
163
|
+
--surface-hover: #e9f1fa;
|
|
164
|
+
--surface-muted: #cfd8dd;
|
|
165
|
+
--surface-inverse: #182027;
|
|
166
|
+
--surface-disabled: #ecedee;
|
|
167
|
+
--surface-selected: #e9f1fa;
|
|
168
|
+
--brand: #0067df;
|
|
169
|
+
--brand-hover: #0056ba;
|
|
170
|
+
--brand-lighter: #badaff;
|
|
171
|
+
--brand-darker: #00489d;
|
|
172
|
+
--foreground: #273139;
|
|
173
|
+
--foreground-emp: #182027;
|
|
174
|
+
--foreground-muted: #526069;
|
|
175
|
+
--foreground-subtle: #8a97a0;
|
|
176
|
+
--foreground-inverse: #f8f9fa;
|
|
177
|
+
--foreground-link: #0067df;
|
|
178
|
+
--foreground-on-accent: #f8f9fa;
|
|
179
|
+
--border: #a4b1b8;
|
|
180
|
+
--border-subtle: #cfd8dd;
|
|
181
|
+
--border-disabled: #cfd8dd;
|
|
182
|
+
--border-grid: #f4f5f7;
|
|
183
|
+
--error: #a6040a;
|
|
184
|
+
--success: #038108;
|
|
185
|
+
--warning: #9e6100;
|
|
186
|
+
--info: #1665b3;
|
|
187
|
+
--ring: #0067df;
|
|
188
|
+
--logo: #fa4616;
|
|
189
|
+
--brand-subtle: var(--brand-lighter);
|
|
190
|
+
--foreground-secondary: var(--foreground-emp);
|
|
191
|
+
--foreground-hover: var(--foreground-muted);
|
|
192
|
+
--foreground-accent: var(--brand);
|
|
193
|
+
--foreground-accent-muted: var(--brand-hover);
|
|
194
|
+
--border-muted: var(--border-grid);
|
|
195
|
+
--border-deep: var(--border-grid);
|
|
196
|
+
--border-inverse: var(--border);
|
|
197
|
+
--border-hover: var(--border);
|
|
198
|
+
--background: var(--surface);
|
|
199
|
+
--card: var(--surface-raised);
|
|
200
|
+
--card-foreground: var(--foreground);
|
|
201
|
+
--popover: var(--surface-raised);
|
|
202
|
+
--popover-foreground: var(--foreground);
|
|
203
|
+
--primary: var(--brand);
|
|
204
|
+
--primary-foreground: var(--foreground-on-accent);
|
|
205
|
+
--secondary: var(--surface-overlay);
|
|
206
|
+
--secondary-foreground: var(--foreground-muted);
|
|
207
|
+
--muted: var(--surface-overlay);
|
|
208
|
+
--muted-foreground: var(--foreground-muted);
|
|
209
|
+
--accent: var(--surface-selected);
|
|
210
|
+
--accent-foreground: var(--foreground-emp);
|
|
211
|
+
--destructive: var(--error);
|
|
212
|
+
--border-de-emp: var(--border-subtle);
|
|
213
|
+
--input: var(--border-subtle);
|
|
214
|
+
color-scheme: light;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.wireframe {
|
|
218
|
+
--surface: #fff;
|
|
219
|
+
--surface-raised: #f9fafb;
|
|
220
|
+
--surface-overlay: #f3f4f6;
|
|
221
|
+
--surface-hover: #e5e7eb;
|
|
222
|
+
--surface-muted: #d1d5db;
|
|
223
|
+
--surface-inverse: #374151;
|
|
224
|
+
--brand: #6b7280;
|
|
225
|
+
--brand-subtle: #f3f4f6;
|
|
226
|
+
--foreground: #1f2937;
|
|
227
|
+
--foreground-secondary: #374151;
|
|
228
|
+
--foreground-hover: #4b5563;
|
|
229
|
+
--foreground-muted: #6b7280;
|
|
230
|
+
--foreground-subtle: #9ca3af;
|
|
231
|
+
--foreground-inverse: #fff;
|
|
232
|
+
--foreground-on-accent: #fff;
|
|
233
|
+
--foreground-accent: #4b5563;
|
|
234
|
+
--foreground-accent-muted: #6b7280;
|
|
235
|
+
--border: #d1d5db;
|
|
236
|
+
--border-subtle: #e5e7eb;
|
|
237
|
+
--border-muted: #f3f4f6;
|
|
238
|
+
--border-deep: #f9fafb;
|
|
239
|
+
--border-inverse: #4b5563;
|
|
240
|
+
--border-hover: #9ca3af;
|
|
241
|
+
--ring: #9ca3af;
|
|
242
|
+
--gradient-1: none;
|
|
243
|
+
--gradient-2: none;
|
|
244
|
+
--gradient-3: none;
|
|
245
|
+
--gradient-4: none;
|
|
246
|
+
--gradient-5: none;
|
|
247
|
+
--gradient-6: none;
|
|
248
|
+
--background: var(--surface);
|
|
249
|
+
--card: var(--surface-raised);
|
|
250
|
+
--card-foreground: var(--foreground);
|
|
251
|
+
--popover: var(--surface-raised);
|
|
252
|
+
--popover-foreground: var(--foreground);
|
|
253
|
+
--primary: var(--brand);
|
|
254
|
+
--primary-foreground: var(--foreground-on-accent);
|
|
255
|
+
--secondary: var(--surface-overlay);
|
|
256
|
+
--secondary-foreground: var(--foreground);
|
|
257
|
+
--muted: var(--surface-overlay);
|
|
258
|
+
--muted-foreground: var(--foreground-muted);
|
|
259
|
+
--accent: var(--surface-hover);
|
|
260
|
+
--accent-foreground: var(--foreground);
|
|
261
|
+
--destructive: #9ca3af;
|
|
262
|
+
--destructive-foreground: #fff;
|
|
263
|
+
--border-de-emp: var(--border-subtle);
|
|
264
|
+
--input: var(--border);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.wireframe *, .wireframe :before, .wireframe :after {
|
|
268
|
+
box-shadow: none !important;
|
|
269
|
+
border-style: dashed !important;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.vertex {
|
|
273
|
+
--surface: oklch(21% .03 258.5);
|
|
274
|
+
--surface-raised: oklch(23.3% .036 254.7);
|
|
275
|
+
--surface-overlay: oklch(26.48% .0329 254.38);
|
|
276
|
+
--surface-hover: oklch(39.27% .0289 240.86);
|
|
277
|
+
--surface-muted: oklch(72% .03 254.38);
|
|
278
|
+
--surface-inverse: oklch(98.5% 0 0);
|
|
279
|
+
--brand: oklch(69.2% .1119 207.06);
|
|
280
|
+
--brand-subtle: oklch(16.6% .0283 203.34);
|
|
281
|
+
--foreground: oklch(98.5% 0 0);
|
|
282
|
+
--foreground-secondary: oklch(95.25% .011 225.98);
|
|
283
|
+
--foreground-hover: oklch(94.16% .0145 244.72);
|
|
284
|
+
--foreground-muted: oklch(72% .03 254.38);
|
|
285
|
+
--foreground-subtle: oklch(45.94% .028 264.25);
|
|
286
|
+
--foreground-inverse: oklch(21% .03 258.5);
|
|
287
|
+
--foreground-on-accent: oklch(16.6% .0283 203.34);
|
|
288
|
+
--foreground-accent: oklch(69.2% .1119 207.06);
|
|
289
|
+
--foreground-accent-muted: oklch(57.3% .114 211.4);
|
|
290
|
+
--border: oklch(30.68% .0426 258.29);
|
|
291
|
+
--border-subtle: oklch(26.48% .0329 254.38);
|
|
292
|
+
--border-muted: oklch(23.3% .036 254.7);
|
|
293
|
+
--border-deep: oklch(21% .03 258.5);
|
|
294
|
+
--border-inverse: oklch(92.29% .0065 252.13);
|
|
295
|
+
--border-hover: oklch(39.27% .0289 240.86);
|
|
296
|
+
--ring: oklch(69.2% .1119 207.06);
|
|
297
|
+
--gradient-1: linear-gradient(127deg, oklch(39.27% .0289 240.86) 25.94%, oklch(26.48% .0329 254.38) 74.06%);
|
|
298
|
+
--gradient-2: linear-gradient(128deg, oklch(21% .03 258.5) 1.26%, oklch(23.3% .036 254.7) 52.69%);
|
|
299
|
+
--gradient-3: linear-gradient(128deg, oklch(39.27% .0289 240.86) 1.26%, oklch(23.3% .036 254.7) 52.69%);
|
|
300
|
+
--gradient-4: linear-gradient(180deg, oklch(23.3% .036 254.7) 0%, oklch(26.48% .0329 254.38) 100%);
|
|
301
|
+
--gradient-5: linear-gradient(180deg, oklch(21% .03 258.5) 0%, oklch(23.3% .036 254.7) 100%);
|
|
302
|
+
--gradient-6: linear-gradient(106deg, oklch(69.2% .1119 207.06) 28.08%, oklch(16.6% .0283 203.34) 71.92%);
|
|
303
|
+
--background: var(--surface);
|
|
304
|
+
--card: var(--surface-raised);
|
|
305
|
+
--card-foreground: var(--foreground);
|
|
306
|
+
--popover: var(--surface-raised);
|
|
307
|
+
--popover-foreground: var(--foreground);
|
|
308
|
+
--primary: var(--brand);
|
|
309
|
+
--primary-foreground: var(--foreground-on-accent);
|
|
310
|
+
--secondary: var(--surface-overlay);
|
|
311
|
+
--secondary-foreground: var(--foreground);
|
|
312
|
+
--muted: var(--surface-overlay);
|
|
313
|
+
--muted-foreground: var(--foreground-muted);
|
|
314
|
+
--accent: var(--surface-hover);
|
|
315
|
+
--accent-foreground: var(--foreground);
|
|
316
|
+
--destructive: oklch(65.42% .2321 28.66);
|
|
317
|
+
--destructive-foreground: oklch(100% 0 89.88);
|
|
318
|
+
--border-de-emp: var(--border-subtle);
|
|
319
|
+
--input: var(--border);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.canvas {
|
|
323
|
+
--surface: #182027;
|
|
324
|
+
--surface-raised: #273139;
|
|
325
|
+
--surface-overlay: #334049;
|
|
326
|
+
--surface-hover: #3e4e58;
|
|
327
|
+
--surface-muted: #8a97a0;
|
|
328
|
+
--surface-inverse: #f8f9fa;
|
|
329
|
+
--brand: #fa4616;
|
|
330
|
+
--brand-subtle: #3c2a1e;
|
|
331
|
+
--foreground: #f8f9fa;
|
|
332
|
+
--foreground-secondary: #f4f5f7;
|
|
333
|
+
--foreground-hover: #cfd8dd;
|
|
334
|
+
--foreground-muted: #a4b1b8;
|
|
335
|
+
--foreground-subtle: #8a97a0;
|
|
336
|
+
--foreground-inverse: #182027;
|
|
337
|
+
--foreground-on-accent: #fff;
|
|
338
|
+
--foreground-accent: #fa4616;
|
|
339
|
+
--foreground-accent-muted: #ff8f70;
|
|
340
|
+
--border: #526069;
|
|
341
|
+
--border-subtle: #3e4e58;
|
|
342
|
+
--border-muted: #273139;
|
|
343
|
+
--border-deep: #182027;
|
|
344
|
+
--border-inverse: #cfd8dd;
|
|
345
|
+
--border-hover: #8a97a0;
|
|
346
|
+
--ring: #fa4616;
|
|
347
|
+
--gradient-1: linear-gradient(127deg, #3e4e58 25.94%, #334049 74.06%);
|
|
348
|
+
--gradient-2: linear-gradient(128deg, #182027 1.26%, #273139 52.69%);
|
|
349
|
+
--gradient-3: linear-gradient(128deg, #3e4e58 1.26%, #273139 52.69%);
|
|
350
|
+
--gradient-4: linear-gradient(180deg, #273139 0%, #334049 100%);
|
|
351
|
+
--gradient-5: linear-gradient(180deg, #182027 0%, #273139 100%);
|
|
352
|
+
--gradient-6: linear-gradient(106deg, #fa4616 28.08%, #3c2a1e 71.92%);
|
|
353
|
+
--background: var(--surface);
|
|
354
|
+
--card: var(--surface-raised);
|
|
355
|
+
--card-foreground: var(--foreground);
|
|
356
|
+
--popover: var(--surface-raised);
|
|
357
|
+
--popover-foreground: var(--foreground);
|
|
358
|
+
--primary: var(--brand);
|
|
359
|
+
--primary-foreground: var(--foreground-on-accent);
|
|
360
|
+
--secondary: var(--surface-overlay);
|
|
361
|
+
--secondary-foreground: var(--foreground);
|
|
362
|
+
--muted: var(--surface-overlay);
|
|
363
|
+
--muted-foreground: var(--foreground-muted);
|
|
364
|
+
--accent: var(--surface-hover);
|
|
365
|
+
--accent-foreground: var(--foreground);
|
|
366
|
+
--destructive: #ef4444;
|
|
367
|
+
--destructive-foreground: #fff;
|
|
368
|
+
--border-de-emp: var(--border-subtle);
|
|
369
|
+
--input: var(--border);
|
|
370
|
+
}
|
|
371
|
+
|