@madgex/design-system 6.3.3 → 6.3.5

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 (44) hide show
  1. package/dist/_tokens/css/_tokens.css +2 -3
  2. package/dist/_tokens/js/_tokens-module.js +13 -72
  3. package/dist/assets/icons.json +1 -1
  4. package/dist/css/index.css +1 -1
  5. package/dist/js/index.js +1 -1
  6. package/package.json +2 -2
  7. package/src/components/button/button.scss +21 -20
  8. package/src/components/card/README.md +1 -1
  9. package/src/components/card/card.scss +12 -12
  10. package/src/components/icons/README.md +3 -3
  11. package/src/components/icons/icons.scss +7 -7
  12. package/src/components/inputs/_form-elements.scss +44 -44
  13. package/src/components/inputs/checkbox-pill/checkbox-pill.scss +14 -11
  14. package/src/components/inputs/combobox/combobox.scss +14 -14
  15. package/src/components/inputs/file-upload/file-upload.scss +14 -14
  16. package/src/components/inputs/input-number/input-number.scss +8 -8
  17. package/src/components/inputs/text-editor/text-editor.scss +19 -19
  18. package/src/components/modal/modal.scss +4 -4
  19. package/src/components/notification/notification.scss +1 -1
  20. package/src/components/pagination/pagination.scss +8 -8
  21. package/src/components/popover/popover.scss +14 -13
  22. package/src/components/section-title/section-title.scss +1 -1
  23. package/src/components/skip-link/skip-link.scss +4 -4
  24. package/src/components/tabs/tabs.scss +20 -20
  25. package/src/components/toggle-button-links/toggle-button-links.scss +16 -22
  26. package/src/helpers/spacing/README.md +2 -2
  27. package/src/layout/grid/README.md +4 -4
  28. package/src/scss/constants/_sd-tokens.scss +53 -57
  29. package/src/scss/constants/_vars.scss +12 -2
  30. package/src/scss/core/_containers.scss +25 -21
  31. package/src/scss/core/_defaults.scss +4 -4
  32. package/src/scss/core/_grid.scss +20 -20
  33. package/src/scss/core/_lists.scss +12 -12
  34. package/src/scss/core/_message.scss +13 -13
  35. package/src/scss/functions/_media-queries.scss +4 -4
  36. package/src/scss/helpers/_borders.scss +6 -5
  37. package/src/scss/helpers/_edited-text.scss +5 -5
  38. package/src/scss/helpers/_font-types.scss +3 -3
  39. package/src/scss/helpers/_spacing.scss +24 -24
  40. package/src/tokens/_config.js +1 -1
  41. package/src/tokens/_constants.json +0 -8
  42. package/src/tokens/color.json +4 -4
  43. package/src/tokens/custom.json +1 -1
  44. package/src/tokens/effects.json +0 -3
@@ -6,13 +6,13 @@
6
6
  flex: 0 1 auto;
7
7
  flex-direction: row;
8
8
  flex-wrap: wrap;
9
- margin-right: $scss-var-size-half-gutter-width * -1;
10
- margin-left: $scss-var-size-half-gutter-width * -1;
9
+ margin-right: $constant-size-half-gutter-width * -1;
10
+ margin-left: $constant-size-half-gutter-width * -1;
11
11
  }
12
12
 
13
13
  .mds-grid-row.mds-grid-small {
14
- margin-right: $scss-var-size-quarter-gutter-width * -1;
15
- margin-left: $scss-var-size-quarter-gutter-width * -1;
14
+ margin-right: $constant-size-quarter-gutter-width * -1;
15
+ margin-left: $constant-size-quarter-gutter-width * -1;
16
16
  }
17
17
 
18
18
  .mds-grid-row.mds-grid-reverse {
@@ -51,12 +51,12 @@
51
51
  .mds-grid-col-offset-12 {
52
52
  box-sizing: border-box;
53
53
  flex: 0 0 auto;
54
- padding-right: $scss-var-size-half-gutter-width;
55
- padding-left: $scss-var-size-half-gutter-width;
54
+ padding-right: $constant-size-half-gutter-width;
55
+ padding-left: $constant-size-half-gutter-width;
56
56
 
57
57
  .mds-grid-small & {
58
- padding-right: $scss-var-size-quarter-gutter-width;
59
- padding-left: $scss-var-size-quarter-gutter-width;
58
+ padding-right: $constant-size-quarter-gutter-width;
59
+ padding-left: $constant-size-quarter-gutter-width;
60
60
  }
61
61
  }
62
62
 
@@ -222,7 +222,7 @@
222
222
  flex-basis: auto;
223
223
  }
