@carbon/themes 10.16.0 → 10.18.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/docs/sass.md +105 -61
- package/es/index.js +13 -3
- package/lib/index.js +13 -2
- package/package.json +7 -7
- package/scss/generated/_mixins.scss +18 -0
- package/scss/generated/_themes.scss +68 -61
- package/scss/generated/_tokens.scss +69 -61
- package/src/g10.js +2 -0
- package/src/g100.js +2 -0
- package/src/g90.js +2 -0
- package/src/tokens.js +3 -0
- package/src/v9.js +2 -0
- package/src/white.js +2 -0
- package/umd/index.js +13 -2
package/docs/sass.md
CHANGED
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
- [✅highlight [variable]](#highlight-variable)
|
|
79
79
|
- [✅decorative-01 [variable]](#decorative-01-variable)
|
|
80
80
|
- [✅hover-light-ui [variable]](#hover-light-ui-variable)
|
|
81
|
+
- [✅button-separator [variable]](#button-separator-variable)
|
|
81
82
|
- [✅skeleton-01 [variable]](#skeleton-01-variable)
|
|
82
83
|
- [✅skeleton-02 [variable]](#skeleton-02-variable)
|
|
83
84
|
- [✅⚠️brand-01 [variable]](#brand-01-variable)
|
|
@@ -284,6 +285,7 @@ Define theme variables from a map of tokens
|
|
|
284
285
|
$highlight: map-get($theme, 'highlight') !global;
|
|
285
286
|
$decorative-01: map-get($theme, 'decorative-01') !global;
|
|
286
287
|
$hover-light-ui: map-get($theme, 'hover-light-ui') !global;
|
|
288
|
+
$button-separator: map-get($theme, 'button-separator') !global;
|
|
287
289
|
$skeleton-01: map-get($theme, 'skeleton-01') !global;
|
|
288
290
|
$skeleton-02: map-get($theme, 'skeleton-02') !global;
|
|
289
291
|
$brand-01: map-get($theme, 'brand-01') !global;
|
|
@@ -596,6 +598,10 @@ Define theme variables from a map of tokens
|
|
|
596
598
|
--#{$custom-property-prefix}-hover-light-ui,
|
|
597
599
|
map-get($theme, 'hover-light-ui')
|
|
598
600
|
) !global;
|
|
601
|
+
$button-separator: var(
|
|
602
|
+
--#{$custom-property-prefix}-button-separator,
|
|
603
|
+
map-get($theme, 'button-separator')
|
|
604
|
+
) !global;
|
|
599
605
|
$skeleton-01: var(
|
|
600
606
|
--#{$custom-property-prefix}-skeleton-01,
|
|
601
607
|
map-get($theme, 'skeleton-01')
|
|
@@ -1289,6 +1295,19 @@ Define theme variables from a map of tokens
|
|
|
1289
1295
|
);
|
|
1290
1296
|
}
|
|
1291
1297
|
|
|
1298
|
+
@if should-emit(
|
|
1299
|
+
$theme,
|
|
1300
|
+
$parent-carbon-theme,
|
|
1301
|
+
'button-separator',
|
|
1302
|
+
$emit-difference
|
|
1303
|
+
)
|
|
1304
|
+
{
|
|
1305
|
+
@include custom-property(
|
|
1306
|
+
'button-separator',
|
|
1307
|
+
map-get($theme, 'button-separator')
|
|
1308
|
+
);
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1292
1311
|
@if should-emit(
|
|
1293
1312
|
$theme,
|
|
1294
1313
|
$parent-carbon-theme,
|
|
@@ -2072,6 +2091,7 @@ Define theme variables from a map of tokens
|
|
|
2072
2091
|
- [highlight [variable]](#highlight-variable)
|
|
2073
2092
|
- [decorative-01 [variable]](#decorative-01-variable)
|
|
2074
2093
|
- [hover-light-ui [variable]](#hover-light-ui-variable)
|
|
2094
|
+
- [button-separator [variable]](#button-separator-variable)
|
|
2075
2095
|
- [skeleton-01 [variable]](#skeleton-01-variable)
|
|
2076
2096
|
- [skeleton-02 [variable]](#skeleton-02-variable)
|
|
2077
2097
|
- [brand-01 [variable]](#brand-01-variable)
|
|
@@ -2228,6 +2248,7 @@ $carbon--theme--g90: map-merge(
|
|
|
2228
2248
|
highlight: #0043ce,
|
|
2229
2249
|
decorative-01: #6f6f6f,
|
|
2230
2250
|
hover-light-ui: #6f6f6f,
|
|
2251
|
+
button-separator: #161616,
|
|
2231
2252
|
skeleton-01: #353535,
|
|
2232
2253
|
skeleton-02: #525252,
|
|
2233
2254
|
brand-02: #6f6f6f,
|
|
@@ -2303,6 +2324,7 @@ $carbon--theme--g100: map-merge(
|
|
|
2303
2324
|
highlight: #002d9c,
|
|
2304
2325
|
decorative-01: #525252,
|
|
2305
2326
|
hover-light-ui: #525252,
|
|
2327
|
+
button-separator: #161616,
|
|
2306
2328
|
skeleton-01: #353535,
|
|
2307
2329
|
skeleton-02: #393939,
|
|
2308
2330
|
brand-02: #6f6f6f,
|
|
@@ -2469,6 +2491,7 @@ $carbon--theme: (
|
|
|
2469
2491
|
highlight: if(global-variable-exists('highlight'), $highlight, map-get($carbon--theme--white, 'highlight')),
|
|
2470
2492
|
decorative-01: if(global-variable-exists('decorative-01'), $decorative-01, map-get($carbon--theme--white, 'decorative-01')),
|
|
2471
2493
|
hover-light-ui: if(global-variable-exists('hover-light-ui'), $hover-light-ui, map-get($carbon--theme--white, 'hover-light-ui')),
|
|
2494
|
+
button-separator: if(global-variable-exists('button-separator'), $button-separator, map-get($carbon--theme--white, 'button-separator')),
|
|
2472
2495
|
skeleton-01: if(global-variable-exists('skeleton-01'), $skeleton-01, map-get($carbon--theme--white, 'skeleton-01')),
|
|
2473
2496
|
skeleton-02: if(global-variable-exists('skeleton-02'), $skeleton-02, map-get($carbon--theme--white, 'skeleton-02')),
|
|
2474
2497
|
brand-01: if(global-variable-exists('brand-01'), $brand-01, map-get($carbon--theme--white, 'brand-01')),
|
|
@@ -4035,6 +4058,29 @@ $hover-light-ui: if(
|
|
|
4035
4058
|
|
|
4036
4059
|
</details>
|
|
4037
4060
|
|
|
4061
|
+
- **Group**: [@carbon/themes](#carbonthemes)
|
|
4062
|
+
- **Type**: `{undefined}`
|
|
4063
|
+
- **Used by**:
|
|
4064
|
+
- [carbon--theme [mixin]](#carbon--theme-mixin)
|
|
4065
|
+
|
|
4066
|
+
### ✅button-separator [variable]
|
|
4067
|
+
|
|
4068
|
+
<details>
|
|
4069
|
+
<summary>Source code</summary>
|
|
4070
|
+
|
|
4071
|
+
```scss
|
|
4072
|
+
$button-separator: if(
|
|
4073
|
+
global-variable-exists('carbon--theme') and map-has-key(
|
|
4074
|
+
$carbon--theme,
|
|
4075
|
+
'button-separator'
|
|
4076
|
+
),
|
|
4077
|
+
map-get($carbon--theme, 'button-separator'),
|
|
4078
|
+
#e0e0e0
|
|
4079
|
+
);
|
|
4080
|
+
```
|
|
4081
|
+
|
|
4082
|
+
</details>
|
|
4083
|
+
|
|
4038
4084
|
- **Group**: [@carbon/themes](#carbonthemes)
|
|
4039
4085
|
- **Type**: `{undefined}`
|
|
4040
4086
|
- **Used by**:
|
|
@@ -4230,7 +4276,7 @@ $caption-01: if(
|
|
|
4230
4276
|
(
|
|
4231
4277
|
font-size: 0.75rem,
|
|
4232
4278
|
font-weight: 400,
|
|
4233
|
-
line-height:
|
|
4279
|
+
line-height: 1.34,
|
|
4234
4280
|
letter-spacing: 0.32px,
|
|
4235
4281
|
)
|
|
4236
4282
|
);
|
|
@@ -4258,7 +4304,7 @@ $label-01: if(
|
|
|
4258
4304
|
(
|
|
4259
4305
|
font-size: 0.75rem,
|
|
4260
4306
|
font-weight: 400,
|
|
4261
|
-
line-height:
|
|
4307
|
+
line-height: 1.34,
|
|
4262
4308
|
letter-spacing: 0.32px,
|
|
4263
4309
|
)
|
|
4264
4310
|
);
|
|
@@ -4285,7 +4331,7 @@ $helper-text-01: if(
|
|
|
4285
4331
|
map-get($carbon--theme, 'helper-text-01'),
|
|
4286
4332
|
(
|
|
4287
4333
|
font-size: 0.75rem,
|
|
4288
|
-
line-height:
|
|
4334
|
+
line-height: 1.34,
|
|
4289
4335
|
letter-spacing: 0.32px,
|
|
4290
4336
|
)
|
|
4291
4337
|
);
|
|
@@ -4313,7 +4359,7 @@ $body-short-01: if(
|
|
|
4313
4359
|
(
|
|
4314
4360
|
font-size: 0.875rem,
|
|
4315
4361
|
font-weight: 400,
|
|
4316
|
-
line-height: 1.
|
|
4362
|
+
line-height: 1.29,
|
|
4317
4363
|
letter-spacing: 0.16px,
|
|
4318
4364
|
)
|
|
4319
4365
|
);
|
|
@@ -4341,7 +4387,7 @@ $body-long-01: if(
|
|
|
4341
4387
|
(
|
|
4342
4388
|
font-size: 0.875rem,
|
|
4343
4389
|
font-weight: 400,
|
|
4344
|
-
line-height: 1.
|
|
4390
|
+
line-height: 1.43,
|
|
4345
4391
|
letter-spacing: 0.16px,
|
|
4346
4392
|
)
|
|
4347
4393
|
);
|
|
@@ -4369,7 +4415,7 @@ $body-short-02: if(
|
|
|
4369
4415
|
(
|
|
4370
4416
|
font-size: 1rem,
|
|
4371
4417
|
font-weight: 400,
|
|
4372
|
-
line-height: 1.
|
|
4418
|
+
line-height: 1.375,
|
|
4373
4419
|
letter-spacing: 0,
|
|
4374
4420
|
)
|
|
4375
4421
|
);
|
|
@@ -4397,7 +4443,7 @@ $body-long-02: if(
|
|
|
4397
4443
|
(
|
|
4398
4444
|
font-size: 1rem,
|
|
4399
4445
|
font-weight: 400,
|
|
4400
|
-
line-height: 1.
|
|
4446
|
+
line-height: 1.5,
|
|
4401
4447
|
letter-spacing: 0,
|
|
4402
4448
|
)
|
|
4403
4449
|
);
|
|
@@ -4426,7 +4472,7 @@ $code-01: if(
|
|
|
4426
4472
|
font-family: unquote("'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace"),
|
|
4427
4473
|
font-size: 0.75rem,
|
|
4428
4474
|
font-weight: 400,
|
|
4429
|
-
line-height:
|
|
4475
|
+
line-height: 1.34,
|
|
4430
4476
|
letter-spacing: 0.32px,
|
|
4431
4477
|
)
|
|
4432
4478
|
);
|
|
@@ -4455,7 +4501,7 @@ $code-02: if(
|
|
|
4455
4501
|
font-family: unquote("'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace"),
|
|
4456
4502
|
font-size: 0.875rem,
|
|
4457
4503
|
font-weight: 400,
|
|
4458
|
-
line-height: 1.
|
|
4504
|
+
line-height: 1.43,
|
|
4459
4505
|
letter-spacing: 0.32px,
|
|
4460
4506
|
)
|
|
4461
4507
|
);
|
|
@@ -4483,7 +4529,7 @@ $heading-01: if(
|
|
|
4483
4529
|
(
|
|
4484
4530
|
font-size: 0.875rem,
|
|
4485
4531
|
font-weight: 600,
|
|
4486
|
-
line-height: 1.
|
|
4532
|
+
line-height: 1.29,
|
|
4487
4533
|
letter-spacing: 0.16px,
|
|
4488
4534
|
)
|
|
4489
4535
|
);
|
|
@@ -4511,7 +4557,7 @@ $productive-heading-01: if(
|
|
|
4511
4557
|
(
|
|
4512
4558
|
font-size: 0.875rem,
|
|
4513
4559
|
font-weight: 600,
|
|
4514
|
-
line-height: 1.
|
|
4560
|
+
line-height: 1.29,
|
|
4515
4561
|
letter-spacing: 0.16px,
|
|
4516
4562
|
)
|
|
4517
4563
|
);
|
|
@@ -4539,7 +4585,7 @@ $heading-02: if(
|
|
|
4539
4585
|
(
|
|
4540
4586
|
font-size: 1rem,
|
|
4541
4587
|
font-weight: 600,
|
|
4542
|
-
line-height: 1.
|
|
4588
|
+
line-height: 1.375,
|
|
4543
4589
|
letter-spacing: 0,
|
|
4544
4590
|
)
|
|
4545
4591
|
);
|
|
@@ -4567,7 +4613,7 @@ $productive-heading-02: if(
|
|
|
4567
4613
|
(
|
|
4568
4614
|
font-size: 1rem,
|
|
4569
4615
|
font-weight: 600,
|
|
4570
|
-
line-height: 1.
|
|
4616
|
+
line-height: 1.375,
|
|
4571
4617
|
letter-spacing: 0,
|
|
4572
4618
|
)
|
|
4573
4619
|
);
|
|
@@ -4595,7 +4641,7 @@ $productive-heading-03: if(
|
|
|
4595
4641
|
(
|
|
4596
4642
|
font-size: 1.25rem,
|
|
4597
4643
|
font-weight: 400,
|
|
4598
|
-
line-height: 1.
|
|
4644
|
+
line-height: 1.4,
|
|
4599
4645
|
letter-spacing: 0,
|
|
4600
4646
|
)
|
|
4601
4647
|
);
|
|
@@ -4623,7 +4669,7 @@ $productive-heading-04: if(
|
|
|
4623
4669
|
(
|
|
4624
4670
|
font-size: 1.75rem,
|
|
4625
4671
|
font-weight: 400,
|
|
4626
|
-
line-height:
|
|
4672
|
+
line-height: 1.29,
|
|
4627
4673
|
letter-spacing: 0,
|
|
4628
4674
|
)
|
|
4629
4675
|
);
|
|
@@ -4651,7 +4697,7 @@ $productive-heading-05: if(
|
|
|
4651
4697
|
(
|
|
4652
4698
|
font-size: 2rem,
|
|
4653
4699
|
font-weight: 400,
|
|
4654
|
-
line-height:
|
|
4700
|
+
line-height: 1.25,
|
|
4655
4701
|
letter-spacing: 0,
|
|
4656
4702
|
)
|
|
4657
4703
|
);
|
|
@@ -4679,7 +4725,7 @@ $productive-heading-06: if(
|
|
|
4679
4725
|
(
|
|
4680
4726
|
font-size: 2.625rem,
|
|
4681
4727
|
font-weight: 300,
|
|
4682
|
-
line-height:
|
|
4728
|
+
line-height: 1.199,
|
|
4683
4729
|
letter-spacing: 0,
|
|
4684
4730
|
)
|
|
4685
4731
|
);
|
|
@@ -4707,7 +4753,7 @@ $productive-heading-07: if(
|
|
|
4707
4753
|
(
|
|
4708
4754
|
font-size: 3.375rem,
|
|
4709
4755
|
font-weight: 300,
|
|
4710
|
-
line-height:
|
|
4756
|
+
line-height: 1.19,
|
|
4711
4757
|
letter-spacing: 0,
|
|
4712
4758
|
)
|
|
4713
4759
|
);
|
|
@@ -4735,7 +4781,7 @@ $expressive-heading-01: if(
|
|
|
4735
4781
|
(
|
|
4736
4782
|
font-size: 0.875rem,
|
|
4737
4783
|
font-weight: 600,
|
|
4738
|
-
line-height: 1.
|
|
4784
|
+
line-height: 1.25,
|
|
4739
4785
|
letter-spacing: 0.16px,
|
|
4740
4786
|
)
|
|
4741
4787
|
);
|
|
@@ -4763,7 +4809,7 @@ $expressive-heading-02: if(
|
|
|
4763
4809
|
(
|
|
4764
4810
|
font-size: 1rem,
|
|
4765
4811
|
font-weight: 600,
|
|
4766
|
-
line-height: 1.
|
|
4812
|
+
line-height: 1.5,
|
|
4767
4813
|
letter-spacing: 0,
|
|
4768
4814
|
)
|
|
4769
4815
|
);
|
|
@@ -4791,12 +4837,12 @@ $expressive-heading-03: if(
|
|
|
4791
4837
|
(
|
|
4792
4838
|
font-size: 1.25rem,
|
|
4793
4839
|
font-weight: 400,
|
|
4794
|
-
line-height:
|
|
4840
|
+
line-height: 1.4,
|
|
4795
4841
|
letter-spacing: 0,
|
|
4796
4842
|
breakpoints: (
|
|
4797
4843
|
xlg: (
|
|
4798
4844
|
font-size: 1.25rem,
|
|
4799
|
-
line-height:
|
|
4845
|
+
line-height: 1.25,
|
|
4800
4846
|
),
|
|
4801
4847
|
max: (
|
|
4802
4848
|
font-size: 1.5rem,
|
|
@@ -4828,12 +4874,12 @@ $expressive-heading-04: if(
|
|
|
4828
4874
|
(
|
|
4829
4875
|
font-size: 1.75rem,
|
|
4830
4876
|
font-weight: 400,
|
|
4831
|
-
line-height:
|
|
4877
|
+
line-height: 1.29,
|
|
4832
4878
|
letter-spacing: 0,
|
|
4833
4879
|
breakpoints: (
|
|
4834
4880
|
xlg: (
|
|
4835
4881
|
font-size: 1.75rem,
|
|
4836
|
-
line-height:
|
|
4882
|
+
line-height: 1.25,
|
|
4837
4883
|
),
|
|
4838
4884
|
max: (
|
|
4839
4885
|
font-size: 2rem,
|
|
@@ -4865,31 +4911,30 @@ $expressive-heading-05: if(
|
|
|
4865
4911
|
(
|
|
4866
4912
|
font-size: 2rem,
|
|
4867
4913
|
font-weight: 400,
|
|
4868
|
-
line-height:
|
|
4914
|
+
line-height: 1.25,
|
|
4869
4915
|
letter-spacing: 0,
|
|
4870
4916
|
breakpoints: (
|
|
4871
4917
|
md: (
|
|
4872
4918
|
font-size: 2.25rem,
|
|
4873
4919
|
font-weight: 300,
|
|
4874
|
-
line-height:
|
|
4920
|
+
line-height: 1.22,
|
|
4875
4921
|
letter-spacing: 0,
|
|
4876
4922
|
),
|
|
4877
4923
|
lg: (
|
|
4878
4924
|
font-size: 2.625rem,
|
|
4879
4925
|
font-weight: 300,
|
|
4880
|
-
line-height:
|
|
4926
|
+
line-height: 1.19,
|
|
4881
4927
|
letter-spacing: 0,
|
|
4882
4928
|
),
|
|
4883
4929
|
xlg: (
|
|
4884
4930
|
font-size: 3rem,
|
|
4885
4931
|
font-weight: 300,
|
|
4886
|
-
line-height:
|
|
4932
|
+
line-height: 1.17,
|
|
4887
4933
|
letter-spacing: 0,
|
|
4888
4934
|
),
|
|
4889
4935
|
max: (
|
|
4890
4936
|
font-size: 3.75rem,
|
|
4891
4937
|
font-weight: 300,
|
|
4892
|
-
line-height: 4.375rem,
|
|
4893
4938
|
letter-spacing: 0,
|
|
4894
4939
|
),
|
|
4895
4940
|
),
|
|
@@ -4919,31 +4964,30 @@ $expressive-heading-06: if(
|
|
|
4919
4964
|
(
|
|
4920
4965
|
font-size: 2rem,
|
|
4921
4966
|
font-weight: 600,
|
|
4922
|
-
line-height:
|
|
4967
|
+
line-height: 1.25,
|
|
4923
4968
|
letter-spacing: 0,
|
|
4924
4969
|
breakpoints: (
|
|
4925
4970
|
md: (
|
|
4926
4971
|
font-size: 2.25rem,
|
|
4927
4972
|
font-weight: 600,
|
|
4928
|
-
line-height:
|
|
4973
|
+
line-height: 1.22,
|
|
4929
4974
|
letter-spacing: 0,
|
|
4930
4975
|
),
|
|
4931
4976
|
lg: (
|
|
4932
4977
|
font-size: 2.625rem,
|
|
4933
4978
|
font-weight: 600,
|
|
4934
|
-
line-height:
|
|
4979
|
+
line-height: 1.19,
|
|
4935
4980
|
letter-spacing: 0,
|
|
4936
4981
|
),
|
|
4937
4982
|
xlg: (
|
|
4938
4983
|
font-size: 3rem,
|
|
4939
4984
|
font-weight: 600,
|
|
4940
|
-
line-height:
|
|
4985
|
+
line-height: 1.17,
|
|
4941
4986
|
letter-spacing: 0,
|
|
4942
4987
|
),
|
|
4943
4988
|
max: (
|
|
4944
4989
|
font-size: 3.75rem,
|
|
4945
4990
|
font-weight: 600,
|
|
4946
|
-
line-height: 4.375rem,
|
|
4947
4991
|
letter-spacing: 0,
|
|
4948
4992
|
),
|
|
4949
4993
|
),
|
|
@@ -4973,15 +5017,15 @@ $expressive-paragraph-01: if(
|
|
|
4973
5017
|
(
|
|
4974
5018
|
font-size: 1.5rem,
|
|
4975
5019
|
font-weight: 300,
|
|
4976
|
-
line-height:
|
|
5020
|
+
line-height: 1.25,
|
|
4977
5021
|
letter-spacing: 0,
|
|
4978
5022
|
lg: (
|
|
4979
5023
|
font-size: 1.75rem,
|
|
4980
|
-
line-height:
|
|
5024
|
+
line-height: 1.29,
|
|
4981
5025
|
),
|
|
4982
5026
|
max: (
|
|
4983
5027
|
font-size: 2rem,
|
|
4984
|
-
line-height:
|
|
5028
|
+
line-height: 1.25,
|
|
4985
5029
|
),
|
|
4986
5030
|
)
|
|
4987
5031
|
);
|
|
@@ -5009,7 +5053,7 @@ $quotation-01: if(
|
|
|
5009
5053
|
(
|
|
5010
5054
|
font-size: 1.25rem,
|
|
5011
5055
|
font-weight: 400,
|
|
5012
|
-
line-height:
|
|
5056
|
+
line-height: 1.3,
|
|
5013
5057
|
letter-spacing: 0,
|
|
5014
5058
|
breakpoints: (
|
|
5015
5059
|
md: (
|
|
@@ -5020,19 +5064,19 @@ $quotation-01: if(
|
|
|
5020
5064
|
lg: (
|
|
5021
5065
|
font-size: 1.5rem,
|
|
5022
5066
|
font-weight: 400,
|
|
5023
|
-
line-height:
|
|
5067
|
+
line-height: 1.25,
|
|
5024
5068
|
letter-spacing: 0,
|
|
5025
5069
|
),
|
|
5026
5070
|
xlg: (
|
|
5027
5071
|
font-size: 1.75rem,
|
|
5028
5072
|
font-weight: 400,
|
|
5029
|
-
line-height:
|
|
5073
|
+
line-height: 1.29,
|
|
5030
5074
|
letter-spacing: 0,
|
|
5031
5075
|
),
|
|
5032
5076
|
max: (
|
|
5033
5077
|
font-size: 2rem,
|
|
5034
5078
|
font-weight: 400,
|
|
5035
|
-
line-height:
|
|
5079
|
+
line-height: 1.25,
|
|
5036
5080
|
letter-spacing: 0,
|
|
5037
5081
|
),
|
|
5038
5082
|
),
|
|
@@ -5062,20 +5106,20 @@ $quotation-02: if(
|
|
|
5062
5106
|
(
|
|
5063
5107
|
font-size: 2rem,
|
|
5064
5108
|
font-weight: 300,
|
|
5065
|
-
line-height:
|
|
5109
|
+
line-height: 1.25,
|
|
5066
5110
|
letter-spacing: 0,
|
|
5067
5111
|
breakpoints: (
|
|
5068
5112
|
md: (
|
|
5069
5113
|
font-size: 2.25rem,
|
|
5070
|
-
line-height:
|
|
5114
|
+
line-height: 1.22,
|
|
5071
5115
|
),
|
|
5072
5116
|
lg: (
|
|
5073
5117
|
font-size: 2.625rem,
|
|
5074
|
-
line-height:
|
|
5118
|
+
line-height: 1.19,
|
|
5075
5119
|
),
|
|
5076
5120
|
xlg: (
|
|
5077
5121
|
font-size: 3rem,
|
|
5078
|
-
line-height:
|
|
5122
|
+
line-height: 1.17,
|
|
5079
5123
|
),
|
|
5080
5124
|
max: (
|
|
5081
5125
|
font-size: 3.75rem,
|
|
@@ -5107,7 +5151,7 @@ $display-01: if(
|
|
|
5107
5151
|
(
|
|
5108
5152
|
font-size: 2.625rem,
|
|
5109
5153
|
font-weight: 300,
|
|
5110
|
-
line-height:
|
|
5154
|
+
line-height: 1.19,
|
|
5111
5155
|
letter-spacing: 0,
|
|
5112
5156
|
breakpoints: (
|
|
5113
5157
|
md: (
|
|
@@ -5118,11 +5162,11 @@ $display-01: if(
|
|
|
5118
5162
|
),
|
|
5119
5163
|
xlg: (
|
|
5120
5164
|
font-size: 3.75rem,
|
|
5121
|
-
line-height:
|
|
5165
|
+
line-height: 1.17,
|
|
5122
5166
|
),
|
|
5123
5167
|
max: (
|
|
5124
5168
|
font-size: 4.75rem,
|
|
5125
|
-
line-height:
|
|
5169
|
+
line-height: 1.13,
|
|
5126
5170
|
),
|
|
5127
5171
|
),
|
|
5128
5172
|
)
|
|
@@ -5151,7 +5195,7 @@ $display-02: if(
|
|
|
5151
5195
|
(
|
|
5152
5196
|
font-size: 2.625rem,
|
|
5153
5197
|
font-weight: 600,
|
|
5154
|
-
line-height:
|
|
5198
|
+
line-height: 1.19,
|
|
5155
5199
|
letter-spacing: 0,
|
|
5156
5200
|
breakpoints: (
|
|
5157
5201
|
md: (
|
|
@@ -5162,11 +5206,11 @@ $display-02: if(
|
|
|
5162
5206
|
),
|
|
5163
5207
|
xlg: (
|
|
5164
5208
|
font-size: 3.75rem,
|
|
5165
|
-
line-height:
|
|
5209
|
+
line-height: 1.16,
|
|
5166
5210
|
),
|
|
5167
5211
|
max: (
|
|
5168
5212
|
font-size: 4.75rem,
|
|
5169
|
-
line-height:
|
|
5213
|
+
line-height: 1.13,
|
|
5170
5214
|
),
|
|
5171
5215
|
),
|
|
5172
5216
|
)
|
|
@@ -5195,25 +5239,25 @@ $display-03: if(
|
|
|
5195
5239
|
(
|
|
5196
5240
|
font-size: 2.625rem,
|
|
5197
5241
|
font-weight: 300,
|
|
5198
|
-
line-height:
|
|
5242
|
+
line-height: 1.19,
|
|
5199
5243
|
letter-spacing: 0,
|
|
5200
5244
|
breakpoints: (
|
|
5201
5245
|
md: (
|
|
5202
5246
|
font-size: 4.25rem,
|
|
5203
|
-
line-height:
|
|
5247
|
+
line-height: 1.15,
|
|
5204
5248
|
),
|
|
5205
5249
|
lg: (
|
|
5206
5250
|
font-size: 5.75rem,
|
|
5207
|
-
line-height:
|
|
5251
|
+
line-height: 1.11,
|
|
5208
5252
|
letter-spacing: -0.64px,
|
|
5209
5253
|
),
|
|
5210
5254
|
xlg: (
|
|
5211
5255
|
font-size: 7.625rem,
|
|
5212
|
-
line-height:
|
|
5256
|
+
line-height: 1.07,
|
|
5213
5257
|
),
|
|
5214
5258
|
max: (
|
|
5215
5259
|
font-size: 9.75rem,
|
|
5216
|
-
line-height:
|
|
5260
|
+
line-height: 1.05,
|
|
5217
5261
|
letter-spacing: -0.96px,
|
|
5218
5262
|
),
|
|
5219
5263
|
),
|
|
@@ -5243,26 +5287,26 @@ $display-04: if(
|
|
|
5243
5287
|
(
|
|
5244
5288
|
font-size: 2.625rem,
|
|
5245
5289
|
font-weight: 600,
|
|
5246
|
-
line-height:
|
|
5290
|
+
line-height: 1.19,
|
|
5247
5291
|
letter-spacing: 0,
|
|
5248
5292
|
breakpoints: (
|
|
5249
5293
|
md: (
|
|
5250
5294
|
font-size: 4.25rem,
|
|
5251
|
-
line-height:
|
|
5295
|
+
line-height: 1.15,
|
|
5252
5296
|
),
|
|
5253
5297
|
lg: (
|
|
5254
5298
|
font-size: 5.75rem,
|
|
5255
|
-
line-height:
|
|
5299
|
+
line-height: 1.11,
|
|
5256
5300
|
letter-spacing: -0.64px,
|
|
5257
5301
|
),
|
|
5258
5302
|
xlg: (
|
|
5259
5303
|
font-size: 7.625rem,
|
|
5260
|
-
line-height:
|
|
5304
|
+
line-height: 1.07,
|
|
5261
5305
|
letter-spacing: -0.64px,
|
|
5262
5306
|
),
|
|
5263
5307
|
max: (
|
|
5264
5308
|
font-size: 9.75rem,
|
|
5265
|
-
line-height:
|
|
5309
|
+
line-height: 1.05,
|
|
5266
5310
|
letter-spacing: -0.96px,
|
|
5267
5311
|
),
|
|
5268
5312
|
),
|
package/es/index.js
CHANGED
|
@@ -138,6 +138,7 @@ var disabled03 = gray50;
|
|
|
138
138
|
var highlight = blue20;
|
|
139
139
|
var decorative01 = gray20;
|
|
140
140
|
var hoverLightUI = '#e5e5e5';
|
|
141
|
+
var buttonSeparator = '#e0e0e0';
|
|
141
142
|
var skeleton01 = '#e5e5e5';
|
|
142
143
|
var skeleton02 = gray30; // Type
|
|
143
144
|
|
|
@@ -208,6 +209,7 @@ var white$1 = /*#__PURE__*/Object.freeze({
|
|
|
208
209
|
highlight: highlight,
|
|
209
210
|
decorative01: decorative01,
|
|
210
211
|
hoverLightUI: hoverLightUI,
|
|
212
|
+
buttonSeparator: buttonSeparator,
|
|
211
213
|
skeleton01: skeleton01,
|
|
212
214
|
skeleton02: skeleton02,
|
|
213
215
|
brand01: brand01,
|
|
@@ -345,6 +347,7 @@ var disabled03$1 = gray50;
|
|
|
345
347
|
var highlight$1 = blue20;
|
|
346
348
|
var decorative01$1 = gray20;
|
|
347
349
|
var hoverLightUI$1 = '#e5e5e5';
|
|
350
|
+
var buttonSeparator$1 = '#e0e0e0';
|
|
348
351
|
var skeleton01$1 = '#e5e5e5';
|
|
349
352
|
var skeleton02$1 = gray30;
|
|
350
353
|
|
|
@@ -415,6 +418,7 @@ var g10 = /*#__PURE__*/Object.freeze({
|
|
|
415
418
|
highlight: highlight$1,
|
|
416
419
|
decorative01: decorative01$1,
|
|
417
420
|
hoverLightUI: hoverLightUI$1,
|
|
421
|
+
buttonSeparator: buttonSeparator$1,
|
|
418
422
|
skeleton01: skeleton01$1,
|
|
419
423
|
skeleton02: skeleton02$1,
|
|
420
424
|
brand01: brand01$1,
|
|
@@ -552,6 +556,7 @@ var disabled03$2 = gray50;
|
|
|
552
556
|
var highlight$2 = blue80;
|
|
553
557
|
var decorative01$2 = gray70;
|
|
554
558
|
var hoverLightUI$2 = '#525252';
|
|
559
|
+
var buttonSeparator$2 = '#161616';
|
|
555
560
|
var skeleton01$2 = '#353535';
|
|
556
561
|
var skeleton02$2 = gray80;
|
|
557
562
|
|
|
@@ -622,6 +627,7 @@ var g100 = /*#__PURE__*/Object.freeze({
|
|
|
622
627
|
highlight: highlight$2,
|
|
623
628
|
decorative01: decorative01$2,
|
|
624
629
|
hoverLightUI: hoverLightUI$2,
|
|
630
|
+
buttonSeparator: buttonSeparator$2,
|
|
625
631
|
skeleton01: skeleton01$2,
|
|
626
632
|
skeleton02: skeleton02$2,
|
|
627
633
|
brand01: brand01$2,
|
|
@@ -759,6 +765,7 @@ var disabled03$3 = gray40;
|
|
|
759
765
|
var highlight$3 = blue70;
|
|
760
766
|
var decorative01$3 = gray60;
|
|
761
767
|
var hoverLightUI$3 = '#6f6f6f';
|
|
768
|
+
var buttonSeparator$3 = '#161616';
|
|
762
769
|
var skeleton01$3 = '#353535';
|
|
763
770
|
var skeleton02$3 = gray70;
|
|
764
771
|
|
|
@@ -829,6 +836,7 @@ var g90 = /*#__PURE__*/Object.freeze({
|
|
|
829
836
|
highlight: highlight$3,
|
|
830
837
|
decorative01: decorative01$3,
|
|
831
838
|
hoverLightUI: hoverLightUI$3,
|
|
839
|
+
buttonSeparator: buttonSeparator$3,
|
|
832
840
|
skeleton01: skeleton01$3,
|
|
833
841
|
skeleton02: skeleton02$3,
|
|
834
842
|
brand01: brand01$3,
|
|
@@ -966,6 +974,7 @@ var disabled03$4 = '#cdd1d4';
|
|
|
966
974
|
var highlight$4 = '#f4f7fb';
|
|
967
975
|
var decorative01$4 = '#EEF4FC';
|
|
968
976
|
var hoverLightUI$4 = '#EEF4FC';
|
|
977
|
+
var buttonSeparator$4 = '#e0e0e0';
|
|
969
978
|
var skeleton01$4 = 'rgba(61, 112, 178, .1)';
|
|
970
979
|
var skeleton02$4 = 'rgba(61, 112, 178, .1)';
|
|
971
980
|
|
|
@@ -1036,6 +1045,7 @@ var v9 = /*#__PURE__*/Object.freeze({
|
|
|
1036
1045
|
highlight: highlight$4,
|
|
1037
1046
|
decorative01: decorative01$4,
|
|
1038
1047
|
hoverLightUI: hoverLightUI$4,
|
|
1048
|
+
buttonSeparator: buttonSeparator$4,
|
|
1039
1049
|
skeleton01: skeleton01$4,
|
|
1040
1050
|
skeleton02: skeleton02$4,
|
|
1041
1051
|
brand01: brand01$4,
|
|
@@ -1116,7 +1126,7 @@ var v9 = /*#__PURE__*/Object.freeze({
|
|
|
1116
1126
|
|
|
1117
1127
|
var colors = [// Core
|
|
1118
1128
|
'interactive01', 'interactive02', 'interactive03', 'interactive04', 'uiBackground', 'ui01', 'ui02', 'ui03', 'ui04', 'ui05', 'text01', 'text02', 'text03', 'text04', 'text05', 'textError', 'icon01', 'icon02', 'icon03', 'link01', 'inverseLink', 'field01', 'field02', 'inverse01', 'inverse02', 'support01', 'support02', 'support03', 'support04', 'inverseSupport01', 'inverseSupport02', 'inverseSupport03', 'inverseSupport04', 'overlay01', 'danger', // Interactive states
|
|
1119
|
-
'focus', 'inverseFocusUi', 'hoverPrimary', 'activePrimary', 'hoverPrimaryText', 'hoverSecondary', 'activeSecondary', 'hoverTertiary', 'activeTertiary', 'hoverUI', 'activeUI', 'selectedUI', 'selectedLightUI', 'hoverSelectedUI', 'inverseHoverUI', 'hoverDanger', 'activeDanger', 'hoverRow', 'visitedLink', 'disabled01', 'disabled02', 'disabled03', 'highlight', 'decorative01', 'hoverLightUI', 'skeleton01', 'skeleton02', // Deprecated
|
|
1129
|
+
'focus', 'inverseFocusUi', 'hoverPrimary', 'activePrimary', 'hoverPrimaryText', 'hoverSecondary', 'activeSecondary', 'hoverTertiary', 'activeTertiary', 'hoverUI', 'activeUI', 'selectedUI', 'selectedLightUI', 'hoverSelectedUI', 'inverseHoverUI', 'hoverDanger', 'activeDanger', 'hoverRow', 'visitedLink', 'disabled01', 'disabled02', 'disabled03', 'highlight', 'decorative01', 'hoverLightUI', 'buttonSeparator', 'skeleton01', 'skeleton02', // Deprecated
|
|
1120
1130
|
'brand01', 'brand02', 'brand03', 'active01', 'hoverField'];
|
|
1121
1131
|
var numbers = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
|
|
1122
1132
|
/**
|
|
@@ -1168,7 +1178,7 @@ var unstable__meta = {
|
|
|
1168
1178
|
tokens: ['uiBackground', 'interactive01', 'interactive02', 'interactive03', 'interactive04', 'brand01', 'brand02', 'brand03', 'danger', 'ui01', 'ui02', 'ui03', 'ui04', 'ui05', 'text01', 'text02', 'text03', 'text04', 'text05', 'textError', 'link01', 'icon01', 'icon02', 'icon03', 'field01', 'field02', 'inverse01', 'inverse02', 'inverseLink', 'support01', 'support02', 'support03', 'support04', 'inverseSupport01', 'inverseSupport02', 'inverseSupport03', 'inverseSupport04', 'overlay01']
|
|
1169
1179
|
}, {
|
|
1170
1180
|
type: 'interactive',
|
|
1171
|
-
tokens: ['focus', 'inverseFocusUi', 'hoverPrimary', 'hoverPrimaryText', 'hoverSecondary', 'hoverTertiary', 'hoverUI', 'hoverSelectedUI', 'hoverDanger', 'hoverRow', 'activePrimary', 'activeSecondary', 'activeTertiary', 'activeUI', 'activeDanger', 'selectedUI', 'selectedLightUI', 'highlight', 'skeleton01', 'skeleton02', 'visitedLink', 'disabled01', 'disabled02', 'disabled03', 'inverseHoverUI', 'active01', 'hoverField', 'decorative01', 'hoverLightUI']
|
|
1181
|
+
tokens: ['focus', 'inverseFocusUi', 'hoverPrimary', 'hoverPrimaryText', 'hoverSecondary', 'hoverTertiary', 'hoverUI', 'hoverSelectedUI', 'hoverDanger', 'hoverRow', 'activePrimary', 'activeSecondary', 'activeTertiary', 'activeUI', 'activeDanger', 'selectedUI', 'selectedLightUI', 'highlight', 'skeleton01', 'skeleton02', 'visitedLink', 'disabled01', 'disabled02', 'disabled03', 'inverseHoverUI', 'active01', 'hoverField', 'decorative01', 'hoverLightUI', 'buttonSeparator']
|
|
1172
1182
|
}],
|
|
1173
1183
|
deprecated: ['brand01', 'brand02', 'brand03', 'active01']
|
|
1174
1184
|
};
|
|
@@ -1187,4 +1197,4 @@ var themes = {
|
|
|
1187
1197
|
v9: v9
|
|
1188
1198
|
};
|
|
1189
1199
|
|
|
1190
|
-
export { g10, g90, g100, white$1 as white, v9, tokens, formatTokenName, unstable__meta, themes, interactive01, interactive02, interactive03, interactive04, uiBackground, ui01, ui02, ui03, ui04, ui05, text01, text02, text03, text04, text05, textError, icon01, icon02, icon03, link01, inverseLink, field01, field02, inverse01, inverse02, support01, support02, support03, support04, inverseSupport01, inverseSupport02, inverseSupport03, inverseSupport04, overlay01, danger, focus, inverseFocusUi, hoverPrimary, activePrimary, hoverPrimaryText, hoverSecondary, activeSecondary, hoverTertiary, activeTertiary, hoverUI, activeUI, selectedUI, selectedLightUI, inverseHoverUI, hoverSelectedUI, hoverDanger, activeDanger, hoverRow, visitedLink, disabled01, disabled02, disabled03, highlight, decorative01, hoverLightUI, skeleton01, skeleton02, brand01, brand02, brand03, active01, hoverField };
|
|
1200
|
+
export { g10, g90, g100, white$1 as white, v9, tokens, formatTokenName, unstable__meta, themes, interactive01, interactive02, interactive03, interactive04, uiBackground, ui01, ui02, ui03, ui04, ui05, text01, text02, text03, text04, text05, textError, icon01, icon02, icon03, link01, inverseLink, field01, field02, inverse01, inverse02, support01, support02, support03, support04, inverseSupport01, inverseSupport02, inverseSupport03, inverseSupport04, overlay01, danger, focus, inverseFocusUi, hoverPrimary, activePrimary, hoverPrimaryText, hoverSecondary, activeSecondary, hoverTertiary, activeTertiary, hoverUI, activeUI, selectedUI, selectedLightUI, inverseHoverUI, hoverSelectedUI, hoverDanger, activeDanger, hoverRow, visitedLink, disabled01, disabled02, disabled03, highlight, decorative01, hoverLightUI, buttonSeparator, skeleton01, skeleton02, brand01, brand02, brand03, active01, hoverField };
|