@moderneinc/neo-design 1.3.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/border-radius.css +10 -0
- package/dist/border-radius.js +10 -0
- package/dist/index.d.ts +186 -21
- package/dist/semantic-colors.css +70 -9
- package/dist/semantic-colors.d.ts +109 -16
- package/dist/semantic-colors.js +79 -86
- package/dist/shadow.css +0 -5
- package/dist/shadow.d.ts +75 -0
- package/dist/shadow.js +25 -0
- package/dist/spacing.css +34 -0
- package/dist/spacing.d.ts +278 -0
- package/dist/spacing.js +121 -0
- package/dist/typography.css +27 -4
- package/dist/typography.d.ts +73 -3
- package/dist/typography.js +27 -4
- package/package.json +1 -1
package/dist/border-radius.css
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
:root {
|
|
2
|
+
/* Scopes: Corner Radius */
|
|
2
3
|
--neo-border-radius-card: 12;
|
|
4
|
+
/* Scopes: Corner Radius */
|
|
3
5
|
--neo-border-radius-button: 999;
|
|
6
|
+
/* Scopes: Corner Radius */
|
|
4
7
|
--neo-border-radius-input: 8;
|
|
8
|
+
/* Scopes: Corner Radius */
|
|
5
9
|
--neo-border-radius-xXS: 2;
|
|
10
|
+
/* Scopes: Corner Radius */
|
|
6
11
|
--neo-border-radius-xS: 4;
|
|
12
|
+
/* Scopes: Corner Radius */
|
|
7
13
|
--neo-border-radius-s: 8;
|
|
14
|
+
/* Scopes: Corner Radius */
|
|
8
15
|
--neo-border-radius-m: 12;
|
|
16
|
+
/* Scopes: Corner Radius */
|
|
9
17
|
--neo-border-radius-l: 20;
|
|
18
|
+
/* Scopes: Corner Radius */
|
|
10
19
|
--neo-border-radius-xL: 30;
|
|
20
|
+
/* Scopes: Corner Radius */
|
|
11
21
|
--neo-border-radius-full: 999;
|
|
12
22
|
}
|
package/dist/border-radius.js
CHANGED
|
@@ -5,51 +5,61 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
|
+
* Scopes: Corner Radius
|
|
8
9
|
* @type {number}
|
|
9
10
|
*/
|
|
10
11
|
export const card = 12;
|
|
11
12
|
|
|
12
13
|
/**
|
|
14
|
+
* Scopes: Corner Radius
|
|
13
15
|
* @type {number}
|
|
14
16
|
*/
|
|
15
17
|
export const button = 999;
|
|
16
18
|
|
|
17
19
|
/**
|
|
20
|
+
* Scopes: Corner Radius
|
|
18
21
|
* @type {number}
|
|
19
22
|
*/
|
|
20
23
|
export const input = 8;
|
|
21
24
|
|
|
22
25
|
/**
|
|
26
|
+
* Scopes: Corner Radius
|
|
23
27
|
* @type {number}
|
|
24
28
|
*/
|
|
25
29
|
export const xXS = 2;
|
|
26
30
|
|
|
27
31
|
/**
|
|
32
|
+
* Scopes: Corner Radius
|
|
28
33
|
* @type {number}
|
|
29
34
|
*/
|
|
30
35
|
export const xS = 4;
|
|
31
36
|
|
|
32
37
|
/**
|
|
38
|
+
* Scopes: Corner Radius
|
|
33
39
|
* @type {number}
|
|
34
40
|
*/
|
|
35
41
|
export const s = 8;
|
|
36
42
|
|
|
37
43
|
/**
|
|
44
|
+
* Scopes: Corner Radius
|
|
38
45
|
* @type {number}
|
|
39
46
|
*/
|
|
40
47
|
export const m = 12;
|
|
41
48
|
|
|
42
49
|
/**
|
|
50
|
+
* Scopes: Corner Radius
|
|
43
51
|
* @type {number}
|
|
44
52
|
*/
|
|
45
53
|
export const l = 20;
|
|
46
54
|
|
|
47
55
|
/**
|
|
56
|
+
* Scopes: Corner Radius
|
|
48
57
|
* @type {number}
|
|
49
58
|
*/
|
|
50
59
|
export const xL = 30;
|
|
51
60
|
|
|
52
61
|
/**
|
|
62
|
+
* Scopes: Corner Radius
|
|
53
63
|
* @type {number}
|
|
54
64
|
*/
|
|
55
65
|
export const full = 999;
|
package/dist/index.d.ts
CHANGED
|
@@ -207,18 +207,35 @@ type Activity = {
|
|
|
207
207
|
declare const activity: Activity;
|
|
208
208
|
|
|
209
209
|
type Border = {
|
|
210
|
+
/**
|
|
211
|
+
* @scopes Stroke Color
|
|
212
|
+
*/
|
|
210
213
|
primary: '#d1d5db';
|
|
214
|
+
/**
|
|
215
|
+
* @scopes Stroke Color
|
|
216
|
+
*/
|
|
211
217
|
input: '#9ca3af';
|
|
218
|
+
/**
|
|
219
|
+
* @scopes Stroke Color
|
|
220
|
+
*/
|
|
212
221
|
tabActive: '#2f42ff';
|
|
222
|
+
/**
|
|
223
|
+
* @scopes Stroke Color
|
|
224
|
+
*/
|
|
213
225
|
codeDashed: '#9ca3af';
|
|
214
226
|
card: '#d1d5db';
|
|
215
227
|
cardHeader: '#d1d5db';
|
|
228
|
+
navTopContainers: '#f3f4f6';
|
|
216
229
|
};
|
|
217
230
|
|
|
218
231
|
declare const border: Border;
|
|
219
232
|
|
|
220
233
|
type Buttons = {
|
|
234
|
+
/**
|
|
235
|
+
* @scopes All Fills, Effect Color
|
|
236
|
+
*/
|
|
221
237
|
destructive: '#cb3446';
|
|
238
|
+
navigationActive: '#ffffff';
|
|
222
239
|
primary: {
|
|
223
240
|
pressed: '#131e7a';
|
|
224
241
|
default: '#2f42ff';
|
|
@@ -226,7 +243,6 @@ type Buttons = {
|
|
|
226
243
|
disabled: '#b6bfff';
|
|
227
244
|
focus: '#2f42ff';
|
|
228
245
|
};
|
|
229
|
-
navigationActive: '#ffffff';
|
|
230
246
|
secondary: {
|
|
231
247
|
defaultBorder: '#b6bfff';
|
|
232
248
|
hoverBackground: '#f2f3ff';
|
|
@@ -251,18 +267,58 @@ type Buttons = {
|
|
|
251
267
|
|
|
252
268
|
declare const buttons: Buttons;
|
|
253
269
|
|
|
270
|
+
type Data = {
|
|
271
|
+
green: '#4ca75a';
|
|
272
|
+
yellow: '#fdda04';
|
|
273
|
+
orange1: '#ffc008';
|
|
274
|
+
orange2: '#ff9800';
|
|
275
|
+
orange3: '#f9a91b';
|
|
276
|
+
red1: '#ff5c24';
|
|
277
|
+
red2: '#ed4134';
|
|
278
|
+
red3: '#cb3446';
|
|
279
|
+
};
|
|
280
|
+
|
|
281
|
+
declare const data: Data;
|
|
282
|
+
|
|
254
283
|
type Icons = {
|
|
284
|
+
/**
|
|
285
|
+
* @scopes All Fills, Stroke Color, Effect Color
|
|
286
|
+
*/
|
|
255
287
|
default: '#1f2937';
|
|
288
|
+
/**
|
|
289
|
+
* @scopes All Fills, Stroke Color, Effect Color
|
|
290
|
+
*/
|
|
256
291
|
active: '#2f42ff';
|
|
292
|
+
/**
|
|
293
|
+
* @scopes All Fills, Stroke Color, Effect Color
|
|
294
|
+
*/
|
|
257
295
|
hover: '#131e7a';
|
|
296
|
+
/**
|
|
297
|
+
* @scopes All Fills, Stroke Color, Effect Color
|
|
298
|
+
*/
|
|
258
299
|
hoverBackground: '#e5e7eb';
|
|
300
|
+
/**
|
|
301
|
+
* @scopes All Fills, Stroke Color, Effect Color
|
|
302
|
+
*/
|
|
259
303
|
disabled: '#9ca3af';
|
|
304
|
+
/**
|
|
305
|
+
* @scopes All Fills, Stroke Color, Effect Color
|
|
306
|
+
*/
|
|
260
307
|
placeholder: '#4b5563';
|
|
308
|
+
/**
|
|
309
|
+
* @scopes All Fills, Stroke Color, Effect Color
|
|
310
|
+
*/
|
|
261
311
|
checkbox: '#4b5563';
|
|
262
312
|
};
|
|
263
313
|
|
|
264
314
|
declare const icons: Icons;
|
|
265
315
|
|
|
316
|
+
type Input = {
|
|
317
|
+
inputField: '#ffffff';
|
|
318
|
+
};
|
|
319
|
+
|
|
320
|
+
declare const input: Input;
|
|
321
|
+
|
|
266
322
|
type Status = {
|
|
267
323
|
success: {
|
|
268
324
|
dark: '#4ca75a';
|
|
@@ -281,18 +337,57 @@ type Status = {
|
|
|
281
337
|
declare const status: Status;
|
|
282
338
|
|
|
283
339
|
type Surfaces = {
|
|
340
|
+
/**
|
|
341
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
342
|
+
*/
|
|
284
343
|
black: '#000000';
|
|
344
|
+
/**
|
|
345
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
346
|
+
*/
|
|
285
347
|
white: '#ffffff';
|
|
348
|
+
/**
|
|
349
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
350
|
+
*/
|
|
286
351
|
page: '#f9fafb';
|
|
352
|
+
/**
|
|
353
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
354
|
+
*/
|
|
287
355
|
card: '#ffffff';
|
|
356
|
+
/**
|
|
357
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
358
|
+
*/
|
|
288
359
|
cardHeader: '#f3f4f6';
|
|
360
|
+
/**
|
|
361
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
362
|
+
*/
|
|
289
363
|
tabActive: '#f3f4f6';
|
|
364
|
+
/**
|
|
365
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
366
|
+
*/
|
|
290
367
|
listHover: '#f9fafb';
|
|
368
|
+
/**
|
|
369
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
370
|
+
*/
|
|
291
371
|
inputHover: '#f3f4f6';
|
|
372
|
+
/**
|
|
373
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
374
|
+
*/
|
|
292
375
|
tableDisabledRow: '#f3f4f6';
|
|
376
|
+
/**
|
|
377
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
378
|
+
*/
|
|
293
379
|
tableBackground: '#ffffff';
|
|
380
|
+
/**
|
|
381
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
382
|
+
*/
|
|
294
383
|
shadowNeutral: '#1f2937';
|
|
384
|
+
/**
|
|
385
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
386
|
+
*/
|
|
295
387
|
scrim: '#1f2937';
|
|
388
|
+
/**
|
|
389
|
+
* @scopes Frame Fill, Shape Fill, Effect Color
|
|
390
|
+
*/
|
|
296
391
|
shadowPrimary: '#2f42ff';
|
|
297
392
|
tooltip: '#4b5563';
|
|
298
393
|
};
|
|
@@ -320,10 +415,20 @@ type Typography = {
|
|
|
320
415
|
disabled: '#b6bfff';
|
|
321
416
|
default: '#f9fafb';
|
|
322
417
|
};
|
|
418
|
+
/**
|
|
419
|
+
* @scopes Text Fill
|
|
420
|
+
*/
|
|
323
421
|
error: '#cb3446';
|
|
422
|
+
/**
|
|
423
|
+
* @scopes Text Fill
|
|
424
|
+
*/
|
|
324
425
|
success: '#4ca75a';
|
|
426
|
+
/**
|
|
427
|
+
* @scopes Text Fill
|
|
428
|
+
*/
|
|
325
429
|
warning: '#1f2937';
|
|
326
430
|
tooltip: '#ffffff';
|
|
431
|
+
legal: '#9ca3af';
|
|
327
432
|
navigation: {
|
|
328
433
|
default: '#374151';
|
|
329
434
|
};
|
|
@@ -331,28 +436,16 @@ type Typography = {
|
|
|
331
436
|
|
|
332
437
|
declare const typography: Typography;
|
|
333
438
|
|
|
334
|
-
type Data = {
|
|
335
|
-
green: '#4ca75a';
|
|
336
|
-
yellow: '#fdda04';
|
|
337
|
-
orange1: '#ffc008';
|
|
338
|
-
orange2: '#ff9800';
|
|
339
|
-
orange3: '#f9a91b';
|
|
340
|
-
red1: '#ff5c24';
|
|
341
|
-
red2: '#ed4134';
|
|
342
|
-
red3: '#cb3446';
|
|
343
|
-
};
|
|
344
|
-
|
|
345
|
-
declare const data: Data;
|
|
346
|
-
|
|
347
439
|
declare const _default$1: {
|
|
348
440
|
activity: typeof activity,
|
|
349
441
|
border: typeof border,
|
|
350
442
|
buttons: typeof buttons,
|
|
443
|
+
data: typeof data,
|
|
351
444
|
icons: typeof icons,
|
|
445
|
+
input: typeof input,
|
|
352
446
|
status: typeof status,
|
|
353
447
|
surfaces: typeof surfaces,
|
|
354
|
-
typography: typeof typography
|
|
355
|
-
data: typeof data
|
|
448
|
+
typography: typeof typography
|
|
356
449
|
};
|
|
357
450
|
|
|
358
451
|
type semanticColors_d_Activity = Activity;
|
|
@@ -360,6 +453,7 @@ type semanticColors_d_Border = Border;
|
|
|
360
453
|
type semanticColors_d_Buttons = Buttons;
|
|
361
454
|
type semanticColors_d_Data = Data;
|
|
362
455
|
type semanticColors_d_Icons = Icons;
|
|
456
|
+
type semanticColors_d_Input = Input;
|
|
363
457
|
type semanticColors_d_Status = Status;
|
|
364
458
|
type semanticColors_d_Surfaces = Surfaces;
|
|
365
459
|
type semanticColors_d_Typography = Typography;
|
|
@@ -368,12 +462,13 @@ declare const semanticColors_d_border: typeof border;
|
|
|
368
462
|
declare const semanticColors_d_buttons: typeof buttons;
|
|
369
463
|
declare const semanticColors_d_data: typeof data;
|
|
370
464
|
declare const semanticColors_d_icons: typeof icons;
|
|
465
|
+
declare const semanticColors_d_input: typeof input;
|
|
371
466
|
declare const semanticColors_d_status: typeof status;
|
|
372
467
|
declare const semanticColors_d_surfaces: typeof surfaces;
|
|
373
468
|
declare const semanticColors_d_typography: typeof typography;
|
|
374
469
|
declare namespace semanticColors_d {
|
|
375
|
-
export { semanticColors_d_activity as activity, semanticColors_d_border as border, semanticColors_d_buttons as buttons, semanticColors_d_data as data, _default$1 as default, semanticColors_d_icons as icons, semanticColors_d_status as status, semanticColors_d_surfaces as surfaces, semanticColors_d_typography as typography };
|
|
376
|
-
export type { semanticColors_d_Activity as Activity, semanticColors_d_Border as Border, semanticColors_d_Buttons as Buttons, semanticColors_d_Data as Data, semanticColors_d_Icons as Icons, semanticColors_d_Status as Status, semanticColors_d_Surfaces as Surfaces, semanticColors_d_Typography as Typography };
|
|
470
|
+
export { semanticColors_d_activity as activity, semanticColors_d_border as border, semanticColors_d_buttons as buttons, semanticColors_d_data as data, _default$1 as default, semanticColors_d_icons as icons, semanticColors_d_input as input, semanticColors_d_status as status, semanticColors_d_surfaces as surfaces, semanticColors_d_typography as typography };
|
|
471
|
+
export type { semanticColors_d_Activity as Activity, semanticColors_d_Border as Border, semanticColors_d_Buttons as Buttons, semanticColors_d_Data as Data, semanticColors_d_Icons as Icons, semanticColors_d_Input as Input, semanticColors_d_Status as Status, semanticColors_d_Surfaces as Surfaces, semanticColors_d_Typography as Typography };
|
|
377
472
|
}
|
|
378
473
|
|
|
379
474
|
/**
|
|
@@ -391,29 +486,86 @@ type FontFamily = {
|
|
|
391
486
|
declare const fontFamily: FontFamily;
|
|
392
487
|
|
|
393
488
|
type FontSize = {
|
|
489
|
+
/**
|
|
490
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
491
|
+
*/
|
|
394
492
|
xxs: 10;
|
|
493
|
+
/**
|
|
494
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
495
|
+
*/
|
|
395
496
|
xs: 12;
|
|
497
|
+
/**
|
|
498
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
499
|
+
*/
|
|
396
500
|
sm: 14;
|
|
501
|
+
/**
|
|
502
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
503
|
+
*/
|
|
397
504
|
default: 16;
|
|
505
|
+
/**
|
|
506
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
507
|
+
*/
|
|
398
508
|
h6: 16;
|
|
509
|
+
/**
|
|
510
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
511
|
+
*/
|
|
399
512
|
caption: 13;
|
|
513
|
+
/**
|
|
514
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
515
|
+
*/
|
|
400
516
|
code: 14;
|
|
517
|
+
/**
|
|
518
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
519
|
+
*/
|
|
401
520
|
h5: 18;
|
|
521
|
+
/**
|
|
522
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
523
|
+
*/
|
|
402
524
|
h4: 20;
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
525
|
+
/**
|
|
526
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
527
|
+
*/
|
|
528
|
+
h3: 21;
|
|
529
|
+
/**
|
|
530
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
531
|
+
*/
|
|
532
|
+
h2: 24;
|
|
533
|
+
/**
|
|
534
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
535
|
+
*/
|
|
536
|
+
h1: 28;
|
|
406
537
|
};
|
|
407
538
|
|
|
408
539
|
declare const fontSize: FontSize;
|
|
409
540
|
|
|
410
541
|
type FontWeight = {
|
|
542
|
+
/**
|
|
543
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
544
|
+
*/
|
|
411
545
|
thin: 100;
|
|
546
|
+
/**
|
|
547
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
548
|
+
*/
|
|
412
549
|
light: 300;
|
|
550
|
+
/**
|
|
551
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
552
|
+
*/
|
|
413
553
|
regular: 400;
|
|
554
|
+
/**
|
|
555
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
556
|
+
*/
|
|
414
557
|
medium: 500;
|
|
558
|
+
/**
|
|
559
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
560
|
+
*/
|
|
415
561
|
semiBold: 600;
|
|
562
|
+
/**
|
|
563
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
564
|
+
*/
|
|
416
565
|
bold: 700;
|
|
566
|
+
/**
|
|
567
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
568
|
+
*/
|
|
417
569
|
extraBold: 800;
|
|
418
570
|
};
|
|
419
571
|
|
|
@@ -422,11 +574,24 @@ declare const fontWeight: FontWeight;
|
|
|
422
574
|
type LineHeight = {
|
|
423
575
|
/**
|
|
424
576
|
* value in pixels
|
|
577
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
425
578
|
*/
|
|
426
579
|
xs: 16;
|
|
580
|
+
/**
|
|
581
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
582
|
+
*/
|
|
427
583
|
s: 20;
|
|
584
|
+
/**
|
|
585
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
586
|
+
*/
|
|
428
587
|
m: 24;
|
|
588
|
+
/**
|
|
589
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
590
|
+
*/
|
|
429
591
|
l: 28;
|
|
592
|
+
/**
|
|
593
|
+
* @scopes Text Content, Font Style, Font Size, Line Height, Letter Spacing, Paragraph Spacing
|
|
594
|
+
*/
|
|
430
595
|
xl: 32;
|
|
431
596
|
};
|
|
432
597
|
|
package/dist/semantic-colors.css
CHANGED
|
@@ -2,81 +2,142 @@
|
|
|
2
2
|
--neo-activity-recipe-run: #992fb9;
|
|
3
3
|
--neo-activity-commit-job: #2f42ff;
|
|
4
4
|
--neo-activity-visualization: #27aa88;
|
|
5
|
+
/* Scopes: Stroke Color */
|
|
5
6
|
--neo-border-primary: #d1d5db;
|
|
7
|
+
/* Scopes: Stroke Color */
|
|
6
8
|
--neo-border-input: #9ca3af;
|
|
9
|
+
/* Scopes: Stroke Color */
|
|
7
10
|
--neo-border-tab-active: #2f42ff;
|
|
11
|
+
/* Scopes: Stroke Color */
|
|
8
12
|
--neo-border-code-dashed: #9ca3af;
|
|
9
13
|
--neo-border-card: #d1d5db;
|
|
10
14
|
--neo-border-card-header: #d1d5db;
|
|
15
|
+
--neo-border-nav-top-containers: #f3f4f6;
|
|
16
|
+
/* Scopes: All Fills, Effect Color */
|
|
11
17
|
--neo-buttons-destructive: #cb3446;
|
|
18
|
+
--neo-buttons-navigation-active: #ffffff;
|
|
19
|
+
/* Scopes: All Fills, Effect Color */
|
|
12
20
|
--neo-buttons-primary-pressed: #131e7a;
|
|
21
|
+
/* Scopes: All Fills, Effect Color */
|
|
13
22
|
--neo-buttons-primary-default: #2f42ff;
|
|
23
|
+
/* Scopes: All Fills, Effect Color */
|
|
14
24
|
--neo-buttons-primary-hover: #1e2ec2;
|
|
25
|
+
/* Scopes: All Fills, Effect Color */
|
|
15
26
|
--neo-buttons-primary-disabled: #b6bfff;
|
|
27
|
+
/* Scopes: All Fills, Effect Color */
|
|
16
28
|
--neo-buttons-primary-focus: #2f42ff;
|
|
17
|
-
|
|
29
|
+
/* Scopes: Stroke Color, Effect Color */
|
|
18
30
|
--neo-buttons-secondary-default-border: #b6bfff;
|
|
31
|
+
/* Scopes: All Fills, Effect Color */
|
|
19
32
|
--neo-buttons-secondary-hover-background: #f2f3ff;
|
|
33
|
+
/* Scopes: All Fills, Effect Color */
|
|
20
34
|
--neo-buttons-secondary-pressed-background: #dce0ff;
|
|
35
|
+
/* Scopes: Stroke Color, Effect Color */
|
|
21
36
|
--neo-buttons-secondary-disabled: #626eff;
|
|
37
|
+
/* Scopes: Stroke Color, Effect Color */
|
|
22
38
|
--neo-buttons-secondary-focus: #2f42ff;
|
|
39
|
+
/* Scopes: All Fills, Stroke Color, Effect Color */
|
|
23
40
|
--neo-buttons-tertiary-default: #2f42ff;
|
|
41
|
+
/* Scopes: All Fills, Stroke Color, Effect Color */
|
|
24
42
|
--neo-buttons-tertiary-hover: #1e2ec2;
|
|
43
|
+
/* Scopes: All Fills, Stroke Color, Effect Color */
|
|
25
44
|
--neo-buttons-tertiary-pressed: #131e7a;
|
|
45
|
+
/* Scopes: All Fills, Stroke Color, Effect Color */
|
|
26
46
|
--neo-buttons-tertiary-focus: #2f42ff;
|
|
47
|
+
/* Scopes: All Fills, Stroke Color, Effect Color */
|
|
27
48
|
--neo-buttons-tertiary-disabled: #626eff;
|
|
49
|
+
/* Scopes: Stroke Color, Effect Color */
|
|
28
50
|
--neo-buttons-navigation-default-border: #b6bfff;
|
|
51
|
+
/* Scopes: All Fills, Effect Color */
|
|
29
52
|
--neo-buttons-navigation-hover-background: #f3f4f6;
|
|
53
|
+
/* Scopes: All Fills, Effect Color */
|
|
30
54
|
--neo-buttons-navigation-pressed-background: #e5e7eb;
|
|
55
|
+
/* Scopes: Stroke Color, Effect Color */
|
|
31
56
|
--neo-buttons-navigation-active-border: #2f42ff;
|
|
57
|
+
--neo-data-green: #4ca75a;
|
|
58
|
+
--neo-data-yellow: #fdda04;
|
|
59
|
+
--neo-data-orange1: #ffc008;
|
|
60
|
+
--neo-data-orange2: #ff9800;
|
|
61
|
+
--neo-data-orange3: #f9a91b;
|
|
62
|
+
--neo-data-red1: #ff5c24;
|
|
63
|
+
--neo-data-red2: #ed4134;
|
|
64
|
+
--neo-data-red3: #cb3446;
|
|
65
|
+
/* Scopes: All Fills, Stroke Color, Effect Color */
|
|
32
66
|
--neo-icons-default: #1f2937;
|
|
67
|
+
/* Scopes: All Fills, Stroke Color, Effect Color */
|
|
33
68
|
--neo-icons-active: #2f42ff;
|
|
69
|
+
/* Scopes: All Fills, Stroke Color, Effect Color */
|
|
34
70
|
--neo-icons-hover: #131e7a;
|
|
71
|
+
/* Scopes: All Fills, Stroke Color, Effect Color */
|
|
35
72
|
--neo-icons-hover-background: #e5e7eb;
|
|
73
|
+
/* Scopes: All Fills, Stroke Color, Effect Color */
|
|
36
74
|
--neo-icons-disabled: #9ca3af;
|
|
75
|
+
/* Scopes: All Fills, Stroke Color, Effect Color */
|
|
37
76
|
--neo-icons-placeholder: #4b5563;
|
|
77
|
+
/* Scopes: All Fills, Stroke Color, Effect Color */
|
|
38
78
|
--neo-icons-checkbox: #4b5563;
|
|
79
|
+
--neo-input-input-field: #ffffff;
|
|
39
80
|
--neo-status-success-dark: #4ca75a;
|
|
40
81
|
--neo-status-success-light: #f3fff5;
|
|
41
82
|
--neo-status-warning-dark: #ffb800;
|
|
42
83
|
--neo-status-warning-light: #fff8e5;
|
|
43
84
|
--neo-status-error-dark: #cb3446;
|
|
44
85
|
--neo-status-error-light: #ffedef;
|
|
86
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
45
87
|
--neo-surfaces-black: #000000;
|
|
88
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
46
89
|
--neo-surfaces-white: #ffffff;
|
|
90
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
47
91
|
--neo-surfaces-page: #f9fafb;
|
|
92
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
48
93
|
--neo-surfaces-card: #ffffff;
|
|
94
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
49
95
|
--neo-surfaces-card-header: #f3f4f6;
|
|
96
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
50
97
|
--neo-surfaces-tab-active: #f3f4f6;
|
|
98
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
51
99
|
--neo-surfaces-list-hover: #f9fafb;
|
|
100
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
52
101
|
--neo-surfaces-input-hover: #f3f4f6;
|
|
102
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
53
103
|
--neo-surfaces-table-disabled-row: #f3f4f6;
|
|
104
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
54
105
|
--neo-surfaces-table-background: #ffffff;
|
|
106
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
55
107
|
--neo-surfaces-shadow-neutral: #1f2937;
|
|
108
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
56
109
|
--neo-surfaces-scrim: #1f2937;
|
|
110
|
+
/* Scopes: Frame Fill, Shape Fill, Effect Color */
|
|
57
111
|
--neo-surfaces-shadow-primary: #2f42ff;
|
|
58
112
|
--neo-surfaces-tooltip: #4b5563;
|
|
113
|
+
/* Scopes: Text Fill */
|
|
59
114
|
--neo-typography-button-disabled: #9ca3af;
|
|
115
|
+
/* Scopes: Text Fill */
|
|
60
116
|
--neo-typography-input-placeholder: #6b7280;
|
|
117
|
+
/* Scopes: Text Fill */
|
|
61
118
|
--neo-typography-input-default: #1f2937;
|
|
119
|
+
/* Scopes: Text Fill */
|
|
62
120
|
--neo-typography-code-primary: #1f2937;
|
|
121
|
+
/* Scopes: Text Fill */
|
|
63
122
|
--neo-typography-code-secondary: #6b7280;
|
|
123
|
+
/* Scopes: Text Fill */
|
|
64
124
|
--neo-typography-tab-inactive: #4b5563;
|
|
125
|
+
/* Scopes: Text Fill */
|
|
65
126
|
--neo-typography-tab-active: #626eff;
|
|
127
|
+
/* Scopes: Text Fill */
|
|
66
128
|
--neo-typography-link-primary: #2f42ff;
|
|
129
|
+
/* Scopes: Text Fill */
|
|
67
130
|
--neo-typography-link-disabled: #b6bfff;
|
|
131
|
+
/* Scopes: Text Fill */
|
|
68
132
|
--neo-typography-link-default: #f9fafb;
|
|
133
|
+
/* Scopes: Text Fill */
|
|
69
134
|
--neo-typography-error: #cb3446;
|
|
135
|
+
/* Scopes: Text Fill */
|
|
70
136
|
--neo-typography-success: #4ca75a;
|
|
137
|
+
/* Scopes: Text Fill */
|
|
71
138
|
--neo-typography-warning: #1f2937;
|
|
72
139
|
--neo-typography-tooltip: #ffffff;
|
|
140
|
+
--neo-typography-legal: #9ca3af;
|
|
141
|
+
/* Scopes: Text Fill */
|
|
73
142
|
--neo-typography-navigation-default: #374151;
|
|
74
|
-
--neo-data-green: #4ca75a;
|
|
75
|
-
--neo-data-yellow: #fdda04;
|
|
76
|
-
--neo-data-orange1: #ffc008;
|
|
77
|
-
--neo-data-orange2: #ff9800;
|
|
78
|
-
--neo-data-orange3: #f9a91b;
|
|
79
|
-
--neo-data-red1: #ff5c24;
|
|
80
|
-
--neo-data-red2: #ed4134;
|
|
81
|
-
--neo-data-red3: #cb3446;
|
|
82
143
|
}
|