224
224
 
225
- @media only screen and (min-width: $scss-var-size-breakpoint-sm) {
225
+ @media only screen and (min-width: $constant-size-breakpoint-sm) {
226
226
  .mds-grid-col-sm,
227
227
  .mds-grid-col-sm-1,
228
228
  .mds-grid-col-sm-2,
@@ -251,8 +251,8 @@
251
251
  .mds-grid-col-sm-offset-12 {
252
252
  box-sizing: border-box;
253
253
  flex: 0 0 auto;
254
- padding-right: $scss-var-size-half-gutter-width;
255
- padding-left: $scss-var-size-half-gutter-width;
254
+ padding-right: $constant-size-half-gutter-width;
255
+ padding-left: $constant-size-half-gutter-width;
256
256
  }
257
257
 
258
258
  .mds-grid-col-sm {
@@ -417,7 +417,7 @@
417
417
  }
418
418
  }
419
419
 
420
- @media only screen and (min-width: $scss-var-size-breakpoint-md) {
420
+ @media only screen and (min-width: $constant-size-breakpoint-md) {
421
421
  .mds-grid-col-md,
422
422
  .mds-grid-col-md-1,
423
423
  .mds-grid-col-md-2,
@@ -446,8 +446,8 @@
446
446
  .mds-grid-col-md-offset-12 {
447
447
  box-sizing: border-box;
448
448
  flex: 0 0 auto;
449
- padding-right: $scss-var-size-half-gutter-width;
450
- padding-left: $scss-var-size-half-gutter-width;
449
+ padding-right: $constant-size-half-gutter-width;
450
+ padding-left: $constant-size-half-gutter-width;
451
451
  }
452
452
 
453
453
  .mds-grid-col-md {
@@ -613,7 +613,7 @@
613
613
  }
614
614
  }
615
615
 
616
- @media only screen and (min-width: $scss-var-size-breakpoint-lg) {
616
+ @media only screen and (min-width: $constant-size-breakpoint-lg) {
617
617
  .mds-grid-col-lg,
618
618
  .mds-grid-col-lg-1,
619
619
  .mds-grid-col-lg-2,
@@ -642,8 +642,8 @@
642
642
  .mds-grid-col-lg-offset-12 {
643
643
  box-sizing: border-box;
644
644
  flex: 0 0 auto;
645
- padding-right: $scss-var-size-half-gutter-width;
646
- padding-left: $scss-var-size-half-gutter-width;
645
+ padding-right: $constant-size-half-gutter-width;
646
+ padding-left: $constant-size-half-gutter-width;
647
647
  }
648
648
 
649
649
  .mds-grid-col-lg {
@@ -809,7 +809,7 @@
809
809
  }
810
810
  }
811
811
 
812
- @media only screen and (min-width: $scss-var-size-breakpoint-xl) {
812
+ @media only screen and (min-width: $constant-size-breakpoint-xl) {
813
813
  .mds-grid-col-xl,
814
814
  .mds-grid-col-xl-1,
815
815
  .mds-grid-col-xl-2,
@@ -838,8 +838,8 @@
838
838
  .mds-grid-col-xl-offset-12 {
839
839
  box-sizing: border-box;
840
840
  flex: 0 0 auto;
841
- padding-right: $scss-var-size-half-gutter-width;
842
- padding-left: $scss-var-size-half-gutter-width;
841
+ padding-right: $constant-size-half-gutter-width;
842
+ padding-left: $constant-size-half-gutter-width;
843
843
  }
844
844
 
845
845
  .mds-grid-col-xl {
@@ -1,12 +1,12 @@
1
1
  .mds-list {
2
- margin: 0 0 ($scss-var-size-baseline * 5) 0;
2
+ margin: 0 0 ($constant-size-baseline * 5) 0;
3
3
  padding: 0;
4
4
  list-style-type: none;
5
5
  list-style-position: inside;
6
6
  }
7
7
  .mds-list__item {
8
- margin-bottom: $scss-var-size-baseline;
9
- margin-left: $scss-var-size-baseline * 4;
8
+ margin-bottom: $constant-size-baseline;
9
+ margin-left: $constant-size-baseline * 4;
10
10
 
11
11
  &:last-child {
12
12
  margin-bottom: 0;
@@ -14,7 +14,7 @@
14
14
  }
15
15
  .mds-list--bullet,
16
16
  .mds-list--number {
17
- margin-left: ($scss-var-size-baseline * 3);
17
+ margin-left: ($constant-size-baseline * 3);
18
18
  }
19
19
 
20
20
  .mds-list--bullet {
@@ -26,8 +26,8 @@
26
26
  }
27
27
 
28
28
  .mds-list--border {
29
- border-left: 5px solid $scss-var-color-neutral-lightest;
30
- padding-left: $scss-var-size-baseline * 5;
29
+ border-left: 5px solid $constant-color-neutral-lightest;
30
+ padding-left: $constant-size-baseline * 5;
31
31
  margin-left: 0;
32
32
  }
33
33
 
@@ -38,10 +38,10 @@
38
38
  .mds-list__key {
39
39
  @extend .mds-font-brevier;
40
40
  font-weight: bold;
41
- margin-bottom: $scss-var-size-baseline;
41
+ margin-bottom: $constant-size-baseline;
42
42
  }
43
43
  .mds-list__value {
44
- margin-bottom: $scss-var-size-baseline * 3;
44
+ margin-bottom: $constant-size-baseline * 3;
45
45
 
46
46
  &:last-child {
47
47
  margin-bottom: 0;
@@ -54,15 +54,15 @@
54
54
  display: inline-block;
55
55
  margin-bottom: 0;
56
56
  margin-left: 0;
57
- margin-right: $scss-var-size-baseline * 2;
57
+ margin-right: $constant-size-baseline * 2;
58
58
  }
59
59
  .mds-list--pipe .mds-list__item:not(:last-child) {
60
- border-right: 1px solid $scss-var-color-neutral-light;
61
- padding-right: $scss-var-size-baseline * 3;
60
+ border-right: 1px solid $constant-color-neutral-light;
61
+ padding-right: $constant-size-baseline * 3;
62
62
  }
63
63
 
64
64
  .mds-list--multilevel .mds-list {
65
- margin: ($scss-var-size-baseline * 2) 0 0 0;
65
+ margin: ($constant-size-baseline * 2) 0 0 0;
66
66
  }
67
67
 
68
68
  .mds-list--noindent {
@@ -1,24 +1,24 @@
1
1
  .mds-message {
2
- @extend .mds-padding-b3;
3
- @extend .mds-border-radius;
4
- @extend .mds-border;
2
+ padding: $constant-size-baseline * 3;
3
+ border-radius: $border-radius;
4
+ border: $regular-border;
5
5
 
6
6
  &.mds-message--error {
7
- color: $scss-var-color-status-error-darkest;
8
- background-color: $scss-var-color-status-error-lightest;
9
- border-color: $scss-var-color-status-error-base;
7
+ color: $constant-color-status-error-darkest;
8
+ background-color: $constant-color-status-error-lightest;
9
+ border-color: $constant-color-status-error-base;
10
10
  }
11
11
 
12
12
  &.mds-message--success {
13
- color: $scss-var-color-status-success-darkest;
14
- background-color: $scss-var-color-status-success-lightest;
15
- border-color: $scss-var-color-status-success-base;
13
+ color: $constant-color-status-success-darkest;
14
+ background-color: $constant-color-status-success-lightest;
15
+ border-color: $constant-color-status-success-base;
16
16
  }
17
17
 
18
18
  &.mds-message--info {
19
- color: $scss-var-color-status-info-darkest;
20
- background-color: $scss-var-color-status-info-lightest;
21
- border-color: $scss-var-color-status-info-base;
19
+ color: $constant-color-status-info-darkest;
20
+ background-color: $constant-color-status-info-lightest;
21
+ border-color: $constant-color-status-info-base;
22
22
  }
23
23
 
24
24
  & * {
@@ -32,7 +32,7 @@
32
32
  & .mds-message__summary {
33
33
  margin-bottom: 0;
34
34
  & li:not(:last-child) {
35
- @extend .mds-margin-bottom-b3;
35
+ margin-bottom: $constant-size-baseline * 3;
36
36
  }
37
37
  }
38
38
  }
@@ -1,9 +1,9 @@
1
1
  // Pass our breakpoints and static breakpoint definitions through to sass-mq.
2
2
  $mq-breakpoints: (
3
- sm: $scss-var-size-breakpoint-sm,
4
- md: $scss-var-size-breakpoint-md,
5
- lg: $scss-var-size-breakpoint-lg,
6
- xl: $scss-var-size-breakpoint-xl,
3
+ sm: $constant-size-breakpoint-sm,
4
+ md: $constant-size-breakpoint-md,
5
+ lg: $constant-size-breakpoint-lg,
6
+ xl: $constant-size-breakpoint-xl,
7
7
  ) !default;
8
8
 
9
9
  // This is a horrible, horrible hack to prevent the 'dev mode' CSS to display
@@ -1,8 +1,9 @@
1
1
  $positions: top, right, bottom, left;
2
2
  $corners: top-left, top-right, bottom-right, bottom-left;
3
3
 
4
+
4
5
  .mds-border {
5
- border: var(--mds-size-border-width-base) solid var(--mds-color-border);
6
+ border: $regular-border;
6
7
  }
7
8
 
8
9
  .mds-border-none {
@@ -12,7 +13,7 @@ $corners: top-left, top-right, bottom-right, bottom-left;
12
13
  @each $bpname, $value in $breakpoints {
13
14
  @include mq($from: $bpname) {
14
15
  .mds-border-#{$bpname} {
15
- border: var(--mds-size-border-width-base) solid var(--mds-color-border);
16
+ border: $regular-border;
16
17
  }
17
18
  }
18
19
  }
@@ -27,7 +28,7 @@ $corners: top-left, top-right, bottom-right, bottom-left;
27
28
 
28
29
  @each $position in $positions {
29
30
  .mds-border-#{$position} {
30
- border-#{$position}: var(--mds-size-border-width-base) solid var(--mds-color-border);
31
+ border-#{$position}: $regular-border;
31
32
  }
32
33
  }
33
34
 
@@ -41,7 +42,7 @@ $corners: top-left, top-right, bottom-right, bottom-left;
41
42
  @include mq($from: $bpname) {
42
43
  @each $position in $positions {
43
44
  .mds-border-#{$bpname}-#{$position} {
44
- border-#{$position}: var(--mds-size-border-width-base) solid var(--mds-color-border);
45
+ border-#{$position}: $regular-border;
45
46
  }
46
47
  }
47
48
  }
@@ -59,7 +60,7 @@ $corners: top-left, top-right, bottom-right, bottom-left;
59
60
 
60
61
  // border radius
61
62
  .mds-border-radius {
62
- border-radius: var(--mds-size-border-radius-base);
63
+ border-radius: $border-radius;
63
64
  }
64
65
 
65
66
  .mds-border-radius-none {
@@ -1,12 +1,12 @@
1
1
  .mds-edited-text {
2
2
  & ul,
3
3
  & ol {
4
- margin: 0 0 ($scss-var-size-baseline * 5) ($scss-var-size-baseline * 3);
4
+ margin: 0 0 ($constant-size-baseline * 5) ($constant-size-baseline * 3);
5
5
  padding: 0;
6
6
  list-style-position: outside;
7
7
  & ul,
8
8
  & ol {
9
- margin: ($scss-var-size-baseline * 2) 0 0 0;
9
+ margin: ($constant-size-baseline * 2) 0 0 0;
10
10
  }
11
11
  }
12
12
  & ul {
@@ -16,14 +16,14 @@
16
16
  list-style-type: decimal;
17
17
  }
18
18
  & li {
19
- margin-bottom: $scss-var-size-baseline;
20
- margin-left: $scss-var-size-baseline * 4;
19
+ margin-bottom: $constant-size-baseline;
20
+ margin-left: $constant-size-baseline * 4;
21
21
  }
22
22
  }
23
23
  .mds-edited-text.mds-font-body-copy-bulk,
24
24
  .mds-font-body-copy-bulk .mds-edited-text,
25
25
  .mds-edited-text .mds-font-body-copy-bulk {
26
26
  & p {
27
- margin-bottom: $scss-var-size-baseline * 4;
27
+ margin-bottom: $constant-size-baseline * 4;
28
28
  }
29
29
  }
@@ -9,15 +9,15 @@ $breakpoint-names: map-keys(map-remove($breakpoints, 'xl'));
9
9
  // .mds-font-canon{
10
10
  // font-size: 28px;
11
11
  // line-height: 1.15;
12
- // @media (min-width: $scss-var-size-breakpoint-sm){
12
+ // @media (min-width: $constant-size-breakpoint-sm){
13
13
  // font-size: 32px;
14
14
  // line-height: 1.13;
15
15
  // }
16
- // @media (min-width: $scss-var-size-breakpoint-md){
16
+ // @media (min-width: $constant-size-breakpoint-md){
17
17
  // font-size: 52px;
18
18
  // line-height: 1.08;
19
19
  // }
20
- // @media (min-width: $scss-var-size-breakpoint-lg){
20
+ // @media (min-width: $constant-size-breakpoint-lg){
21
21
  // font-size: 44px;
22
22
  // line-height: 1.1;
23
23
  // }
@@ -5,10 +5,10 @@ $positions: top, right, bottom, left;
5
5
 
6
6
  @for $i from 0 through 10 {
7
7
  .mds-padding-b#{$i} {
8
- padding: $scss-var-size-baseline * $i;
8
+ padding: $constant-size-baseline * $i;
9
9
  }
10
10
  .mds-margin-b#{$i} {
11
- margin: $scss-var-size-baseline * $i;
11
+ margin: $constant-size-baseline * $i;
12
12
  }
13
13
  }
14
14
 
@@ -16,10 +16,10 @@ $positions: top, right, bottom, left;
16
16
  @each $bpname, $value in $breakpoints {
17
17
  @include mq($from: $bpname) {
18
18
  .mds-padding-#{$bpname}-b#{$i} {
19
- padding: $scss-var-size-baseline * $i;
19
+ padding: $constant-size-baseline * $i;
20
20
  }
21
21
  .mds-margin-#{$bpname}-b#{$i} {
22
- margin: $scss-var-size-baseline * $i;
22
+ margin: $constant-size-baseline * $i;
23
23
  }
24
24
  }
25
25
  }
@@ -28,28 +28,28 @@ $positions: top, right, bottom, left;
28
28
  @for $i from 0 through 10 {
29
29
  @each $position in $positions {
30
30
  .mds-padding-#{$position}-b#{$i} {
31
- padding-#{$position}: $scss-var-size-baseline * $i;
31
+ padding-#{$position}: $constant-size-baseline * $i;
32
32
  }
33
33
  .mds-margin-#{$position}-b#{$i} {
34
- margin-#{$position}: $scss-var-size-baseline * $i;
34
+ margin-#{$position}: $constant-size-baseline * $i;
35
35
  }
36
36
  }
37
37
  .mds-padding-x-b#{$i} {
38
- padding-left: $scss-var-size-baseline * $i;
39
- padding-right: $scss-var-size-baseline * $i;
38
+ padding-left: $constant-size-baseline * $i;
39
+ padding-right: $constant-size-baseline * $i;
40
40
  }
41
41
  .mds-padding-y-b#{$i} {
42
- padding-top: $scss-var-size-baseline * $i;
43
- padding-bottom: $scss-var-size-baseline * $i;
42
+ padding-top: $constant-size-baseline * $i;
43
+ padding-bottom: $constant-size-baseline * $i;
44
44
  }
45
45
 
46
46
  .mds-margin-x-b#{$i} {
47
- margin-left: $scss-var-size-baseline * $i;
48
- margin-right: $scss-var-size-baseline * $i;
47
+ margin-left: $constant-size-baseline * $i;
48
+ margin-right: $constant-size-baseline * $i;
49
49
  }
50
50
  .mds-margin-y-b#{$i} {
51
- margin-top: $scss-var-size-baseline * $i;
52
- margin-bottom: $scss-var-size-baseline * $i;
51
+ margin-top: $constant-size-baseline * $i;
52
+ margin-bottom: $constant-size-baseline * $i;
53
53
  }
