lynx-console 0.1.1 → 0.2.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.
Files changed (49) hide show
  1. package/dist/index.cjs +183 -960
  2. package/dist/index.css +1257 -461
  3. package/dist/index.css.map +1 -1
  4. package/dist/index.d.cts +79 -1
  5. package/dist/index.d.cts.map +1 -1
  6. package/dist/index.d.mts +79 -1
  7. package/dist/index.d.mts.map +1 -1
  8. package/dist/index.mjs +183 -960
  9. package/dist/index.mjs.map +1 -1
  10. package/package.json +1 -4
  11. package/src/components/BottomSheet.css +91 -0
  12. package/src/components/BottomSheet.tsx +10 -10
  13. package/src/components/ConsolePanel.css +402 -0
  14. package/src/components/ConsolePanel.tsx +62 -28
  15. package/src/components/FadeList.tsx +10 -55
  16. package/{dist/assets/src/components/FloatingButton.css.ts.vanilla-BaG0OI6p.css → src/components/FloatingButton.css} +22 -16
  17. package/src/components/FloatingButton.tsx +6 -6
  18. package/src/components/LogPanel.tsx +46 -47
  19. package/src/components/NetworkDetailSection.tsx +13 -13
  20. package/src/components/NetworkPanel.css +280 -0
  21. package/src/components/NetworkPanel.tsx +30 -50
  22. package/src/components/PerformancePanel.css +249 -0
  23. package/src/components/PerformancePanel.tsx +40 -40
  24. package/src/components/Tabs.css +78 -0
  25. package/src/components/Tabs.tsx +13 -11
  26. package/src/globals.d.ts +0 -5
  27. package/src/index.tsx +10 -6
  28. package/src/styles/global.css +8 -0
  29. package/src/styles/vars/color.ts +26 -213
  30. package/src/styles/vars/dimension.ts +5 -74
  31. package/src/styles/vars/index.css +65 -457
  32. package/src/styles/vars/index.ts +5 -9
  33. package/src/styles/vars/radius.ts +1 -11
  34. package/src/types.ts +8 -0
  35. package/dist/assets/src/components/BottomSheet.css.ts.vanilla-CulwSDhG.css +0 -83
  36. package/dist/assets/src/components/ConsolePanel.css.ts.vanilla-DWdhFBJq.css +0 -337
  37. package/dist/assets/src/components/FadeList.css.ts.vanilla-sppTKMZj.css +0 -12
  38. package/dist/assets/src/components/NetworkPanel.css.ts.vanilla-BSE4s40D.css +0 -244
  39. package/dist/assets/src/components/PerformancePanel.css.ts.vanilla-Bb3zG5G8.css +0 -216
  40. package/dist/assets/src/components/Tabs.css.ts.vanilla-DD7L2oXt.css +0 -50
  41. package/src/components/BottomSheet.css.ts +0 -93
  42. package/src/components/ConsolePanel.css.ts +0 -349
  43. package/src/components/FadeList.css.ts +0 -16
  44. package/src/components/FloatingButton.css.ts +0 -73
  45. package/src/components/NetworkPanel.css.ts +0 -277
  46. package/src/components/PerformancePanel.css.ts +0 -224
  47. package/src/components/Tabs.css.ts +0 -66
  48. package/src/styles/global.css.ts +0 -10
  49. package/src/styles/typography.ts +0 -25
