lynx-console 0.1.1 → 0.2.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 (49) hide show
  1. package/dist/index.cjs +183 -960
  2. package/dist/index.css +1248 -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 +9 -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,1252 @@
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
+ .bs-overlay {
74
+ position: fixed;
75
+ top: 0;
76
+ right: 0;
77
+ bottom: 0;
78
+ left: 0;
79
+ display: flex;
80
+ justify-content: center;
81
+ align-items: flex-end;
82
+ z-index: 9999;
83
+ }
84
+
85
+ .bs-backdrop {
86
+ position: fixed;
87
+ top: 0;
88
+ right: 0;
89
+ bottom: 0;
90
+ left: 0;
91
+ z-index: 9998;
92
+ background: var(--lynx-console-color-bg-overlay);
93
+ transition: opacity var(--lynx-console-duration-d6) cubic-bezier(0.4, 0, 0.2, 1);
94
+ }
95
+
96
+ .bs-content {
97
+ position: relative;
98
+ display: flex;
99
+ flex: 1;
100
+ flex-direction: column;
101
+ box-sizing: border-box;
102
+ word-break: break-all;
103
+ background: var(--lynx-console-color-bg-layer-floating);
104
+ border-top-left-radius: 24px;
105
+ border-top-right-radius: 24px;
106
+ transition: transform var(--lynx-console-duration-d6) cubic-bezier(0.4, 0, 0.2, 1);
107
+ height: 500px;
108
+ overflow: hidden;
109
+ }
110
+
111
+ .bs-handleContainer {
112
+ position: absolute;
113
+ top: 0;
114
+ left: 0;
115
+ right: 0;
116
+ height: 48px;
117
+ display: flex;
118
+ justify-content: center;
119
+ z-index: 10;
120
+ }
121
+
122
+ .bs-handle {
123
+ width: 36px;
124
+ height: 4px;
125
+ background-color: var(--lynx-console-color-palette-gray-400);
126
+ border-radius: 9999px;
127
+ margin-top: 12px;
128
+ }
129
+
130
+ .bs-header {
131
+ display: flex;
132
+ flex-direction: column;
133
+ gap: 8px;
134
+ padding-top: 24px;
135
+ padding-bottom: 16px;
136
+ justify-content: flex-start;
137
+ padding-left: 16px;
138
+ padding-right: 50px;
139
+ }
140
+
141
+ .bs-title {
142
+ font-size: 1.25rem;
143
+ line-height: 1.6875rem;
144
+ font-weight: var(--lynx-console-font-weight-bold);
145
+ color: var(--lynx-console-color-fg-neutral);
146
+ }
147
+
148
+ .bs-body {
149
+ display: flex;
150
+ flex-direction: column;
151
+ flex: 1;
152
+ padding: 0 16px;
153
+ overflow: hidden;
154
+ }
155
+
156
+ .bs-footer {
157
+ display: flex;
158
+ flex-direction: column;
159
+ padding-left: 16px;
160
+ padding-right: 16px;
161
+ padding-top: 12px;
162
+ padding-bottom: 16px;
163
+ }
164
+
165
+ .cp-container {
166
+ display: flex;
167
+ flex-direction: column;
168
+ height: 100%;
169
+ }
170
+
171
+ .cp-placeholder {
172
+ display: flex;
173
+ align-items: center;
174
+ justify-content: center;
175
+ height: 100%;
176
+ }
177
+
178
+ .cp-placeholderText {
179
+ font-size: 0.875rem;
180
+ line-height: 1.1875rem;
181
+ font-weight: var(--lynx-console-font-weight-regular);
182
+ color: var(--lynx-console-color-fg-disabled);
183
+ }
184
+
185
+ .cp-logContainer {
186
+ display: flex;
187
+ flex-direction: column;
188
+ flex: 1;
189
+ padding-top: 4px;
190
+ }
191
+
192
+ .cp-logHeader {
193
+ display: flex;
194
+ flex-direction: row;
195
+ align-items: center;
196
+ justify-content: space-between;
197
+ padding-bottom: 3px;
198
+ }
199
+
200
+ .cp-filterWrapper {
201
+ position: relative;
202
+ }
203
+
204
+ .cp-filterButton {
205
+ display: flex;
206
+ flex-direction: row;
207
+ align-items: center;
208
+ padding: 3px 6px;
209
+ background-color: var(--lynx-console-color-bg-neutral-weak);
210
+ border-radius: 4px;
211
+ }
212
+
213
+ .cp-filterButtonText {
214
+ font-size: 0.8125rem;
215
+ line-height: 1.125rem;
216
+ font-weight: var(--lynx-console-font-weight-medium);
217
+ color: var(--lynx-console-color-fg-neutral-muted);
218
+ }
219
+
220
+ .cp-filterDropdown {
221
+ position: absolute;
222
+ top: 100%;
223
+ left: 0;
224
+ margin-top: 4px;
225
+ background-color: var(--lynx-console-color-bg-layer-floating);
226
+ border-width: 1px;
227
+ border-color: var(--lynx-console-color-stroke-neutral-subtle);
228
+ border-style: solid;
229
+ border-radius: 8px;
230
+ padding: 4px 0;
231
+ z-index: 100;
232
+ min-width: 90px;
233
+ }
234
+
235
+ .cp-filterOption {
236
+ display: flex;
237
+ flex-direction: row;
238
+ align-items: center;
239
+ gap: 4px;
240
+ padding: 8px 12px;
241
+ }
242
+
243
+ .cp-filterCheckbox {
244
+ font-size: 0.8125rem;
245
+ line-height: 1.125rem;
246
+ font-weight: var(--lynx-console-font-weight-medium);
247
+ width: 16px;
248
+ }
249
+
250
+ .cp-filterCheckbox--log {
251
+ color: var(--lynx-console-color-palette-green-600);
252
+ }
253
+
254
+ .cp-filterCheckbox--info {
255
+ color: var(--lynx-console-color-palette-blue-600);
256
+ }
257
+
258
+ .cp-filterCheckbox--warn {
259
+ color: var(--lynx-console-color-palette-yellow-600);
260
+ }
261
+
262
+ .cp-filterCheckbox--error {
263
+ color: var(--lynx-console-color-palette-red-600);
264
+ }
265
+
266
+ .cp-filterLabel {
267
+ font-size: 0.8125rem;
268
+ line-height: 1.125rem;
269
+ font-weight: var(--lynx-console-font-weight-medium);
270
+ }
271
+
272
+ .cp-filterLabel--log {
273
+ color: var(--lynx-console-color-palette-green-600);
274
+ }
275
+
276
+ .cp-filterLabel--info {
277
+ color: var(--lynx-console-color-palette-blue-600);
278
+ }
279
+
280
+ .cp-filterLabel--warn {
281
+ color: var(--lynx-console-color-palette-yellow-600);
282
+ }
283
+
284
+ .cp-filterLabel--error {
285
+ color: var(--lynx-console-color-palette-red-600);
286
+ }
287
+
288
+ .cp-searchWrapper {
289
+ display: flex;
290
+ flex-direction: row;
291
+ align-items: center;
292
+ flex: 1;
293
+ margin-left: 8px;
294
+ margin-right: 8px;
295
+ border-bottom-width: 1px;
296
+ border-bottom-color: var(--lynx-console-color-stroke-neutral-subtle);
297
+ border-bottom-style: solid;
298
+ gap: 8px;
299
+ }
300
+
301
+ .cp-searchPrompt {
302
+ font-size: 1.125rem;
303
+ line-height: 1.5rem;
304
+ font-weight: var(--lynx-console-font-weight-medium);
305
+ color: var(--lynx-console-color-fg-placeholder);
306
+ }
307
+
308
+ .cp-searchInput {
309
+ flex: 1;
310
+ font-size: 0.8125rem;
311
+ line-height: 1.125rem;
312
+ font-weight: var(--lynx-console-font-weight-regular);
313
+ color: var(--lynx-console-color-fg-neutral);
314
+ caret-color: var(--lynx-console-color-palette-green-600);
315
+ }
316
+
317
+ .cp-searchClear {
318
+ padding: 2px 4px;
319
+ }
320
+
321
+ .cp-searchClearText {
322
+ font-size: 0.8125rem;
323
+ line-height: 1.125rem;
324
+ font-weight: var(--lynx-console-font-weight-medium);
325
+ color: var(--lynx-console-color-fg-placeholder);
326
+ }
327
+
328
+ .cp-clearButton {
329
+ padding: 3px 6px;
330
+ background-color: var(--lynx-console-color-bg-neutral-weak);
331
+ border-radius: 4px;
332
+ }
333
+
334
+ .cp-clearButtonText {
335
+ font-size: 0.8125rem;
336
+ line-height: 1.125rem;
337
+ font-weight: var(--lynx-console-font-weight-medium);
338
+ color: var(--lynx-console-color-fg-neutral-muted);
339
+ }
340
+
341
+ .cp-logList {
342
+ flex: 1;
343
+ padding-top: 0;
344
+ padding-bottom: 0;
345
+ }
346
+
347
+ .cp-logItem {
348
+ padding: 8px;
349
+ border-bottom-width: 1px;
350
+ border-bottom-color: var(--lynx-console-color-stroke-neutral-weak);
351
+ border-bottom-style: solid;
352
+ }
353
+
354
+ .cp-logItem--warn {
355
+ background-color: var(--lynx-console-color-palette-yellow-100);
356
+ }
357
+
358
+ .cp-logItem--error {
359
+ background-color: var(--lynx-console-color-palette-red-100);
360
+ }
361
+
362
+ .cp-logItemHeader {
363
+ display: flex;
364
+ flex-direction: row;
365
+ align-items: center;
366
+ margin-bottom: 4px;
367
+ }
368
+
369
+ .cp-logLevel {
370
+ font-size: 0.75rem;
371
+ line-height: 1rem;
372
+ font-weight: var(--lynx-console-font-weight-bold);
373
+ margin-right: 8px;
374
+ }
375
+
376
+ .cp-logLevel--log {
377
+ color: var(--lynx-console-color-palette-green-600);
378
+ }
379
+
380
+ .cp-logLevel--info {
381
+ color: var(--lynx-console-color-palette-blue-600);
382
+ }
383
+
384
+ .cp-logLevel--warn {
385
+ color: var(--lynx-console-color-palette-yellow-600);
386
+ }
387
+
388
+ .cp-logLevel--error {
389
+ color: var(--lynx-console-color-palette-red-600);
390
+ }
391
+
392
+ .cp-logTime {
393
+ font-size: 0.75rem;
394
+ line-height: 1rem;
395
+ font-weight: var(--lynx-console-font-weight-regular);
396
+ color: var(--lynx-console-color-fg-neutral-subtle);
397
+ }
398
+
399
+ .cp-toggleIndicator {
400
+ font-size: 0.75rem;
401
+ line-height: 1rem;
402
+ font-weight: var(--lynx-console-font-weight-regular);
403
+ color: var(--lynx-console-color-fg-neutral-subtle);
404
+ margin-left: 4px;
405
+ align-self: flex-start;
406
+ }
407
+
408
+ .cp-logMessage {
409
+ font-size: 0.8125rem;
410
+ line-height: 1.125rem;
411
+ font-weight: var(--lynx-console-font-weight-regular);
412
+ color: var(--lynx-console-color-fg-neutral);
413
+ word-break: break-all;
414
+ }
415
+
416
+ .cp-logArgsContainer {
417
+ display: flex;
418
+ flex-direction: row;
419
+ flex-wrap: wrap;
420
+ gap: 8px;
421
+ }
422
+
423
+ .cp-logArgItem {
424
+ font-size: 0.8125rem;
425
+ line-height: 1.125rem;
426
+ font-weight: var(--lynx-console-font-weight-regular);
427
+ }
428
+
429
+ .cp-argNull {
430
+ color: var(--lynx-console-color-fg-neutral-subtle);
431
+ }
432
+
433
+ .cp-argUndefined {
434
+ color: var(--lynx-console-color-fg-neutral-subtle);
435
+ }
436
+
437
+ .cp-argString {
438
+ font-size: 0.8125rem;
439
+ line-height: 1.125rem;
440
+ font-weight: var(--lynx-console-font-weight-regular);
441
+ }
442
+
443
+ .cp-argString--log {
444
+ color: var(--lynx-console-color-fg-neutral);
445
+ }
446
+
447
+ .cp-argString--info {
448
+ color: var(--lynx-console-color-fg-neutral);
449
+ }
450
+
451
+ .cp-argString--warn {
452
+ color: var(--lynx-console-color-palette-yellow-900);
453
+ }
454
+
455
+ .cp-argString--error {
456
+ color: var(--lynx-console-color-palette-red-900);
457
+ }
458
+
459
+ .cp-argPrimitive {
460
+ font-size: 0.8125rem;
461
+ line-height: 1.125rem;
462
+ font-weight: var(--lynx-console-font-weight-regular);
463
+ }
464
+
465
+ .cp-argPrimitive--log {
466
+ color: var(--lynx-console-color-palette-blue-600);
467
+ }
468
+
469
+ .cp-argPrimitive--info {
470
+ color: var(--lynx-console-color-palette-blue-600);
471
+ }
472
+
473
+ .cp-argPrimitive--warn {
474
+ color: var(--lynx-console-color-palette-yellow-900);
475
+ }
476
+
477
+ .cp-argPrimitive--error {
478
+ color: var(--lynx-console-color-palette-red-900);
479
+ }
480
+
481
+ .cp-argObject {
482
+ display: flex;
483
+ flex-direction: column;
484
+ }
485
+
486
+ .cp-argObjectHeader {
487
+ display: flex;
488
+ flex-direction: row;
489
+ align-items: center;
490
+ gap: 4px;
491
+ }
492
+
493
+ .cp-argObjectPreview {
494
+ font-size: 0.8125rem;
495
+ line-height: 1.125rem;
496
+ font-weight: var(--lynx-console-font-weight-medium);
497
+ color: var(--lynx-console-color-fg-neutral);
498
+ }
499
+
500
+ .cp-argObjectContent {
501
+ margin-top: 4px;
502
+ display: flex;
503
+ flex-direction: column;
504
+ gap: 4px;
505
+ }
506
+
507
+ .cp-argObjectProperty {
508
+ display: flex;
509
+ flex-direction: row;
510
+ align-items: flex-start;
511
+ }
512
+
513
+ .cp-argObjectKey {
514
+ font-size: 0.8125rem;
515
+ line-height: 1.125rem;
516
+ font-weight: var(--lynx-console-font-weight-medium);
517
+ color: var(--lynx-console-color-palette-purple-600);
518
+ }
519
+
520
+ .cp-argObjectJson {
521
+ font-size: 0.8125rem;
522
+ line-height: 1.125rem;
523
+ font-weight: var(--lynx-console-font-weight-regular);
524
+ color: var(--lynx-console-color-fg-neutral);
525
+ }
526
+
527
+ .cp-replInputRow {
528
+ display: flex;
529
+ flex-direction: row;
530
+ align-items: center;
531
+ gap: 8px;
532
+ padding-top: 0;
533
+ padding-bottom: 8px;
534
+ }
535
+
536
+ .cp-replPrompt {
537
+ font-size: 1.625rem;
538
+ line-height: 2.1875rem;
539
+ font-weight: var(--lynx-console-font-weight-medium);
540
+ color: var(--lynx-console-color-fg-placeholder);
541
+ padding-bottom: 8px;
542
+ }
543
+
544
+ .cp-replInput {
545
+ flex: 1;
546
+ font-size: 1rem;
547
+ line-height: 1.375rem;
548
+ font-weight: var(--lynx-console-font-weight-regular);
549
+ color: var(--lynx-console-color-fg-neutral);
550
+ caret-color: var(--lynx-console-color-palette-green-600);
551
+ padding-bottom: 8px;
552
+ }
553
+
554
+ .cp-replRunButton {
555
+ padding: 4px 10px;
556
+ background-color: var(--lynx-console-color-palette-green-100);
557
+ border-radius: 4px;
558
+ margin-bottom: 8px;
559
+ }
560
+
561
+ .cp-replRunButtonText {
562
+ font-size: 0.8125rem;
563
+ line-height: 1.125rem;
564
+ font-weight: var(--lynx-console-font-weight-medium);
565
+ color: var(--lynx-console-color-palette-green-600);
566
+ }
567
+
568
+ .np-container {
569
+ display: flex;
570
+ flex-direction: column;
571
+ flex: 1;
572
+ padding-top: 4px;
573
+ }
574
+
575
+ .np-header {
576
+ display: flex;
577
+ flex-direction: row;
578
+ align-items: center;
579
+ justify-content: space-between;
580
+ margin-bottom: 8px;
581
+ padding-bottom: 4px;
582
+ }
583
+
584
+ .np-count {
585
+ font-size: 0.8125rem;
586
+ line-height: 1.125rem;
587
+ font-weight: var(--lynx-console-font-weight-regular);
588
+ color: var(--lynx-console-color-fg-neutral-subtle);
589
+ }
590
+
591
+ .np-clearButton {
592
+ padding: 3px 6px;
593
+ background-color: var(--lynx-console-color-bg-neutral-weak);
594
+ border-radius: 4px;
595
+ }
596
+
597
+ .np-clearButtonText {
598
+ font-size: 0.8125rem;
599
+ line-height: 1.125rem;
600
+ font-weight: var(--lynx-console-font-weight-medium);
601
+ color: var(--lynx-console-color-fg-neutral-muted);
602
+ }
603
+
604
+ .np-list {
605
+ flex: 1;
606
+ }
607
+
608
+ .np-placeholder {
609
+ display: flex;
610
+ align-items: center;
611
+ justify-content: center;
612
+ height: 100%;
613
+ }
614
+
615
+ .np-placeholderText {
616
+ font-size: 0.875rem;
617
+ line-height: 1.1875rem;
618
+ font-weight: var(--lynx-console-font-weight-regular);
619
+ color: var(--lynx-console-color-fg-disabled);
620
+ }
621
+
622
+ .np-item {
623
+ padding: 8px;
624
+ border-bottom-width: 1px;
625
+ border-bottom-color: var(--lynx-console-color-stroke-neutral-weak);
626
+ border-bottom-style: solid;
627
+ }
628
+
629
+ .np-item--pending {
630
+ background-color: var(--lynx-console-color-palette-gray-100);
631
+ }
632
+
633
+ .np-item--error {
634
+ background-color: var(--lynx-console-color-palette-red-100);
635
+ }
636
+
637
+ .np-itemHeader {
638
+ display: flex;
639
+ flex-direction: row;
640
+ align-items: center;
641
+ margin-bottom: 4px;
642
+ gap: 8px;
643
+ }
644
+
645
+ .np-method {
646
+ font-size: 0.75rem;
647
+ line-height: 1rem;
648
+ font-weight: var(--lynx-console-font-weight-bold);
649
+ padding: 0 4px;
650
+ border-radius: 2px;
651
+ color: var(--lynx-console-color-fg-neutral);
652
+ background-color: var(--lynx-console-color-bg-neutral-weak);
653
+ }
654
+
655
+ .np-method--GET {
656
+ color: var(--lynx-console-color-palette-blue-600);
657
+ background-color: var(--lynx-console-color-palette-blue-100);
658
+ }
659
+
660
+ .np-method--POST {
661
+ color: var(--lynx-console-color-palette-green-600);
662
+ background-color: var(--lynx-console-color-palette-green-100);
663
+ }
664
+
665
+ .np-method--PUT {
666
+ color: var(--lynx-console-color-palette-yellow-600);
667
+ background-color: var(--lynx-console-color-palette-yellow-100);
668
+ }
669
+
670
+ .np-method--PATCH {
671
+ color: var(--lynx-console-color-palette-purple-600);
672
+ background-color: var(--lynx-console-color-palette-purple-100);
673
+ }
674
+
675
+ .np-method--DELETE {
676
+ color: var(--lynx-console-color-palette-red-600);
677
+ background-color: var(--lynx-console-color-palette-red-100);
678
+ }
679
+
680
+ .np-statusCode {
681
+ font-size: 0.75rem;
682
+ line-height: 1rem;
683
+ font-weight: var(--lynx-console-font-weight-bold);
684
+ }
685
+
686
+ .np-statusCode--success {
687
+ color: var(--lynx-console-color-palette-green-600);
688
+ }
689
+
690
+ .np-statusCode--error {
691
+ color: var(--lynx-console-color-palette-red-600);
692
+ }
693
+
694
+ .np-statusCode--pending {
695
+ color: var(--lynx-console-color-fg-neutral-subtle);
696
+ }
697
+
698
+ .np-time {
699
+ font-size: 0.75rem;
700
+ line-height: 1rem;
701
+ font-weight: var(--lynx-console-font-weight-regular);
702
+ color: var(--lynx-console-color-fg-neutral-subtle);
703
+ }
704
+
705
+ .np-url {
706
+ font-size: 0.8125rem;
707
+ line-height: 1.125rem;
708
+ font-weight: var(--lynx-console-font-weight-regular);
709
+ color: var(--lynx-console-color-fg-neutral);
710
+ word-break: break-all;
711
+ margin-bottom: 4px;
712
+ }
713
+
714
+ .np-path {
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
+ white-space: pre-wrap;
721
+ overflow: visible;
722
+ margin-bottom: 4px;
723
+ }
724
+
725
+ .np-details {
726
+ font-size: 0.8125rem;
727
+ line-height: 1.125rem;
728
+ font-weight: var(--lynx-console-font-weight-regular);
729
+ color: var(--lynx-console-color-fg-neutral-subtle);
730
+ }
731
+
732
+ .np-detailsContainer {
733
+ margin-top: 12px;
734
+ padding-top: 12px;
735
+ border-top-width: 1px;
736
+ border-top-color: var(--lynx-console-color-stroke-neutral-subtle);
737
+ border-top-style: solid;
738
+ }
739
+
740
+ .np-tabs {
741
+ display: flex;
742
+ flex-direction: row;
743
+ gap: 4px;
744
+ padding-bottom: 6px;
745
+ }
746
+
747
+ .np-tab {
748
+ padding: 4px 8px;
749
+ border-radius: 4px;
750
+ cursor: pointer;
751
+ }
752
+
753
+ .np-tab--active {
754
+ background-color: var(--lynx-console-color-bg-neutral-weak);
755
+ }
756
+
757
+ .np-tabText {
758
+ font-size: 0.875rem;
759
+ line-height: 1.1875rem;
760
+ font-weight: var(--lynx-console-font-weight-medium);
761
+ color: var(--lynx-console-color-fg-neutral-subtle);
762
+ }
763
+
764
+ .np-tabText--active {
765
+ color: var(--lynx-console-color-fg-neutral);
766
+ }
767
+
768
+ .np-tabContent {
769
+ padding-top: 8px;
770
+ }
771
+
772
+ .np-detailSection {
773
+ margin-bottom: 12px;
774
+ }
775
+
776
+ .np-detailSectionTitle {
777
+ font-size: 0.8125rem;
778
+ line-height: 1.125rem;
779
+ font-weight: var(--lynx-console-font-weight-bold);
780
+ color: var(--lynx-console-color-fg-neutral);
781
+ margin-bottom: 8px;
782
+ }
783
+
784
+ .np-table {
785
+ display: flex;
786
+ flex-direction: column;
787
+ gap: 4px;
788
+ }
789
+
790
+ .np-tableRow {
791
+ display: flex;
792
+ flex-direction: row;
793
+ gap: 8px;
794
+ padding: 4px 8px;
795
+ background-color: var(--lynx-console-color-bg-neutral-weak);
796
+ border-radius: 2px;
797
+ }
798
+
799
+ .np-tableKey {
800
+ font-size: 0.8125rem;
801
+ line-height: 1.125rem;
802
+ font-weight: var(--lynx-console-font-weight-bold);
803
+ color: var(--lynx-console-color-fg-neutral-subtle);
804
+ min-width: 70px;
805
+ flex-shrink: 0;
806
+ }
807
+
808
+ .np-tableValue {
809
+ font-size: 0.8125rem;
810
+ line-height: 1.125rem;
811
+ font-weight: var(--lynx-console-font-weight-regular);
812
+ color: var(--lynx-console-color-fg-neutral);
813
+ word-break: break-all;
814
+ flex: 1;
815
+ }
816
+
817
+ .np-bodyText {
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
+ padding: 8px;
823
+ background-color: var(--lynx-console-color-bg-neutral-weak);
824
+ border-radius: 4px;
825
+ word-break: break-all;
826
+ white-space: pre-wrap;
827
+ }
828
+
829
+ .np-errorText {
830
+ font-size: 0.8125rem;
831
+ line-height: 1.125rem;
832
+ font-weight: var(--lynx-console-font-weight-regular);
833
+ color: var(--lynx-console-color-palette-red-600);
834
+ padding: 8px;
835
+ background-color: var(--lynx-console-color-palette-red-100);
836
+ border-radius: 4px;
837
+ word-break: break-all;
838
+ }
839
+
840
+ .np-emptyText {
841
+ font-size: 0.8125rem;
842
+ line-height: 1.125rem;
843
+ font-weight: var(--lynx-console-font-weight-regular);
844
+ color: var(--lynx-console-color-fg-disabled);
845
+ text-align: center;
846
+ padding: 16px 0;
847
+ }
848
+
849
+ .pp-container {
850
+ display: flex;
851
+ flex-direction: column;
852
+ flex: 1;
853
+ padding-top: 4px;
854
+ }
855
+
856
+ .pp-header {
857
+ display: flex;
858
+ flex-direction: row;
859
+ align-items: center;
860
+ justify-content: space-between;
861
+ margin-bottom: 8px;
862
+ padding-bottom: 4px;
863
+ border-bottom-width: 1px;
864
+ border-bottom-color: var(--lynx-console-color-stroke-neutral-subtle);
865
+ border-bottom-style: solid;
866
+ }
867
+
868
+ .pp-count {
869
+ font-size: 0.8125rem;
870
+ line-height: 1.125rem;
871
+ font-weight: var(--lynx-console-font-weight-regular);
872
+ color: var(--lynx-console-color-fg-neutral-subtle);
873
+ }
874
+
875
+ .pp-clearButton {
876
+ padding: 3px 6px;
877
+ background-color: var(--lynx-console-color-bg-neutral-weak);
878
+ border-radius: 4px;
879
+ }
880
+
881
+ .pp-clearButtonText {
882
+ font-size: 0.8125rem;
883
+ line-height: 1.125rem;
884
+ font-weight: var(--lynx-console-font-weight-medium);
885
+ color: var(--lynx-console-color-fg-neutral-muted);
886
+ }
887
+
888
+ .pp-list {
889
+ flex: 1;
890
+ }
891
+
892
+ .pp-placeholder {
893
+ display: flex;
894
+ align-items: center;
895
+ justify-content: center;
896
+ height: 100%;
897
+ }
898
+
899
+ .pp-placeholderText {
900
+ font-size: 0.875rem;
901
+ line-height: 1.1875rem;
902
+ font-weight: var(--lynx-console-font-weight-regular);
903
+ color: var(--lynx-console-color-fg-disabled);
904
+ }
905
+
906
+ .pp-item {
907
+ padding: 8px;
908
+ border-bottom-width: 1px;
909
+ border-bottom-color: var(--lynx-console-color-stroke-neutral-weak);
910
+ border-bottom-style: solid;
911
+ }
912
+
913
+ .pp-itemHeader {
914
+ display: flex;
915
+ flex-direction: row;
916
+ align-items: center;
917
+ margin-bottom: 4px;
918
+ gap: 8px;
919
+ }
920
+
921
+ .pp-entryType {
922
+ font-size: 0.75rem;
923
+ line-height: 1rem;
924
+ font-weight: var(--lynx-console-font-weight-bold);
925
+ padding: 0 6px;
926
+ border-radius: 2px;
927
+ color: var(--lynx-console-color-fg-neutral);
928
+ background-color: var(--lynx-console-color-bg-neutral-weak);
929
+ }
930
+
931
+ .pp-entryType--init {
932
+ color: var(--lynx-console-color-palette-blue-600);
933
+ background-color: var(--lynx-console-color-palette-blue-100);
934
+ }
935
+
936
+ .pp-entryType--metric {
937
+ color: var(--lynx-console-color-palette-green-600);
938
+ background-color: var(--lynx-console-color-palette-green-100);
939
+ }
940
+
941
+ .pp-entryType--pipeline {
942
+ color: var(--lynx-console-color-palette-purple-600);
943
+ background-color: var(--lynx-console-color-palette-purple-100);
944
+ }
945
+
946
+ .pp-entryType--resource {
947
+ color: var(--lynx-console-color-palette-yellow-600);
948
+ background-color: var(--lynx-console-color-palette-yellow-100);
949
+ }
950
+
951
+ .pp-entryName {
952
+ font-size: 0.75rem;
953
+ line-height: 1rem;
954
+ font-weight: var(--lynx-console-font-weight-medium);
955
+ color: var(--lynx-console-color-fg-neutral);
956
+ }
957
+
958
+ .pp-timestamp {
959
+ font-size: 0.75rem;
960
+ line-height: 1rem;
961
+ font-weight: var(--lynx-console-font-weight-regular);
962
+ color: var(--lynx-console-color-fg-neutral-subtle);
963
+ }
964
+
965
+ .pp-fcpMetricHeader {
966
+ display: flex;
967
+ flex-direction: row;
968
+ align-items: center;
969
+ gap: 8px;
970
+ }
971
+
972
+ .pp-fcpHighlight {
973
+ font-size: 0.8125rem;
974
+ line-height: 1.125rem;
975
+ font-weight: var(--lynx-console-font-weight-bold);
976
+ color: var(--lynx-console-color-palette-blue-600);
977
+ background-color: var(--lynx-console-color-palette-blue-100);
978
+ padding: 4px 8px;
979
+ border-radius: 4px;
980
+ margin-top: 4px;
981
+ }
982
+
983
+ .pp-metrics {
984
+ margin-top: 8px;
985
+ display: flex;
986
+ flex-direction: column;
987
+ gap: 4px;
988
+ }
989
+
990
+ .pp-metric {
991
+ display: flex;
992
+ flex-direction: row;
993
+ align-items: center;
994
+ gap: 8px;
995
+ padding: 4px 8px;
996
+ background-color: var(--lynx-console-color-bg-neutral-weak);
997
+ border-radius: 2px;
998
+ }
999
+
1000
+ .pp-metricName {
1001
+ font-size: 0.8125rem;
1002
+ line-height: 1.125rem;
1003
+ font-weight: var(--lynx-console-font-weight-medium);
1004
+ color: var(--lynx-console-color-fg-neutral-subtle);
1005
+ min-width: 100px;
1006
+ flex-shrink: 0;
1007
+ }
1008
+
1009
+ .pp-metricValue {
1010
+ font-size: 0.8125rem;
1011
+ line-height: 1.125rem;
1012
+ font-weight: var(--lynx-console-font-weight-bold);
1013
+ color: var(--lynx-console-color-palette-green-600);
1014
+ flex: 1;
1015
+ }
1016
+
1017
+ .pp-detailsContainer {
1018
+ margin-top: 12px;
1019
+ display: flex;
1020
+ flex-direction: column;
1021
+ gap: 12px;
1022
+ }
1023
+
1024
+ .pp-fcpSection {
1025
+ display: flex;
1026
+ flex-direction: column;
1027
+ gap: 8px;
1028
+ }
1029
+
1030
+ .pp-fcpSectionDescription {
1031
+ font-size: 0.8125rem;
1032
+ line-height: 1.125rem;
1033
+ font-weight: var(--lynx-console-font-weight-regular);
1034
+ color: var(--lynx-console-color-fg-neutral-subtle);
1035
+ margin-bottom: 4px;
1036
+ }
1037
+
1038
+ .pp-fcpMetric {
1039
+ background-color: var(--lynx-console-color-bg-layer-default);
1040
+ border-radius: 4px;
1041
+ display: flex;
1042
+ flex-direction: column;
1043
+ gap: 4px;
1044
+ }
1045
+
1046
+ .pp-fcpMetricName {
1047
+ font-size: 0.75rem;
1048
+ line-height: 1rem;
1049
+ font-weight: var(--lynx-console-font-weight-bold);
1050
+ color: var(--lynx-console-color-fg-neutral);
1051
+ }
1052
+
1053
+ .pp-fcpMetricValue {
1054
+ font-size: 0.6875rem;
1055
+ line-height: 0.9375rem;
1056
+ font-weight: var(--lynx-console-font-weight-bold);
1057
+ color: var(--lynx-console-color-palette-blue-600);
1058
+ }
1059
+
1060
+ .pp-fcpMetricDescription {
1061
+ font-size: 0.8125rem;
1062
+ line-height: 1.125rem;
1063
+ font-weight: var(--lynx-console-font-weight-regular);
1064
+ color: var(--lynx-console-color-fg-neutral-subtle);
1065
+ }
1066
+
1067
+ .pp-fcpMetricFormula {
1068
+ font-size: 0.875rem;
1069
+ line-height: 1.1875rem;
1070
+ font-weight: var(--lynx-console-font-weight-regular);
1071
+ color: var(--lynx-console-color-fg-disabled);
1072
+ font-family: monospace;
1073
+ }
1074
+
1075
+ .pp-rawEntrySection {
1076
+ padding: 12px;
1077
+ background-color: var(--lynx-console-color-bg-neutral-weak);
1078
+ border-radius: 4px;
1079
+ }
1080
+
1081
+ .pp-detailTitle {
1082
+ font-size: 0.8125rem;
1083
+ line-height: 1.125rem;
1084
+ font-weight: var(--lynx-console-font-weight-bold);
1085
+ color: var(--lynx-console-color-fg-neutral);
1086
+ margin-bottom: 8px;
1087
+ }
1088
+
1089
+ .pp-rawEntry {
1090
+ font-size: 0.8125rem;
1091
+ line-height: 1.125rem;
1092
+ font-weight: var(--lynx-console-font-weight-regular);
1093
+ color: var(--lynx-console-color-fg-neutral-subtle);
1094
+ font-family: monospace;
1095
+ white-space: pre-wrap;
1096
+ word-break: break-all;
1097
+ }
1098
+
1099
+ .tabs-root {
1100
+ flex: 1;
1101
+ display: flex;
1102
+ flex-direction: column;
1103
+ }
1104
+
1105
+ .tabs-header {
1106
+ display: flex;
1107
+ box-shadow: inset 0 -1px 0 0 var(--lynx-console-color-stroke-neutral-subtle);
1108
+ }
1109
+
1110
+ .tabs-triggerButton {
1111
+ flex: 1;
1112
+ color: var(--lynx-console-color-fg-neutral-subtle);
1113
+ display: flex;
1114
+ justify-content: center;
1115
+ align-items: center;
1116
+ padding: 12px 0 10px 0;
1117
+ position: relative;
1118
+ }
1119
+
1120
+ .tabs-triggerButtonText {
1121
+ font-size: 1rem;
1122
+ line-height: 1.375rem;
1123
+ font-weight: var(--lynx-console-font-weight-bold);
1124
+ color: var(--lynx-console-color-fg-neutral-subtle);
1125
+ }
1126
+
1127
+ .tabs-triggerButtonText--active {
1128
+ color: var(--lynx-console-color-fg-neutral);
1129
+ }
1130
+
1131
+ .tabs-triggerButtonText--t4 {
1132
+ font-size: 0.875rem;
1133
+ line-height: 1.1875rem;
1134
+ }
1135
+
1136
+ .tabs-triggerButtonText--t3 {
1137
+ font-size: 0.8125rem;
1138
+ line-height: 1.125rem;
1139
+ }
1140
+
1141
+ .tabs-triggerButtonText--t2 {
1142
+ font-size: 0.75rem;
1143
+ line-height: 1rem;
1144
+ }
1145
+
1146
+ .tabs-triggerButtonText--t1 {
1147
+ font-size: 0.6875rem;
1148
+ line-height: 0.9375rem;
1149
+ }
1150
+
1151
+ .tabs-triggerIndicator {
1152
+ position: absolute;
1153
+ bottom: 0;
1154
+ left: 0;
1155
+ padding: 0 16px;
1156
+ width: 100%;
1157
+ transition: 200ms;
1158
+ transition-timing-function: cubic-bezier(.35, 0, .35, 1);
1159
+ }
1160
+
1161
+ .tabs-triggerIndicatorLine {
1162
+ background-color: var(--lynx-console-color-fg-neutral);
1163
+ width: 100%;
1164
+ height: 2px;
1165
+ }
1166
+
1167
+ .tabs-contents {
1168
+ flex: 1;
1169
+ width: 100%;
1170
+ }
1171
+
1172
+ .tabs-content {
1173
+ width: 100%;
1174
+ display: flex;
1175
+ flex-direction: column;
1176
+ }
1177
+
1178
+ .fb-wrapper {
1179
+ position: fixed;
1180
+ z-index: 9999;
1181
+ display: flex;
1182
+ flex-direction: row;
1183
+ align-items: center;
1184
+ gap: 8px;
1185
+ overflow: visible;
1186
+ transition: transform var(--lynx-console-duration-d4) cubic-bezier(0.4, 0, 0.2, 1);
1187
+ }
1188
+
1189
+ .fb-button {
1190
+ position: relative;
1191
+ overflow: hidden;
1192
+ padding-left: 8px;
1193
+ padding-right: 8px;
1194
+ padding-top: 4px;
1195
+ padding-bottom: 4px;
1196
+ border-radius: 12px;
1197
+ background-color: var(--lynx-console-color-palette-green-600);
1198
+ display: flex;
1199
+ flex-direction: column;
1200
+ align-items: center;
1201
+ justify-content: center;
1202
+ gap: 2px;
1203
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1204
+ }
1205
+
1206
+ .fb-shineOverlay {
1207
+ position: absolute;
1208
+ top: -50%;
1209
+ left: -25%;
1210
+ width: 150%;
1211
+ height: 200%;
1212
+ background-color: rgba(255, 255, 255, 0.2);
1213
+ border-radius: 9999px;
1214
+ }
1215
+
1216
+ .fb-title {
1217
+ font-size: 0.875rem;
1218
+ line-height: 1.1875rem;
1219
+ font-weight: var(--lynx-console-font-weight-regular);
1220
+ color: var(--lynx-console-color-palette-static-white);
1221
+ text-align: center;
1222
+ }
1223
+
1224
+ .fb-subtitle {
1225
+ font-size: 0.8125rem;
1226
+ line-height: 1.125rem;
1227
+ font-weight: var(--lynx-console-font-weight-regular);
1228
+ color: var(--lynx-console-color-palette-static-white);
1229
+ text-align: center;
1230
+ }
1231
+
1232
+ .fb-reloadButton {
1233
+ overflow: visible;
1234
+ width: 32px;
1235
+ height: 32px;
1236
+ border-radius: 16px;
1237
+ background-color: var(--lynx-console-color-palette-green-600);
1238
+ display: flex;
1239
+ align-items: center;
1240
+ justify-content: center;
1241
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1242
+ }
1243
+
1244
+ .fb-reloadIcon {
1245
+ font-size: 20px;
1246
+ line-height: 32px;
1247
+ margin-bottom: 5px;
1248
+ color: var(--lynx-console-color-palette-static-white);
1249
+ text-align: center;
463
1250
  }
464
1251
 
465
1252