54
54
  }
55
55
 
@@ -58,10 +58,10 @@ $positions: top, right, bottom, left;
58
58
  @each $bpname, $value in $breakpoints {
59
59
  @include mq($from: $bpname) {
60
60
  .mds-padding-#{$position}-#{$bpname}-b#{$i} {
61
- padding-#{$position}: $scss-var-size-baseline * $i;
61
+ padding-#{$position}: $constant-size-baseline * $i;
62
62
  }
63
63
  .mds-margin-#{$position}-#{$bpname}-b#{$i} {
64
- margin-#{$position}: $scss-var-size-baseline * $i;
64
+ margin-#{$position}: $constant-size-baseline * $i;
65
65
  }
66
66
  }
67
67
  }
@@ -69,21 +69,21 @@ $positions: top, right, bottom, left;
69
69
  @each $bpname, $value in $breakpoints {
70
70
  @include mq($from: $bpname) {
71
71
  .mds-padding-x-#{$bpname}-b#{$i} {
72
- padding-left: $scss-var-size-baseline * $i;
73
- padding-right: $scss-var-size-baseline * $i;
72
+ padding-left: $constant-size-baseline * $i;
73
+ padding-right: $constant-size-baseline * $i;
74
74
  }
75
75
  .mds-padding-y-#{$bpname}-b#{$i} {
76
- padding-top: $scss-var-size-baseline * $i;
77
- padding-bottom: $scss-var-size-baseline * $i;
76
+ padding-top: $constant-size-baseline * $i;
77
+ padding-bottom: $constant-size-baseline * $i;
78
78
  }