package/dist/index.css CHANGED
@@ -1,465 +1,1261 @@
1
1
  :root {
2
- --seed-font-weight-regular: 400;
3
- --seed-font-weight-medium: 500;
4
- --seed-font-weight-bold: 700;
5
- --seed-duration-d1: 50ms;
6
- --seed-duration-d2: 100ms;
7
- --seed-duration-d3: 150ms;
8
- --seed-duration-d4: 200ms;
9
- --seed-duration-d5: 250ms;
10
- --seed-duration-d6: 300ms;
11
- --seed-timing-function-linear: linear;
12
- --seed-timing-function-easing: cubic-bezier(0.4, 0, 0.2, 1);
13
- --seed-timing-function-enter: cubic-bezier(0, 0, 0.2, 1);
14
- --seed-timing-function-exit: cubic-bezier(0.4, 0, 1, 1);
15
- --seed-timing-function-enter-expressive: cubic-bezier(0, 0, 0.2, 1);
16
- --seed-timing-function-exit-expressive: cubic-bezier(0.4, 0, 1, 1);
17
- --seed-dimension-x0_5: 2px;
18
- --seed-dimension-x1: 4px;
19
- --seed-dimension-x1_5: 6px;
20
- --seed-dimension-x2: 8px;
21
- --seed-dimension-x2_5: 10px;
22
- --seed-dimension-x3: 12px;
23
- --seed-dimension-x3_5: 14px;
24
- --seed-dimension-x4: 16px;
25
- --seed-dimension-x4_5: 18px;
26
- --seed-dimension-x5: 20px;
27
- --seed-dimension-x6: 24px;
28
- --seed-dimension-x7: 28px;
29
- --seed-dimension-x8: 32px;
30
- --seed-dimension-x9: 36px;
31
- --seed-dimension-x10: 40px;
32
- --seed-dimension-x12: 48px;
33
- --seed-dimension-x13: 52px;
34
- --seed-dimension-x14: 56px;
35
- --seed-dimension-x16: 64px;
36
- --seed-dimension-spacing-x-between-chips: 8px;
37
- --seed-dimension-spacing-x-global-gutter: 16px;
38
- --seed-dimension-spacing-y-component-default: 12px;
39
- --seed-dimension-spacing-y-nav-to-title: 20px;
40
- --seed-dimension-spacing-y-screen-bottom: 56px;
41
- --seed-dimension-spacing-y-between-text: 6px;
42
- --seed-font-size-t1: 0.6875rem;
43
- --seed-font-size-t2: 0.75rem;
44
- --seed-font-size-t3: 0.8125rem;
45
- --seed-font-size-t4: 0.875rem;
46
- --seed-font-size-t5: 1rem;
47
- --seed-font-size-t6: 1.125rem;
48
- --seed-font-size-t7: 1.25rem;
49
- --seed-font-size-t8: 1.375rem;
50
- --seed-font-size-t9: 1.5rem;
51
- --seed-font-size-t10: 1.625rem;
52
- --seed-font-size-t1-static: 11px;
53
- --seed-font-size-t2-static: 12px;
54
- --seed-font-size-t3-static: 13px;
55
- --seed-font-size-t4-static: 14px;
56
- --seed-font-size-t5-static: 16px;
57
- --seed-font-size-t6-static: 18px;
58
- --seed-font-size-t7-static: 20px;
59
- --seed-font-size-t8-static: 22px;
60
- --seed-font-size-t9-static: 24px;
61
- --seed-font-size-t10-static: 26px;
62
- --seed-line-height-t1: 0.9375rem;
63
- --seed-line-height-t2: 1rem;
64
- --seed-line-height-t3: 1.125rem;
65
- --seed-line-height-t4: 1.1875rem;
66
- --seed-line-height-t5: 1.375rem;
67
- --seed-line-height-t6: 1.5rem;
68
- --seed-line-height-t7: 1.6875rem;
69
- --seed-line-height-t8: 1.875rem;
70
- --seed-line-height-t9: 2rem;
71
- --seed-line-height-t10: 2.1875rem;
72
- --seed-line-height-t1-static: 15px;
73
- --seed-line-height-t2-static: 16px;
74
- --seed-line-height-t3-static: 18px;
75
- --seed-line-height-t4-static: 19px;
76
- --seed-line-height-t5-static: 22px;
77
- --seed-line-height-t6-static: 24px;
78
- --seed-line-height-t7-static: 27px;
79
- --seed-line-height-t8-static: 30px;
80
- --seed-line-height-t9-static: 32px;
81
- --seed-line-height-t10-static: 35px;
82
- --seed-radius-r0_5: 2px;
83
- --seed-radius-r1: 4px;
84
- --seed-radius-r1_5: 6px;
85
- --seed-radius-r2: 8px;
86
- --seed-radius-r2_5: 10px;
87
- --seed-radius-r3: 12px;
88
- --seed-radius-r3_5: 14px;
89
- --seed-radius-r4: 16px;
90
- --seed-radius-r5: 20px;
91
- --seed-radius-r6: 24px;
92
- --seed-radius-full: 9999px;
93
- }
94
-
95
- .data-seed-color-mode__light-only {
96
- --seed-color-palette-blue-100: #eff6ff;
97
- --seed-color-palette-blue-200: #e2edfc;
98
- --seed-color-palette-blue-300: #cbdffa;
99
- --seed-color-palette-blue-400: #aacefd;
100
- --seed-color-palette-blue-500: #85b8fd;
101
- --seed-color-palette-blue-600: #5e98fe;
102
- --seed-color-palette-blue-700: #217cf9;
103
- --seed-color-palette-blue-800: #135fcd;
104
- --seed-color-palette-blue-900: #0b4596;
105
- --seed-color-palette-blue-1000: #032451;
106
- --seed-color-palette-carrot-100: #fff2ec;
107
- --seed-color-palette-carrot-200: #ffe8db;
108
- --seed-color-palette-carrot-300: #ffd5c0;
109
- --seed-color-palette-carrot-400: #ffb999;
110
- --seed-color-palette-carrot-500: #ff9364;
111
- --seed-color-palette-carrot-600: #ff6600;
112
- --seed-color-palette-carrot-700: #e14d00;
113
- --seed-color-palette-carrot-800: #b93901;
114
- --seed-color-palette-carrot-900: #862b00;
115
- --seed-color-palette-carrot-1000: #471601;
116
- --seed-color-palette-gray-00: #ffffff;
117
- --seed-color-palette-gray-100: #f7f8f9;
118
- --seed-color-palette-gray-200: #f3f4f5;
119
- --seed-color-palette-gray-300: #eeeff1;
120
- --seed-color-palette-gray-400: #dcdee3;
121
- --seed-color-palette-gray-500: #d1d3d8;
122
- --seed-color-palette-gray-600: #b0b3ba;
123
- --seed-color-palette-gray-700: #868b94;
124
- --seed-color-palette-gray-800: #555d6d;
125
- --seed-color-palette-gray-900: #2a3038;
126
- --seed-color-palette-gray-1000: #1a1c20;
127
- --seed-color-palette-green-100: #edfaf6;
128
- --seed-color-palette-green-200: #d9f6e9;
129
- --seed-color-palette-green-300: #b9e9d2;
130
- --seed-color-palette-green-400: #7ddcb3;
131
- --seed-color-palette-green-500: #42c593;
132
- --seed-color-palette-green-600: #10ab7d;
133
- --seed-color-palette-green-700: #079171;
134
- --seed-color-palette-green-800: #00745f;
135
- --seed-color-palette-green-900: #075445;
136
- --seed-color-palette-green-1000: #0a2b24;
137
- --seed-color-palette-purple-100: #f5f3fe;
138
- --seed-color-palette-purple-200: #efeafe;
139
- --seed-color-palette-purple-300: #e1d8ff;
140
- --seed-color-palette-purple-400: #d0c0ff;
141
- --seed-color-palette-purple-500: #b8a1ff;
142
- --seed-color-palette-purple-600: #9f84fb;
143
- --seed-color-palette-purple-700: #8969ea;
144
- --seed-color-palette-purple-800: #6d50cb;
145
- --seed-color-palette-purple-900: #50379b;
146
- --seed-color-palette-purple-1000: #29175d;
147
- --seed-color-palette-red-100: #fdf0f0;
148
- --seed-color-palette-red-200: #fde7e7;
149
- --seed-color-palette-red-300: #fed4d2;
150
- --seed-color-palette-red-400: #feb7b3;
151
- --seed-color-palette-red-500: #fe928d;
152
- --seed-color-palette-red-600: #fc6a66;
153
- --seed-color-palette-red-700: #fa342c;
154
- --seed-color-palette-red-800: #ca1d13;
155
- --seed-color-palette-red-900: #921708;
156
- --seed-color-palette-red-1000: #4a1209;
157
- --seed-color-palette-static-black: #000000;
158
- --seed-color-palette-static-white: #ffffff;
159
- --seed-color-palette-static-black-alpha-100: #00000007;
160
- --seed-color-palette-static-black-alpha-200: #0000000c;
161
- --seed-color-palette-static-black-alpha-300: #00000010;
162
- --seed-color-palette-static-black-alpha-400: #00000021;
163
- --seed-color-palette-static-black-alpha-500: #0000002c;
164
- --seed-color-palette-static-black-alpha-600: #0000004c;
165
- --seed-color-palette-static-black-alpha-700: #00000074;
166
- --seed-color-palette-static-black-alpha-800: #000000a2;
167
- --seed-color-palette-static-black-alpha-900: #000000d0;
168
- --seed-color-palette-static-black-alpha-1000: #000000e3;
169
- --seed-color-palette-static-white-alpha-50: #ffffff0d;
170
- --seed-color-palette-static-white-alpha-100: #ffffff17;
171
- --seed-color-palette-static-white-alpha-200: #ffffff20;
172
- --seed-color-palette-static-white-alpha-300: #ffffff2e;
173
- --seed-color-palette-static-white-alpha-400: #ffffff3d;
174
- --seed-color-palette-static-white-alpha-500: #ffffff60;
175
- --seed-color-palette-static-white-alpha-600: #ffffff8b;
176
- --seed-color-palette-static-white-alpha-700: #ffffffb3;
177
- --seed-color-palette-static-white-alpha-800: #ffffffde;
178
- --seed-color-palette-static-white-alpha-900: #ffffffea;
179
- --seed-color-palette-static-white-alpha-1000: #fffffff4;
180
- --seed-color-palette-yellow-100: #fff7de;
181
- --seed-color-palette-yellow-200: #fdefb9;
182
- --seed-color-palette-yellow-300: #fbdc65;
183
- --seed-color-palette-yellow-400: #e9c647;
184
- --seed-color-palette-yellow-500: #d4ab28;
185
- --seed-color-palette-yellow-600: #c49725;
186
- --seed-color-palette-yellow-700: #9b7821;
187
- --seed-color-palette-yellow-800: #755b22;
188
- --seed-color-palette-yellow-900: #4f3e1f;
189
- --seed-color-palette-yellow-1000: #2c2512;
190
- --seed-color-fg-neutral: #1a1c20;
191
- --seed-color-fg-placeholder: #b0b3ba;
192
- --seed-color-fg-disabled: #d1d3d8;
193
- --seed-color-fg-brand: #ff6600;
194
- --seed-color-fg-informative: #217cf9;
195
- --seed-color-fg-critical: #fa342c;
196
- --seed-color-fg-positive: #079171;
197
- --seed-color-fg-warning: #9b7821;
198
- --seed-color-fg-brand-contrast: #e14d00;
199
- --seed-color-fg-critical-contrast: #921708;
200
- --seed-color-fg-informative-contrast: #0b4596;
201
- --seed-color-fg-neutral-muted: #555d6d;
202
- --seed-color-fg-neutral-subtle: #868b94;
203
- --seed-color-fg-neutral-inverted: #ffffff;
204
- --seed-color-fg-positive-contrast: #075445;
205
- --seed-color-fg-warning-contrast: #4f3e1f;
206
- --seed-color-bg-overlay: #00000074;
207
- --seed-color-bg-disabled: #f3f4f5;
208
- --seed-color-bg-brand-weak: #fff2ec;
209
- --seed-color-bg-brand-solid: #ff6600;
210
- --seed-color-bg-brand-solid-pressed: #e14d00;
211
- --seed-color-bg-brand-weak-pressed: #ffe8db;
212
- --seed-color-bg-critical-weak: #fdf0f0;
213
- --seed-color-bg-critical-solid: #fa342c;
214
- --seed-color-bg-critical-solid-pressed: #ca1d13;
215
- --seed-color-bg-critical-weak-pressed: #fde7e7;
216
- --seed-color-bg-informative-weak: #eff6ff;
217
- --seed-color-bg-informative-solid: #217cf9;
218
- --seed-color-bg-informative-solid-pressed: #135fcd;
219
- --seed-color-bg-informative-weak-pressed: #e2edfc;
220
- --seed-color-bg-layer-basement: #f3f4f5;
221
- --seed-color-bg-layer-default: #ffffff;
222
- --seed-color-bg-layer-fill: #f7f8f9;
223
- --seed-color-bg-layer-floating: #ffffff;
224
- --seed-color-bg-layer-default-pressed: #f7f8f9;
225
- --seed-color-bg-layer-floating-pressed: #f7f8f9;
226
- --seed-color-bg-magic-weak: #f9f2ee;
227
- --seed-color-bg-neutral-weak: #f3f4f5;
228
- --seed-color-bg-neutral-inverted: #2a3038;
229
- --seed-color-bg-neutral-solid: #1a1c20;
230
- --seed-color-bg-neutral-inverted-pressed: #555d6d;
231
- --seed-color-bg-neutral-solid-muted: #555d6d;
232
- --seed-color-bg-neutral-solid-muted-pressed: #2a3038;
233
- --seed-color-bg-neutral-weak-pressed: #eeeff1;
234
- --seed-color-bg-overlay-muted: #0000002c;
235
- --seed-color-bg-positive-weak: #edfaf6;
236
- --seed-color-bg-positive-solid: #079171;
237
- --seed-color-bg-positive-solid-pressed: #00745f;
238
- --seed-color-bg-positive-weak-pressed: #d9f6e9;
239
- --seed-color-bg-warning-weak: #fff7de;
240
- --seed-color-bg-warning-solid: #fbdc65;
241
- --seed-color-bg-warning-solid-pressed: #e9c647;
242
- --seed-color-bg-warning-weak-pressed: #fdefb9;
243
- --seed-color-stroke-brand-weak: #ffd5c0;
244
- --seed-color-stroke-brand-solid: #e14d00;
245
- --seed-color-stroke-critical-weak: #fed4d2;
246
- --seed-color-stroke-critical-solid: #fa342c;
247
- --seed-color-stroke-informative-weak: #cbdffa;
248
- --seed-color-stroke-informative-solid: #217cf9;
249
- --seed-color-stroke-neutral-contrast: #1a1c20;
250
- --seed-color-stroke-neutral-solid: #555d6d;
251
- --seed-color-stroke-neutral-weak: #dcdee3;
252
- --seed-color-stroke-neutral-muted: #00000010;
253
- --seed-color-stroke-neutral-subtle: #0000000c;
254
- --seed-color-stroke-positive-weak: #b9e9d2;
255
- --seed-color-stroke-positive-solid: #079171;
256
- --seed-color-stroke-warning-weak: #fbdc65;
257
- --seed-color-stroke-warning-solid: #9b7821;
258
- --seed-color-manner-temp-l1-text: #757b85;
259
- --seed-color-manner-temp-l2-text: #ab863f;
260
- --seed-color-manner-temp-l3-text: #e08a00;
261
- --seed-color-manner-temp-l4-text: #f57e00;
262
- --seed-color-manner-temp-l4-bg: #fff3e5;
263
- --seed-color-manner-temp-l5-text: #ff7300;
264
- --seed-color-manner-temp-l6-text: #ff6600;
265
- --seed-color-manner-temp-l1-bg: #f1f2f3;
266
- --seed-color-manner-temp-l2-bg: #f8f4ec;
267
- --seed-color-manner-temp-l3-bg: #fff5e5;
268
- --seed-color-manner-temp-l5-bg: #fff1e5;
269
- --seed-color-manner-temp-l6-bg: #fff0e5;
270
- --seed-color-manner-temp-l7-text: #ff5100;
271
- --seed-color-manner-temp-l7-bg: #ffefe5;
272
- --seed-color-manner-temp-l8-text: #ff3300;
273
- --seed-color-manner-temp-l9-text: #e82c45;
274
- --seed-color-manner-temp-l8-bg: #ffeee5;
275
- --seed-color-manner-temp-l9-bg: #fdeded;
276
- --seed-color-manner-temp-l10-text: #cb0123;
277
- --seed-color-manner-temp-l10-bg: #ffebee;
278
- }
279
-
280
- .data-seed-color-mode__dark-only {
281
- --seed-color-palette-blue-100: #202742;
282
- --seed-color-palette-blue-200: #1e3352;
283
- --seed-color-palette-blue-300: #1a4275;
284
- --seed-color-palette-blue-400: #0f559e;
285
- --seed-color-palette-blue-500: #1964d8;
286
- --seed-color-palette-blue-600: #1e82eb;
287
- --seed-color-palette-blue-700: #41a2f9;
288
- --seed-color-palette-blue-800: #83bcf9;
289
- --seed-color-palette-blue-900: #b9d7fb;
290
- --seed-color-palette-blue-1000: #e5f0fe;
291
- --seed-color-palette-carrot-100: #31241f;
292
- --seed-color-palette-carrot-200: #4b291c;
293
- --seed-color-palette-carrot-300: #6b311c;
294
- --seed-color-palette-carrot-400: #923600;
295
- --seed-color-palette-carrot-500: #bd4201;
296
- --seed-color-palette-carrot-600: #e65200;
297
- --seed-color-palette-carrot-700: #ff6600;
298
- --seed-color-palette-carrot-800: #ff9e65;
299
- --seed-color-palette-carrot-900: #eecebc;
300
- --seed-color-palette-carrot-1000: #f4eeea;
301
- --seed-color-palette-gray-00: #000000;
302
- --seed-color-palette-gray-100: #16171b;
303
- --seed-color-palette-gray-200: #1d2025;
304
- --seed-color-palette-gray-300: #2b2e35;
305
- --seed-color-palette-gray-400: #393d46;
306
- --seed-color-palette-gray-500: #5b606a;
307
- --seed-color-palette-gray-600: #868b94;
308
- --seed-color-palette-gray-700: #b0b3ba;
309
- --seed-color-palette-gray-800: #dcdee3;
310
- --seed-color-palette-gray-900: #e9eaec;
311
- --seed-color-palette-gray-1000: #f3f4f5;
312
- --seed-color-palette-green-100: #202926;
313
- --seed-color-palette-green-200: #20362e;
314
- --seed-color-palette-green-300: #20493b;
315
- --seed-color-palette-green-400: #19604c;
316
- --seed-color-palette-green-500: #117956;
317
- --seed-color-palette-green-600: #1b946d;
318
- --seed-color-palette-green-700: #22b27f;
319
- --seed-color-palette-green-800: #35ce9a;
320
- --seed-color-palette-green-900: #93e5c0;
321
- --seed-color-palette-green-1000: #d4f6ef;
322
- --seed-color-palette-purple-100: #28213b;
323
- --seed-color-palette-purple-200: #3b2873;
324
- --seed-color-palette-purple-300: #443081;
325
- --seed-color-palette-purple-400: #5a3bb1;
326
- --seed-color-palette-purple-500: #764fd9;
327
- --seed-color-palette-purple-600: #8e6bee;
328
- --seed-color-palette-purple-700: #a78df0;
329
- --seed-color-palette-purple-800: #beadf2;
330
- --seed-color-palette-purple-900: #d9cefa;
331
- --seed-color-palette-purple-1000: #f0edfc;
332
- --seed-color-palette-red-100: #322323;
333
- --seed-color-palette-red-200: #4f2624;
334
- --seed-color-palette-red-300: #742826;
335
- --seed-color-palette-red-400: #a12621;
336
- --seed-color-palette-red-500: #ca2319;
337
- --seed-color-palette-red-600: #f73526;
338
- --seed-color-palette-red-700: #ff6e60;
339
- --seed-color-palette-red-800: #ffa299;
340
- --seed-color-palette-red-900: #f8c5c3;
341
- --seed-color-palette-red-1000: #fdf2f2;
342
- --seed-color-palette-static-black: #000000;
343
- --seed-color-palette-static-white: #ffffff;
344
- --seed-color-palette-static-black-alpha-100: #00000007;
345
- --seed-color-palette-static-black-alpha-200: #0000000c;
346
- --seed-color-palette-static-black-alpha-300: #00000010;
347
- --seed-color-palette-static-black-alpha-400: #00000021;
348
- --seed-color-palette-static-black-alpha-500: #0000002c;
349
- --seed-color-palette-static-black-alpha-600: #0000004c;
350
- --seed-color-palette-static-black-alpha-700: #00000074;
351
- --seed-color-palette-static-black-alpha-800: #000000a2;
352
- --seed-color-palette-static-black-alpha-900: #000000d0;
353
- --seed-color-palette-static-black-alpha-1000: #000000e3;
354
- --seed-color-palette-static-white-alpha-50: #ffffff0d;
355
- --seed-color-palette-static-white-alpha-100: #ffffff17;
356
- --seed-color-palette-static-white-alpha-200: #ffffff20;
357
- --seed-color-palette-static-white-alpha-300: #ffffff2e;
358
- --seed-color-palette-static-white-alpha-400: #ffffff3d;
359
- --seed-color-palette-static-white-alpha-500: #ffffff60;
360
- --seed-color-palette-static-white-alpha-600: #ffffff8b;
361
- --seed-color-palette-static-white-alpha-700: #ffffffb3;
362
- --seed-color-palette-static-white-alpha-800: #ffffffde;
363
- --seed-color-palette-static-white-alpha-900: #ffffffea;
364
- --seed-color-palette-static-white-alpha-1000: #fffffff4;
365
- --seed-color-palette-yellow-100: #302819;
366
- --seed-color-palette-yellow-200: #413218;
367
- --seed-color-palette-yellow-300: #543e15;
368
- --seed-color-palette-yellow-400: #714e15;
369
- --seed-color-palette-yellow-500: #91601b;
370
- --seed-color-palette-yellow-600: #b6720d;
371
- --seed-color-palette-yellow-700: #ca901c;
372
- --seed-color-palette-yellow-800: #dab156;
373
- --seed-color-palette-yellow-900: #e5d49b;
374
- --seed-color-palette-yellow-1000: #f7f0cd;
375
- --seed-color-fg-neutral: #f3f4f5;
376
- --seed-color-fg-placeholder: #868b94;
377
- --seed-color-fg-disabled: #5b606a;
378
- --seed-color-fg-brand: #ff6600;
379
- --seed-color-fg-informative: #41a2f9;
380
- --seed-color-fg-critical: #ff6e60;
381
- --seed-color-fg-positive: #22b27f;
382
- --seed-color-fg-warning: #ca901c;
383
- --seed-color-fg-brand-contrast: #ff6600;
384
- --seed-color-fg-critical-contrast: #f8c5c3;
385
- --seed-color-fg-informative-contrast: #b9d7fb;
386
- --seed-color-fg-neutral-muted: #dcdee3;
387
- --seed-color-fg-neutral-subtle: #b0b3ba;
388
- --seed-color-fg-neutral-inverted: #16171b;
389
- --seed-color-fg-positive-contrast: #93e5c0;
390
- --seed-color-fg-warning-contrast: #e5d49b;
391
- --seed-color-bg-overlay: #00000074;
392
- --seed-color-bg-disabled: #2b2e35;
393
- --seed-color-bg-brand-weak: #31241f;
394
- --seed-color-bg-brand-solid: #ff6600;
395
- --seed-color-bg-brand-solid-pressed: #ff9e65;
396
- --seed-color-bg-brand-weak-pressed: #4b291c;
397
- --seed-color-bg-critical-weak: #322323;
398
- --seed-color-bg-critical-solid: #f73526;
399
- --seed-color-bg-critical-solid-pressed: #ff6e60;
400
- --seed-color-bg-critical-weak-pressed: #4f2624;
401
- --seed-color-bg-informative-weak: #202742;
402
- --seed-color-bg-informative-solid: #1e82eb;
403
- --seed-color-bg-informative-solid-pressed: #41a2f9;
404
- --seed-color-bg-informative-weak-pressed: #1e3352;
405
- --seed-color-bg-layer-basement: #000000;
406
- --seed-color-bg-layer-default: #16171b;
407
- --seed-color-bg-layer-fill: #1d2025;
408
- --seed-color-bg-layer-floating: #1d2025;
409
- --seed-color-bg-layer-default-pressed: #2b2e35;
410
- --seed-color-bg-layer-floating-pressed: #2b2e35;
411
- --seed-color-bg-magic-weak: #201f1f;
412
- --seed-color-bg-neutral-weak: #2b2e35;
413
- --seed-color-bg-neutral-inverted: #f3f4f5;
414
- --seed-color-bg-neutral-solid: #2b2e35;
415
- --seed-color-bg-neutral-inverted-pressed: #dcdee3;
416
- --seed-color-bg-neutral-solid-muted: #393d46;
417
- --seed-color-bg-neutral-solid-muted-pressed: #5b606a;
418
- --seed-color-bg-neutral-weak-pressed: #393d46;
419
- --seed-color-bg-overlay-muted: #0000002c;
420
- --seed-color-bg-positive-weak: #202926;
421
- --seed-color-bg-positive-solid: #117956;
422
- --seed-color-bg-positive-solid-pressed: #1b946d;
423
- --seed-color-bg-positive-weak-pressed: #20362e;
424
- --seed-color-bg-warning-weak: #302819;
425
- --seed-color-bg-warning-solid: #dab156;
426
- --seed-color-bg-warning-solid-pressed: #e5d49b;
427
- --seed-color-bg-warning-weak-pressed: #413218;
428
- --seed-color-stroke-brand-weak: #6b311c;
429
- --seed-color-stroke-brand-solid: #ff6600;
430
- --seed-color-stroke-critical-weak: #742826;
431
- --seed-color-stroke-critical-solid: #ff6e60;
432
- --seed-color-stroke-informative-weak: #1a4275;
433
- --seed-color-stroke-informative-solid: #41a2f9;
434
- --seed-color-stroke-neutral-contrast: #f3f4f5;
435
- --seed-color-stroke-neutral-solid: #dcdee3;
436
- --seed-color-stroke-neutral-weak: #393d46;
437
- --seed-color-stroke-neutral-muted: #ffffff17;
438
- --seed-color-stroke-neutral-subtle: #ffffff0d;
439
- --seed-color-stroke-positive-weak: #20493b;
440
- --seed-color-stroke-positive-solid: #22b27f;
441
- --seed-color-stroke-warning-weak: #543e15;
442
- --seed-color-stroke-warning-solid: #ca901c;
443
- --seed-color-manner-temp-l1-text: #b8b8b9;
444
- --seed-color-manner-temp-l2-text: #f5db97;
445
- --seed-color-manner-temp-l3-text: #fdda65;
446
- --seed-color-manner-temp-l4-text: #fbbe55;
447
- --seed-color-manner-temp-l4-bg: #372301;
448
- --seed-color-manner-temp-l5-text: #faac4b;
449
- --seed-color-manner-temp-l6-text: #fc9855;
450
- --seed-color-manner-temp-l1-bg: #292929;
451
- --seed-color-manner-temp-l2-bg: #332605;
452
- --seed-color-manner-temp-l3-bg: #372b01;
453
- --seed-color-manner-temp-l5-bg: #371f01;
454
- --seed-color-manner-temp-l6-bg: #351b03;
455
- --seed-color-manner-temp-l7-text: #f97a25;
456
- --seed-color-manner-temp-l7-bg: #371701;
457
- --seed-color-manner-temp-l8-text: #fe6a34;
458
- --seed-color-manner-temp-l9-text: #fe6a5d;
459
- --seed-color-manner-temp-l8-bg: #380f00;
460
- --seed-color-manner-temp-l9-bg: #380500;
461
- --seed-color-manner-temp-l10-text: #fb6f82;
462
- --seed-color-manner-temp-l10-bg: #34040a;
2
+ --lynx-console-font-weight-regular: 400;
3
+ --lynx-console-font-weight-medium: 500;
4
+ --lynx-console-font-weight-bold: 700;
5
+ --lynx-console-duration-d4: 200ms;
6
+ --lynx-console-duration-d6: 300ms;
7
+ --lynx-console-dimension-x2: 8px;
8
+ --lynx-console-dimension-x3: 12px;
9
+ --lynx-console-dimension-x4: 16px;
10
+ --lynx-console-dimension-x6: 24px;
11
+ --lynx-console-dimension-spacing-x-global-gutter: 16px;
12
+ --lynx-console-radius-r6: 24px;
13
+ }
14
+
15
+ .data-lynx-console-color-mode__light-only {
16
+ --lynx-console-color-palette-blue-100: #eff6ff;
17
+ --lynx-console-color-palette-blue-600: #5e98fe;
18
+ --lynx-console-color-palette-gray-100: #f7f8f9;
19
+ --lynx-console-color-palette-gray-400: #dcdee3;
20
+ --lynx-console-color-palette-green-100: #edfaf6;
21
+ --lynx-console-color-palette-green-600: #10ab7d;
22
+ --lynx-console-color-palette-purple-100: #f5f3fe;
23
+ --lynx-console-color-palette-purple-600: #9f84fb;
24
+ --lynx-console-color-palette-red-100: #fdf0f0;
25
+ --lynx-console-color-palette-red-600: #fc6a66;
26
+ --lynx-console-color-palette-red-900: #921708;
27
+ --lynx-console-color-palette-static-white: #ffffff;
28
+ --lynx-console-color-palette-yellow-100: #fff7de;
29
+ --lynx-console-color-palette-yellow-600: #c49725;
30
+ --lynx-console-color-palette-yellow-900: #4f3e1f;
31
+ --lynx-console-color-fg-neutral: #1a1c20;
32
+ --lynx-console-color-fg-placeholder: #b0b3ba;
33
+ --lynx-console-color-fg-disabled: #d1d3d8;
34
+ --lynx-console-color-fg-neutral-muted: #555d6d;
35
+ --lynx-console-color-fg-neutral-subtle: #868b94;
36
+ --lynx-console-color-bg-overlay: #00000074;
37
+ --lynx-console-color-bg-layer-default: #ffffff;
38
+ --lynx-console-color-bg-layer-floating: #ffffff;
39
+ --lynx-console-color-bg-neutral-weak: #f3f4f5;
40
+ --lynx-console-color-stroke-neutral-subtle: #0000000c;
41
+ --lynx-console-color-stroke-neutral-weak: #dcdee3;
42
+ }
43
+
44
+ .data-lynx-console-color-mode__dark-only {
45
+ --lynx-console-color-palette-blue-100: #202742;
46
+ --lynx-console-color-palette-blue-600: #1e82eb;
47
+ --lynx-console-color-palette-gray-100: #16171b;
48
+ --lynx-console-color-palette-gray-400: #393d46;
49
+ --lynx-console-color-palette-green-100: #202926;
50
+ --lynx-console-color-palette-green-600: #1b946d;
51
+ --lynx-console-color-palette-purple-100: #28213b;
52
+ --lynx-console-color-palette-purple-600: #8e6bee;
53
+ --lynx-console-color-palette-red-100: #322323;
54
+ --lynx-console-color-palette-red-600: #f73526;
55
+ --lynx-console-color-palette-red-900: #f8c5c3;
56
+ --lynx-console-color-palette-static-white: #ffffff;
57
+ --lynx-console-color-palette-yellow-100: #302819;
58
+ --lynx-console-color-palette-yellow-600: #b6720d;
59
+ --lynx-console-color-palette-yellow-900: #e5d49b;
60
+ --lynx-console-color-fg-neutral: #f3f4f5;
61
+ --lynx-console-color-fg-placeholder: #868b94;
62
+ --lynx-console-color-fg-disabled: #5b606a;
63
+ --lynx-console-color-fg-neutral-muted: #dcdee3;
64
+ --lynx-console-color-fg-neutral-subtle: #b0b3ba;
65
+ --lynx-console-color-bg-overlay: #00000074;
66
+ --lynx-console-color-bg-layer-default: #16171b;
67
+ --lynx-console-color-bg-layer-floating: #1d2025;
68
+ --lynx-console-color-bg-neutral-weak: #2b2e35;
69
+ --lynx-console-color-stroke-neutral-subtle: #ffffff0d;
70
+ --lynx-console-color-stroke-neutral-weak: #393d46;
71
+ }
72
+
73
+ page {
74
+ background-color: var(--lynx-console-color-bg-layer-default);
75
+ font-size: 16px;
76
+ }
77
+
78
+ text {
79
+ color: var(--lynx-console-color-fg-neutral);
80
+ }
81
+
82
+ .bs-overlay {
83
+ position: fixed;
84
+ top: 0;
85
+ right: 0;
86
+ bottom: 0;
87
+ left: 0;
88
+ display: flex;
89
+ justify-content: center;
90
+ align-items: flex-end;
91
+ z-index: 9999;
92
+ }
93
+
94
+ .bs-backdrop {
95
+ position: fixed;
96
+ top: 0;
97
+ right: 0;
98
+ bottom: 0;
99
+ left: 0;
100
+ z-index: 9998;
101
+ background: var(--lynx-console-color-bg-overlay);
102
+ transition: opacity var(--lynx-console-duration-d6) cubic-bezier(0.4, 0, 0.2, 1);
103
+ }
104
+
105
+ .bs-content {
106
+ position: relative;
107
+ display: flex;
108
+ flex: 1;
109
+ flex-direction: column;
110
+ box-sizing: border-box;
111
+ word-break: break-all;
112
+ background: var(--lynx-console-color-bg-layer-floating);
113
+ border-top-left-radius: 24px;
114
+ border-top-right-radius: 24px;
115
+ transition: transform var(--lynx-console-duration-d6) cubic-bezier(0.4, 0, 0.2, 1);
116
+ height: 500px;
117
+ overflow: hidden;
118
+ }
119
+
120
+ .bs-handleContainer {
121
+ position: absolute;
122
+ top: 0;
123
+ left: 0;
124
+ right: 0;
125
+ height: 48px;
126
+ display: flex;
127
+ justify-content: center;
128
+ z-index: 10;
129
+ }
130
+
131
+ .bs-handle {
132
+ width: 36px;
133
+ height: 4px;
134
+ background-color: var(--lynx-console-color-palette-gray-400);
135
+ border-radius: 9999px;
136
+ margin-top: 12px;
137
+ }
138
+
139
+ .bs-header {
140
+ display: flex;
141
+ flex-direction: column;
142
+ gap: 8px;
143
+ padding-top: 24px;
144
+ padding-bottom: 16px;
145
+ justify-content: flex-start;
146
+ padding-left: 16px;
147
+ padding-right: 50px;
148
+ }
149
+
150
+ .bs-title {
151
+ font-size: 1.25rem;
152
+ line-height: 1.6875rem;
153
+ font-weight: var(--lynx-console-font-weight-bold);
154
+ color: var(--lynx-console-color-fg-neutral);
155
+ }
156
+
157
+ .bs-body {
158
+ display: flex;
159
+ flex-direction: column;
160
+ flex: 1;
161
+ padding: 0 16px;
162
+ overflow: hidden;
163
+ }
164
+
165
+ .bs-footer {
166
+ display: flex;
167
+ flex-direction: column;
168
+ padding-left: 16px;
169
+ padding-right: 16px;
170
+ padding-top: 12px;
171
+ padding-bottom: 16px;
172
+ }
173
+
174
+ .cp-container {
175
+ display: flex;
176
+ flex-direction: column;
177
+ height: 100%;
178
+ }
179
+
180
+ .cp-placeholder {
181
+ display: flex;
182
+ align-items: center;
183
+ justify-content: center;
184
+ height: 100%;
185
+ }
186
+
187
+ .cp-placeholderText {
188
+ font-size: 0.875rem;
189
+ line-height: 1.1875rem;
190
+ font-weight: var(--lynx-console-font-weight-regular);
191
+ color: var(--lynx-console-color-fg-disabled);
192
+ }
193
+
194
+ .cp-logContainer {
195
+ display: flex;
196
+ flex-direction: column;
197
+ flex: 1;
198
+ padding-top: 4px;
199
+ }
200
+
201
+ .cp-logHeader {
202
+ display: flex;
203
+ flex-direction: row;
204
+ align-items: center;
205
+ justify-content: space-between;
206
+ padding-bottom: 3px;
207
+ }
208
+
209
+ .cp-filterWrapper {
210
+ position: relative;
211
+ }
212
+
213
+ .cp-filterButton {
214
+ display: flex;
215
+ flex-direction: row;
216
+ align-items: center;
217
+ padding: 3px 6px;
218
+ background-color: var(--lynx-console-color-bg-neutral-weak);
219
+ border-radius: 4px;
220
+ }
221
+
222
+ .cp-filterButtonText {
223
+ font-size: 0.8125rem;
224
+ line-height: 1.125rem;
225
+ font-weight: var(--lynx-console-font-weight-medium);
226
+ color: var(--lynx-console-color-fg-neutral-muted);
227
+ }
228
+
229
+ .cp-filterDropdown {
230
+ position: absolute;
231
+ top: 100%;
232
+ left: 0;
233
+ margin-top: 4px;
234
+ background-color: var(--lynx-console-color-bg-layer-floating);
235
+ border-width: 1px;
236
+ border-color: var(--lynx-console-color-stroke-neutral-subtle);
237
+ border-style: solid;
238
+ border-radius: 8px;
239
+ padding: 4px 0;
240
+ z-index: 100;
241
+ min-width: 90px;
242
+ }
243
+
244
+ .cp-filterOption {
245
+ display: flex;
246
+ flex-direction: row;
247
+ align-items: center;
248
+ gap: 4px;
249
+ padding: 8px 12px;
250
+ }
251
+
252
+ .cp-filterCheckbox {
253
+ font-size: 0.8125rem;
254
+ line-height: 1.125rem;
255
+ font-weight: var(--lynx-console-font-weight-medium);
256
+ width: 16px;
257
+ }
258
+
259
+ .cp-filterCheckbox--log {
260
+ color: var(--lynx-console-color-palette-green-600);
261
+ }
262
+
263
+ .cp-filterCheckbox--info {
264
+ color: var(--lynx-console-color-palette-blue-600);
265
+ }
266
+
267
+ .cp-filterCheckbox--warn {
268
+ color: var(--lynx-console-color-palette-yellow-600);
269
+ }
270
+
271
+ .cp-filterCheckbox--error {
272
+ color: var(--lynx-console-color-palette-red-600);
273
+ }
274
+
275
+ .cp-filterLabel {
276
+ font-size: 0.8125rem;
277
+ line-height: 1.125rem;
278
+ font-weight: var(--lynx-console-font-weight-medium);
279
+ }
280
+
281
+ .cp-filterLabel--log {
282
+ color: var(--lynx-console-color-palette-green-600);
283
+ }
284
+
285
+ .cp-filterLabel--info {
286
+ color: var(--lynx-console-color-palette-blue-600);
287
+ }
288
+
289
+ .cp-filterLabel--warn {
290
+ color: var(--lynx-console-color-palette-yellow-600);
291
+ }
292
+
293
+ .cp-filterLabel--error {
294
+ color: var(--lynx-console-color-palette-red-600);
295
+ }
296
+
297
+ .cp-searchWrapper {
298
+ display: flex;
299
+ flex-direction: row;
300
+ align-items: center;
301
+ flex: 1;
302
+ margin-left: 8px;
303
+ margin-right: 8px;
304
+ border-bottom-width: 1px;
305
+ border-bottom-color: var(--lynx-console-color-stroke-neutral-subtle);
306
+ border-bottom-style: solid;
307
+ gap: 8px;
308
+ }
309
+
310
+ .cp-searchPrompt {
311
+ font-size: 1.125rem;
312
+ line-height: 1.5rem;
313
+ font-weight: var(--lynx-console-font-weight-medium);
314
+ color: var(--lynx-console-color-fg-placeholder);
315
+ }
316
+
317
+ .cp-searchInput {
318
+ flex: 1;
319
+ font-size: 0.8125rem;
320
+ line-height: 1.125rem;
321
+ font-weight: var(--lynx-console-font-weight-regular);
322
+ color: var(--lynx-console-color-fg-neutral);
323
+ caret-color: var(--lynx-console-color-palette-green-600);
324
+ }
325
+
326
+ .cp-searchClear {
327
+ padding: 2px 4px;
328
+ }
329
+
330
+ .cp-searchClearText {
331
+ font-size: 0.8125rem;
332
+ line-height: 1.125rem;
333
+ font-weight: var(--lynx-console-font-weight-medium);
334
+ color: var(--lynx-console-color-fg-placeholder);
335
+ }
336
+
337
+ .cp-clearButton {
338
+ padding: 3px 6px;
339
+ background-color: var(--lynx-console-color-bg-neutral-weak);
340
+ border-radius: 4px;
341
+ }
342
+
343
+ .cp-clearButtonText {
344
+ font-size: 0.8125rem;
345
+ line-height: 1.125rem;
346
+ font-weight: var(--lynx-console-font-weight-medium);
347
+ color: var(--lynx-console-color-fg-neutral-muted);
348
+ }
349
+
350
+ .cp-logList {
351
+ flex: 1;
352
+ padding-top: 0;
353
+ padding-bottom: 0;
354
+ }
355
+
356
+ .cp-logItem {
357
+ padding: 8px;
358
+ border-bottom-width: 1px;
359
+ border-bottom-color: var(--lynx-console-color-stroke-neutral-weak);
360
+ border-bottom-style: solid;
361
+ }
362
+
363
+ .cp-logItem--warn {
364
+ background-color: var(--lynx-console-color-palette-yellow-100);
365
+ }
366
+
367
+ .cp-logItem--error {
368
+ background-color: var(--lynx-console-color-palette-red-100);
369
+ }
370
+
371
+ .cp-logItemHeader {
372
+ display: flex;
373
+ flex-direction: row;
374
+ align-items: center;
375
+ margin-bottom: 4px;
376
+ }
377
+
378
+ .cp-logLevel {
379
+ font-size: 0.75rem;
380
+ line-height: 1rem;
381
+ font-weight: var(--lynx-console-font-weight-bold);
382
+ margin-right: 8px;
383
+ }
384
+
385
+ .cp-logLevel--log {
386
+ color: var(--lynx-console-color-palette-green-600);
387
+ }
388
+
389
+ .cp-logLevel--info {
390
+ color: var(--lynx-console-color-palette-blue-600);
391
+ }
392
+
393
+ .cp-logLevel--warn {
394
+ color: var(--lynx-console-color-palette-yellow-600);
395
+ }
396
+
397
+ .cp-logLevel--error {
398
+ color: var(--lynx-console-color-palette-red-600);
399
+ }
400
+
401
+ .cp-logTime {
402
+ font-size: 0.75rem;
403
+ line-height: 1rem;
404
+ font-weight: var(--lynx-console-font-weight-regular);
405
+ color: var(--lynx-console-color-fg-neutral-subtle);
406
+ }
407
+
408
+ .cp-toggleIndicator {
409
+ font-size: 0.75rem;
410
+ line-height: 1rem;
411
+ font-weight: var(--lynx-console-font-weight-regular);
412
+ color: var(--lynx-console-color-fg-neutral-subtle);
413
+ margin-left: 4px;
414
+ align-self: flex-start;
415
+ }
416
+
417
+ .cp-logMessage {
418
+ font-size: 0.8125rem;
419
+ line-height: 1.125rem;
420
+ font-weight: var(--lynx-console-font-weight-regular);
421
+ color: var(--lynx-console-color-fg-neutral);
422
+ word-break: break-all;
423
+ }
424
+
425
+ .cp-logArgsContainer {
426
+ display: flex;
427
+ flex-direction: row;
428
+ flex-wrap: wrap;
429
+ gap: 8px;
430
+ }
431
+
432
+ .cp-logArgItem {
433
+ font-size: 0.8125rem;
434
+ line-height: 1.125rem;
435
+ font-weight: var(--lynx-console-font-weight-regular);
436
+ }
437
+
438
+ .cp-argNull {
439
+ color: var(--lynx-console-color-fg-neutral-subtle);
440
+ }
441
+
442
+ .cp-argUndefined {
443
+ color: var(--lynx-console-color-fg-neutral-subtle);
444
+ }
445
+
446
+ .cp-argString {
447
+ font-size: 0.8125rem;
448
+ line-height: 1.125rem;
449
+ font-weight: var(--lynx-console-font-weight-regular);
450
+ }
451
+
452
+ .cp-argString--log {
453
+ color: var(--lynx-console-color-fg-neutral);
454
+ }
455
+
456
+ .cp-argString--info {
457
+ color: var(--lynx-console-color-fg-neutral);
458
+ }
459
+
460
+ .cp-argString--warn {
461
+ color: var(--lynx-console-color-palette-yellow-900);
462
+ }
463
+
464
+ .cp-argString--error {
465
+ color: var(--lynx-console-color-palette-red-900);
466
+ }
467
+
468
+ .cp-argPrimitive {
469
+ font-size: 0.8125rem;
470
+ line-height: 1.125rem;
471
+ font-weight: var(--lynx-console-font-weight-regular);
472
+ }
473
+
474
+ .cp-argPrimitive--log {
475
+ color: var(--lynx-console-color-palette-blue-600);
476
+ }
477
+
478
+ .cp-argPrimitive--info {
479
+ color: var(--lynx-console-color-palette-blue-600);
480
+ }
481
+
482
+ .cp-argPrimitive--warn {
483
+ color: var(--lynx-console-color-palette-yellow-900);
484
+ }
485
+
486
+ .cp-argPrimitive--error {
487
+ color: var(--lynx-console-color-palette-red-900);
488
+ }
489
+
490
+ .cp-argObject {
491
+ display: flex;
492
+ flex-direction: column;
493
+ }
494
+
495
+ .cp-argObjectHeader {
496
+ display: flex;
497
+ flex-direction: row;
498
+ align-items: center;
499
+ gap: 4px;
500
+ }
501
+
502
+ .cp-argObjectPreview {
503
+ font-size: 0.8125rem;
504
+ line-height: 1.125rem;
505
+ font-weight: var(--lynx-console-font-weight-medium);
506
+ color: var(--lynx-console-color-fg-neutral);
507
+ }
508
+
509
+ .cp-argObjectContent {
510
+ margin-top: 4px;
511
+ display: flex;
512
+ flex-direction: column;
513
+ gap: 4px;
514
+ }
515
+
516
+ .cp-argObjectProperty {
517
+ display: flex;
518
+ flex-direction: row;
519
+ align-items: flex-start;
520
+ }
521
+
522
+ .cp-argObjectKey {
523
+ font-size: 0.8125rem;
524
+ line-height: 1.125rem;
525
+ font-weight: var(--lynx-console-font-weight-medium);
526
+ color: var(--lynx-console-color-palette-purple-600);
527
+ }
528
+
529
+ .cp-argObjectJson {
530
+ font-size: 0.8125rem;
531
+ line-height: 1.125rem;
532
+ font-weight: var(--lynx-console-font-weight-regular);
533
+ color: var(--lynx-console-color-fg-neutral);
534
+ }
535
+
536
+ .cp-replInputRow {
537
+ display: flex;
538
+ flex-direction: row;
539
+ align-items: center;
540
+ gap: 8px;
541
+ padding-top: 0;
542
+ padding-bottom: 8px;
543
+ }
544
+
545
+ .cp-replPrompt {
546
+ font-size: 1.625rem;
547
+ line-height: 2.1875rem;
548
+ font-weight: var(--lynx-console-font-weight-medium);
549
+ color: var(--lynx-console-color-fg-placeholder);
550
+ padding-bottom: 8px;
551
+ }
552
+
553
+ .cp-replInput {
554
+ flex: 1;
555
+ font-size: 1rem;
556
+ line-height: 1.375rem;
557
+ font-weight: var(--lynx-console-font-weight-regular);
558
+ color: var(--lynx-console-color-fg-neutral);
559
+ caret-color: var(--lynx-console-color-palette-green-600);
560
+ padding-bottom: 8px;
561
+ }
562
+
563
+ .cp-replRunButton {
564
+ padding: 4px 10px;
565
+ background-color: var(--lynx-console-color-palette-green-100);
566
+ border-radius: 4px;
567
+ margin-bottom: 8px;
568
+ }
569
+
570
+ .cp-replRunButtonText {
571
+ font-size: 0.8125rem;
572
+ line-height: 1.125rem;
573
+ font-weight: var(--lynx-console-font-weight-medium);
574
+ color: var(--lynx-console-color-palette-green-600);
575
+ }
576
+
577
+ .np-container {
578
+ display: flex;
579
+ flex-direction: column;
580
+ flex: 1;
581
+ padding-top: 4px;
582
+ }
583
+
584
+ .np-header {
585
+ display: flex;
586
+ flex-direction: row;
587
+ align-items: center;
588
+ justify-content: space-between;
589
+ margin-bottom: 8px;
590
+ padding-bottom: 4px;
591
+ }
592
+
593
+ .np-count {
594
+ font-size: 0.8125rem;
595
+ line-height: 1.125rem;
596
+ font-weight: var(--lynx-console-font-weight-regular);
597
+ color: var(--lynx-console-color-fg-neutral-subtle);
598
+ }
599
+
600
+ .np-clearButton {
601
+ padding: 3px 6px;
602
+ background-color: var(--lynx-console-color-bg-neutral-weak);
603
+ border-radius: 4px;
604
+ }
605
+
606
+ .np-clearButtonText {
607
+ font-size: 0.8125rem;
608
+ line-height: 1.125rem;
609
+ font-weight: var(--lynx-console-font-weight-medium);
610
+ color: var(--lynx-console-color-fg-neutral-muted);
611
+ }
612
+
613
+ .np-list {
614
+ flex: 1;
615
+ }
616
+
617
+ .np-placeholder {
618
+ display: flex;
619
+ align-items: center;
620
+ justify-content: center;
621
+ height: 100%;
622
+ }
623
+
624
+ .np-placeholderText {
625
+ font-size: 0.875rem;
626
+ line-height: 1.1875rem;
627
+ font-weight: var(--lynx-console-font-weight-regular);
628
+ color: var(--lynx-console-color-fg-disabled);
629
+ }
630
+
631
+ .np-item {
632
+ padding: 8px;
633
+ border-bottom-width: 1px;
634
+ border-bottom-color: var(--lynx-console-color-stroke-neutral-weak);
635
+ border-bottom-style: solid;
636
+ }
637
+
638
+ .np-item--pending {
639
+ background-color: var(--lynx-console-color-palette-gray-100);
640
+ }
641
+
642
+ .np-item--error {
643
+ background-color: var(--lynx-console-color-palette-red-100);
644
+ }
645
+
646
+ .np-itemHeader {
647
+ display: flex;
648
+ flex-direction: row;
649
+ align-items: center;
650
+ margin-bottom: 4px;
651
+ gap: 8px;
652
+ }
653
+
654
+ .np-method {
655
+ font-size: 0.75rem;
656
+ line-height: 1rem;
657
+ font-weight: var(--lynx-console-font-weight-bold);
658
+ padding: 0 4px;
659
+ border-radius: 2px;
660
+ color: var(--lynx-console-color-fg-neutral);
661
+ background-color: var(--lynx-console-color-bg-neutral-weak);
662
+ }
663
+
664
+ .np-method--GET {
665
+ color: var(--lynx-console-color-palette-blue-600);
666
+ background-color: var(--lynx-console-color-palette-blue-100);
667
+ }
668
+
669
+ .np-method--POST {
670
+ color: var(--lynx-console-color-palette-green-600);
671
+ background-color: var(--lynx-console-color-palette-green-100);
672
+ }
673
+
674
+ .np-method--PUT {
675
+ color: var(--lynx-console-color-palette-yellow-600);
676
+ background-color: var(--lynx-console-color-palette-yellow-100);
677
+ }
678
+
679
+ .np-method--PATCH {
680
+ color: var(--lynx-console-color-palette-purple-600);
681
+ background-color: var(--lynx-console-color-palette-purple-100);
682
+ }
683
+
684
+ .np-method--DELETE {
685
+ color: var(--lynx-console-color-palette-red-600);
686
+ background-color: var(--lynx-console-color-palette-red-100);
687
+ }
688
+
689
+ .np-statusCode {
690
+ font-size: 0.75rem;
691
+ line-height: 1rem;
692
+ font-weight: var(--lynx-console-font-weight-bold);
693
+ }
694
+
695
+ .np-statusCode--success {
696
+ color: var(--lynx-console-color-palette-green-600);
697
+ }
698
+
699
+ .np-statusCode--error {
700
+ color: var(--lynx-console-color-palette-red-600);
701
+ }
702
+
703
+ .np-statusCode--pending {
704
+ color: var(--lynx-console-color-fg-neutral-subtle);
705
+ }
706
+
707
+ .np-time {
708
+ font-size: 0.75rem;
709
+ line-height: 1rem;
710
+ font-weight: var(--lynx-console-font-weight-regular);
711
+ color: var(--lynx-console-color-fg-neutral-subtle);
712
+ }
713
+
714
+ .np-url {
715
+ font-size: 0.8125rem;
716
+ line-height: 1.125rem;
717
+ font-weight: var(--lynx-console-font-weight-regular);
718
+ color: var(--lynx-console-color-fg-neutral);
719
+ word-break: break-all;
720
+ margin-bottom: 4px;
721
+ }
722
+
723
+ .np-path {
724
+ font-size: 0.8125rem;
725
+ line-height: 1.125rem;
726
+ font-weight: var(--lynx-console-font-weight-regular);
727
+ color: var(--lynx-console-color-fg-neutral);
728
+ word-break: break-all;
729
+ white-space: pre-wrap;
730
+ overflow: visible;
731
+ margin-bottom: 4px;
732
+ }
733
+
734
+ .np-details {
735
+ font-size: 0.8125rem;
736
+ line-height: 1.125rem;
737
+ font-weight: var(--lynx-console-font-weight-regular);
738
+ color: var(--lynx-console-color-fg-neutral-subtle);
739
+ }
740
+
741
+ .np-detailsContainer {
742
+ margin-top: 12px;
743
+ padding-top: 12px;
744
+ border-top-width: 1px;
745
+ border-top-color: var(--lynx-console-color-stroke-neutral-subtle);
746
+ border-top-style: solid;
747
+ }
748
+
749
+ .np-tabs {
750
+ display: flex;
751
+ flex-direction: row;
752
+ gap: 4px;
753
+ padding-bottom: 6px;
754
+ }
755
+
756
+ .np-tab {
757
+ padding: 4px 8px;
758
+ border-radius: 4px;
759
+ cursor: pointer;
760
+ }
761
+
762
+ .np-tab--active {
763
+ background-color: var(--lynx-console-color-bg-neutral-weak);
764
+ }
765
+
766
+ .np-tabText {
767
+ font-size: 0.875rem;
768
+ line-height: 1.1875rem;
769
+ font-weight: var(--lynx-console-font-weight-medium);
770
+ color: var(--lynx-console-color-fg-neutral-subtle);
771
+ }
772
+
773
+ .np-tabText--active {
774
+ color: var(--lynx-console-color-fg-neutral);
775
+ }
776
+
777
+ .np-tabContent {
778
+ padding-top: 8px;
779
+ }
780
+
781
+ .np-detailSection {
782
+ margin-bottom: 12px;
783
+ }
784
+
785
+ .np-detailSectionTitle {
786
+ font-size: 0.8125rem;
787
+ line-height: 1.125rem;
788
+ font-weight: var(--lynx-console-font-weight-bold);
789
+ color: var(--lynx-console-color-fg-neutral);
790
+ margin-bottom: 8px;
791
+ }
792
+
793
+ .np-table {
794
+ display: flex;
795
+ flex-direction: column;
796
+ gap: 4px;
797
+ }
798
+
799
+ .np-tableRow {
800
+ display: flex;
801
+ flex-direction: row;
802
+ gap: 8px;
803
+ padding: 4px 8px;
804
+ background-color: var(--lynx-console-color-bg-neutral-weak);
805
+ border-radius: 2px;
806
+ }
807
+
808
+ .np-tableKey {
809
+ font-size: 0.8125rem;
810
+ line-height: 1.125rem;
811
+ font-weight: var(--lynx-console-font-weight-bold);
812
+ color: var(--lynx-console-color-fg-neutral-subtle);
813
+ min-width: 70px;
814
+ flex-shrink: 0;
815
+ }
816
+
817
+ .np-tableValue {
818
+ font-size: 0.8125rem;
819
+ line-height: 1.125rem;
820
+ font-weight: var(--lynx-console-font-weight-regular);
821
+ color: var(--lynx-console-color-fg-neutral);
822
+ word-break: break-all;
823
+ flex: 1;
824
+ }
825
+
826
+ .np-bodyText {
827
+ font-size: 0.8125rem;
828
+ line-height: 1.125rem;
829
+ font-weight: var(--lynx-console-font-weight-regular);
830
+ color: var(--lynx-console-color-fg-neutral);
831
+ padding: 8px;
832
+ background-color: var(--lynx-console-color-bg-neutral-weak);
833
+ border-radius: 4px;
834
+ word-break: break-all;
835
+ white-space: pre-wrap;
836
+ }
837
+
838
+ .np-errorText {
839
+ font-size: 0.8125rem;
840
+ line-height: 1.125rem;
841
+ font-weight: var(--lynx-console-font-weight-regular);
842
+ color: var(--lynx-console-color-palette-red-600);
843
+ padding: 8px;
844
+ background-color: var(--lynx-console-color-palette-red-100);
845
+ border-radius: 4px;
846
+ word-break: break-all;
847
+ }
848
+
849
+ .np-emptyText {
850
+ font-size: 0.8125rem;
851
+ line-height: 1.125rem;
852
+ font-weight: var(--lynx-console-font-weight-regular);
853
+ color: var(--lynx-console-color-fg-disabled);
854
+ text-align: center;
855
+ padding: 16px 0;
856
+ }
857
+
858
+ .pp-container {
859
+ display: flex;
860
+ flex-direction: column;
861
+ flex: 1;
862
+ padding-top: 4px;
863
+ }
864
+
865
+ .pp-header {
866
+ display: flex;
867
+ flex-direction: row;
868
+ align-items: center;
869
+ justify-content: space-between;
870
+ margin-bottom: 8px;
871
+ padding-bottom: 4px;
872
+ border-bottom-width: 1px;
873
+ border-bottom-color: var(--lynx-console-color-stroke-neutral-subtle);
874
+ border-bottom-style: solid;
875
+ }
876
+
877
+ .pp-count {
878
+ font-size: 0.8125rem;
879
+ line-height: 1.125rem;
880
+ font-weight: var(--lynx-console-font-weight-regular);
881
+ color: var(--lynx-console-color-fg-neutral-subtle);
882
+ }
883
+
884
+ .pp-clearButton {
885
+ padding: 3px 6px;
886
+ background-color: var(--lynx-console-color-bg-neutral-weak);
887
+ border-radius: 4px;
888
+ }
889
+
890
+ .pp-clearButtonText {
891
+ font-size: 0.8125rem;
892
+ line-height: 1.125rem;
893
+ font-weight: var(--lynx-console-font-weight-medium);
894
+ color: var(--lynx-console-color-fg-neutral-muted);
895
+ }
896
+
897
+ .pp-list {
898
+ flex: 1;
899
+ }
900
+
901
+ .pp-placeholder {
902
+ display: flex;
903
+ align-items: center;
904
+ justify-content: center;
905
+ height: 100%;
906
+ }
907
+
908
+ .pp-placeholderText {
909
+ font-size: 0.875rem;
910
+ line-height: 1.1875rem;
911
+ font-weight: var(--lynx-console-font-weight-regular);
912
+ color: var(--lynx-console-color-fg-disabled);
913
+ }
914
+
915
+ .pp-item {
916
+ padding: 8px;
917
+ border-bottom-width: 1px;
918
+ border-bottom-color: var(--lynx-console-color-stroke-neutral-weak);
919
+ border-bottom-style: solid;
920
+ }
921
+
922
+ .pp-itemHeader {
923
+ display: flex;
924
+ flex-direction: row;
925
+ align-items: center;
926
+ margin-bottom: 4px;
927
+ gap: 8px;
928
+ }
929
+
930
+ .pp-entryType {
931
+ font-size: 0.75rem;
932
+ line-height: 1rem;
933
+ font-weight: var(--lynx-console-font-weight-bold);
934
+ padding: 0 6px;
935
+ border-radius: 2px;
936
+ color: var(--lynx-console-color-fg-neutral);
937
+ background-color: var(--lynx-console-color-bg-neutral-weak);
938
+ }
939
+
940
+ .pp-entryType--init {
941
+ color: var(--lynx-console-color-palette-blue-600);
942
+ background-color: var(--lynx-console-color-palette-blue-100);
943
+ }
944
+
945
+ .pp-entryType--metric {
946
+ color: var(--lynx-console-color-palette-green-600);
947
+ background-color: var(--lynx-console-color-palette-green-100);
948
+ }
949
+
950
+ .pp-entryType--pipeline {
951
+ color: var(--lynx-console-color-palette-purple-600);
952
+ background-color: var(--lynx-console-color-palette-purple-100);
953
+ }
954
+
955
+ .pp-entryType--resource {
956
+ color: var(--lynx-console-color-palette-yellow-600);
957
+ background-color: var(--lynx-console-color-palette-yellow-100);
958
+ }
959
+
960
+ .pp-entryName {
961
+ font-size: 0.75rem;
962
+ line-height: 1rem;
963
+ font-weight: var(--lynx-console-font-weight-medium);
964
+ color: var(--lynx-console-color-fg-neutral);
965
+ }
966
+
967
+ .pp-timestamp {
968
+ font-size: 0.75rem;
969
+ line-height: 1rem;
970
+ font-weight: var(--lynx-console-font-weight-regular);
971
+ color: var(--lynx-console-color-fg-neutral-subtle);
972
+ }
973
+
974
+ .pp-fcpMetricHeader {
975
+ display: flex;
976
+ flex-direction: row;
977
+ align-items: center;
978
+ gap: 8px;
979
+ }
980
+
981
+ .pp-fcpHighlight {
982
+ font-size: 0.8125rem;
983
+ line-height: 1.125rem;
984
+ font-weight: var(--lynx-console-font-weight-bold);
985
+ color: var(--lynx-console-color-palette-blue-600);
986
+ background-color: var(--lynx-console-color-palette-blue-100);
987
+ padding: 4px 8px;
988
+ border-radius: 4px;
989
+ margin-top: 4px;
990
+ }
991
+
992
+ .pp-metrics {
993
+ margin-top: 8px;
994
+ display: flex;
995
+ flex-direction: column;
996
+ gap: 4px;
997
+ }
998
+
999
+ .pp-metric {
1000
+ display: flex;
1001
+ flex-direction: row;
1002
+ align-items: center;
1003
+ gap: 8px;
1004
+ padding: 4px 8px;
1005
+ background-color: var(--lynx-console-color-bg-neutral-weak);
1006
+ border-radius: 2px;
1007
+ }
1008
+
1009
+ .pp-metricName {
1010
+ font-size: 0.8125rem;
1011
+ line-height: 1.125rem;
1012
+ font-weight: var(--lynx-console-font-weight-medium);
1013
+ color: var(--lynx-console-color-fg-neutral-subtle);
1014
+ min-width: 100px;
1015
+ flex-shrink: 0;
1016
+ }
1017
+
1018
+ .pp-metricValue {
1019
+ font-size: 0.8125rem;
1020
+ line-height: 1.125rem;
1021
+ font-weight: var(--lynx-console-font-weight-bold);
1022
+ color: var(--lynx-console-color-palette-green-600);
1023
+ flex: 1;
1024
+ }
1025
+
1026
+ .pp-detailsContainer {
1027
+ margin-top: 12px;
1028
+ display: flex;
1029
+ flex-direction: column;
1030
+ gap: 12px;
1031
+ }
1032
+
1033
+ .pp-fcpSection {
1034
+ display: flex;
1035
+ flex-direction: column;
1036
+ gap: 8px;
1037
+ }
1038
+
1039
+ .pp-fcpSectionDescription {
1040
+ font-size: 0.8125rem;
1041
+ line-height: 1.125rem;
1042
+ font-weight: var(--lynx-console-font-weight-regular);
1043
+ color: var(--lynx-console-color-fg-neutral-subtle);
1044
+ margin-bottom: 4px;
1045
+ }
1046
+
1047
+ .pp-fcpMetric {
1048
+ background-color: var(--lynx-console-color-bg-layer-default);
1049
+ border-radius: 4px;
1050
+ display: flex;
1051
+ flex-direction: column;
1052
+ gap: 4px;
1053
+ }
1054
+
1055
+ .pp-fcpMetricName {
1056
+ font-size: 0.75rem;
1057
+ line-height: 1rem;
1058
+ font-weight: var(--lynx-console-font-weight-bold);
1059
+ color: var(--lynx-console-color-fg-neutral);
1060
+ }
1061
+
1062
+ .pp-fcpMetricValue {
1063
+ font-size: 0.6875rem;
1064
+ line-height: 0.9375rem;
1065
+ font-weight: var(--lynx-console-font-weight-bold);
1066
+ color: var(--lynx-console-color-palette-blue-600);
1067
+ }
1068
+
1069
+ .pp-fcpMetricDescription {
1070
+ font-size: 0.8125rem;
1071
+ line-height: 1.125rem;
1072
+ font-weight: var(--lynx-console-font-weight-regular);
1073
+ color: var(--lynx-console-color-fg-neutral-subtle);
1074
+ }
1075
+
1076
+ .pp-fcpMetricFormula {
1077
+ font-size: 0.875rem;
1078
+ line-height: 1.1875rem;
1079
+ font-weight: var(--lynx-console-font-weight-regular);
1080
+ color: var(--lynx-console-color-fg-disabled);
1081
+ font-family: monospace;
1082
+ }
1083
+
1084
+ .pp-rawEntrySection {
1085
+ padding: 12px;
1086
+ background-color: var(--lynx-console-color-bg-neutral-weak);
1087
+ border-radius: 4px;
1088
+ }
1089
+
1090
+ .pp-detailTitle {
1091
+ font-size: 0.8125rem;
1092
+ line-height: 1.125rem;
1093
+ font-weight: var(--lynx-console-font-weight-bold);
1094
+ color: var(--lynx-console-color-fg-neutral);
1095
+ margin-bottom: 8px;
1096
+ }
1097
+
1098
+ .pp-rawEntry {
1099
+ font-size: 0.8125rem;
1100
+ line-height: 1.125rem;
1101
+ font-weight: var(--lynx-console-font-weight-regular);
1102
+ color: var(--lynx-console-color-fg-neutral-subtle);
1103
+ font-family: monospace;
1104
+ white-space: pre-wrap;
1105
+ word-break: break-all;
1106
+ }
1107
+
1108
+ .tabs-root {
1109
+ flex: 1;
1110
+ display: flex;
1111
+ flex-direction: column;
1112
+ }
1113
+
1114
+ .tabs-header {
1115
+ display: flex;
1116
+ box-shadow: inset 0 -1px 0 0 var(--lynx-console-color-stroke-neutral-subtle);
1117
+ }
1118
+
1119
+ .tabs-triggerButton {
1120
+ flex: 1;
1121
+ color: var(--lynx-console-color-fg-neutral-subtle);
1122
+ display: flex;
1123
+ justify-content: center;
1124
+ align-items: center;
1125
+ padding: 12px 0 10px 0;
1126
+ position: relative;
1127
+ }
1128
+
1129
+ .tabs-triggerButtonText {
1130
+ font-size: 1rem;
1131
+ line-height: 1.375rem;
1132
+ font-weight: var(--lynx-console-font-weight-bold);
1133
+ color: var(--lynx-console-color-fg-neutral-subtle);
1134
+ }
1135
+
1136
+ .tabs-triggerButtonText--active {
1137
+ color: var(--lynx-console-color-fg-neutral);
1138
+ }
1139
+
1140
+ .tabs-triggerButtonText--t4 {
1141
+ font-size: 0.875rem;
1142
+ line-height: 1.1875rem;
1143
+ }
1144
+
1145
+ .tabs-triggerButtonText--t3 {
1146
+ font-size: 0.8125rem;
1147
+ line-height: 1.125rem;
1148
+ }
1149
+
1150
+ .tabs-triggerButtonText--t2 {
1151
+ font-size: 0.75rem;
1152
+ line-height: 1rem;
1153
+ }
1154
+
1155
+ .tabs-triggerButtonText--t1 {
1156
+ font-size: 0.6875rem;
1157
+ line-height: 0.9375rem;
1158
+ }
1159
+
1160
+ .tabs-triggerIndicator {
1161
+ position: absolute;
1162
+ bottom: 0;
1163
+ left: 0;
1164
+ padding: 0 16px;
1165
+ width: 100%;
1166
+ transition: 200ms;
1167
+ transition-timing-function: cubic-bezier(.35, 0, .35, 1);
1168
+ }
1169
+
1170
+ .tabs-triggerIndicatorLine {
1171
+ background-color: var(--lynx-console-color-fg-neutral);
1172
+ width: 100%;
1173
+ height: 2px;
1174
+ }
1175
+
1176
+ .tabs-contents {
1177
+ flex: 1;
1178
+ width: 100%;
1179
+ }
1180
+
1181
+ .tabs-content {
1182
+ width: 100%;
1183
+ display: flex;
1184
+ flex-direction: column;
1185
+ }
1186
+
1187
+ .fb-wrapper {
1188
+ position: fixed;
1189
+ z-index: 9999;
1190
+ display: flex;
1191
+ flex-direction: row;
1192
+ align-items: center;
1193
+ gap: 8px;
1194
+ overflow: visible;
1195
+ transition: transform var(--lynx-console-duration-d4) cubic-bezier(0.4, 0, 0.2, 1);
1196
+ }
1197
+
1198
+ .fb-button {
1199
+ position: relative;
1200
+ overflow: hidden;
1201
+ padding-left: 8px;
1202
+ padding-right: 8px;
1203
+ padding-top: 4px;
1204
+ padding-bottom: 4px;
1205
+ border-radius: 12px;
1206
+ background-color: var(--lynx-console-color-palette-green-600);
1207
+ display: flex;
1208
+ flex-direction: column;
1209
+ align-items: center;
1210
+ justify-content: center;
1211
+ gap: 2px;
1212
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1213
+ }
1214
+
1215
+ .fb-shineOverlay {
1216
+ position: absolute;
1217
+ top: -50%;
1218
+ left: -25%;
1219
+ width: 150%;
1220
+ height: 200%;
1221
+ background-color: rgba(255, 255, 255, 0.2);
1222
+ border-radius: 9999px;
1223
+ }
1224
+
1225
+ .fb-title {
1226
+ font-size: 0.875rem;
1227
+ line-height: 1.1875rem;
1228
+ font-weight: var(--lynx-console-font-weight-regular);
1229
+ color: var(--lynx-console-color-palette-static-white);
1230
+ text-align: center;
1231
+ }
1232
+
1233
+ .fb-subtitle {
1234
+ font-size: 0.8125rem;
1235
+ line-height: 1.125rem;
1236
+ font-weight: var(--lynx-console-font-weight-regular);
1237
+ color: var(--lynx-console-color-palette-static-white);
1238
+ text-align: center;
1239
+ }
1240
+
1241
+ .fb-reloadButton {
1242
+ overflow: visible;
1243
+ width: 32px;
1244
+ height: 32px;
1245
+ border-radius: 16px;
1246
+ background-color: var(--lynx-console-color-palette-green-600);
1247
+ display: flex;
1248
+ align-items: center;
1249
+ justify-content: center;
1250
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1251
+ }
1252
+
1253
+ .fb-reloadIcon {
1254
+ font-size: 20px;
1255
+ line-height: 32px;
1256
+ margin-bottom: 5px;
1257
+ color: var(--lynx-console-color-palette-static-white);
1258
+ text-align: center;
463
1259
  }
464
1260
 
465
1261