79
79
 
80
80
  .mds-margin-x-#{$bpname}-b#{$i} {
81
- margin-left: $scss-var-size-baseline * $i;
82
- margin-right: $scss-var-size-baseline * $i;
81
+ margin-left: $constant-size-baseline * $i;
82
+ margin-right: $constant-size-baseline * $i;
83
83
  }
84
84
  .mds-margin-y-#{$bpname}-b#{$i} {
85
- margin-top: $scss-var-size-baseline * $i;
86
- margin-bottom: $scss-var-size-baseline * $i;
85
+ margin-top: $constant-size-baseline * $i;
86
+ margin-bottom: $constant-size-baseline * $i;
87
87
  }
88
88
  }
89
89
  }
@@ -28,7 +28,7 @@ const config = {
28
28
  'scss-variables': {
29
29
  transforms: ['attribute/cti', 'name/cti/kebab'],
30
30
  buildPath: `${path.resolve(__dirname, '../scss/constants/')}/`,
31
- prefix: 'scss-var',
31
+ prefix: 'constant',
32
32
  files: [
33
33
  {
34
34
  destination: '_sd-tokens.scss',
@@ -1,14 +1,6 @@
1
1
  {
2
2
  "color": {
3
3
  "neutral": {
4
- "white": {
5
- "value" : "#FFFFFF",
6
- "private": true
7
- },
8
- "black": {
9
- "value" : "#000000",
10
- "private": true
11
- },
12
4
  "base": {
13
5
  "value" : "#707070",
14
6
  "private": true
@@ -55,13 +55,13 @@
55
55
  },
56
56
  "background": {
57
57
  "body": {
58
- "value" : "{color.neutral.white.value}"
58
+ "value" : "#fff"
59
59
  },
60
60
  "site-container": {
61
61
  "value" : "{color.neutral.lightest.value}"
62
62
  },
63
63
  "surface": {
64
- "value" : "{color.neutral.white.value}"
64
+ "value" : "#fff"
65
65
  },
66
66
  "main": {
67
67
  "value" : "rgba(0,0,0,0)"
@@ -72,7 +72,7 @@
72
72
  "value" : "#343433"
73
73
  },
74
74
  "invert": {
75
- "value" : "{color.neutral.white.value}"
75
+ "value" : "#fff"
76
76
  },
77
77
  "headers": {
78
78
  "1": {
@@ -189,7 +189,7 @@
189
189
  },
190
190
  "input": {
191
191
  "checked": {
192
- "value" : "{color.neutral.black.value}"
192
+ "value" : "#000"
193
193
  },
194
194
  "border": {
195
195
  "value" : "{color.neutral.base.value}"
@@ -3,7 +3,7 @@
3
3
  "badge": {
4
4
  "1": {
5
5
  "background": {
6
- "value" : "{color.neutral.black.value}"
6
+ "value" : "#000"
7
7
  },
8
8
  "color": {
9
9
  "value" : "#fff"
@@ -1,8 +1,5 @@
1
1
  {
2
2
  "shadow": {
3
- "base": {
4
- "value" : "0 2px 5px 0 {color.neutral.lighter.value}"
5
- },
6
3
  "site-container": {
7
4
  "value": "none"
8
5
  },