@abgov/design-tokens 1.4.3 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/data/component-design-tokens/accordion-design-tokens.json +6 -4
  2. package/data/component-design-tokens/badge-design-tokens.json +96 -0
  3. package/data/component-design-tokens/button-design-tokens.json +326 -8
  4. package/data/component-design-tokens/button-group-design-tokens.json +12 -0
  5. package/data/component-design-tokens/checkbox-design-tokens.json +99 -0
  6. package/data/component-design-tokens/container-design-tokens.json +146 -0
  7. package/data/component-design-tokens/date-picker-design-tokens.json +102 -0
  8. package/data/component-design-tokens/details-design-tokens.json +84 -0
  9. package/data/component-design-tokens/divider-design-tokens.json +6 -0
  10. package/data/component-design-tokens/drawer-design-tokens.json +4 -11
  11. package/data/component-design-tokens/dropdown-design-tokens.json +110 -0
  12. package/data/component-design-tokens/file-uploader-design-tokens.json +102 -0
  13. package/data/component-design-tokens/footer-design-tokens.json +74 -0
  14. package/data/component-design-tokens/form-item-design-tokens.json +46 -0
  15. package/data/component-design-tokens/form-stepper-design-tokens.json +98 -0
  16. package/data/component-design-tokens/header-design-tokens.json +230 -0
  17. package/data/component-design-tokens/hero-banner-design-tokens.json +22 -0
  18. package/data/component-design-tokens/icon-button-design-tokens.json +74 -0
  19. package/data/component-design-tokens/input-design-tokens.json +90 -0
  20. package/data/component-design-tokens/microsite-header-design-tokens.json +66 -0
  21. package/data/component-design-tokens/modal-design-tokens.json +53 -0
  22. package/data/component-design-tokens/notification-banner-design-tokens.json +90 -0
  23. package/data/component-design-tokens/popover-design-tokens.json +26 -0
  24. package/data/component-design-tokens/progress-indicator-design-tokens.json +22 -0
  25. package/data/component-design-tokens/radio-design-tokens.json +138 -0
  26. package/data/component-design-tokens/scrollable-design-tokens.json +12 -0
  27. package/data/component-design-tokens/side-menu-design-tokens.json +174 -17
  28. package/data/component-design-tokens/skeleton-loading-design-tokens.json +6 -0
  29. package/data/component-design-tokens/table-design-tokens.json +4 -0
  30. package/data/component-design-tokens/tabs-design-tokens.json +78 -0
  31. package/data/component-design-tokens/text-area-design-tokens.json +67 -0
  32. package/data/component-design-tokens/tooltip-design-tokens.json +38 -0
  33. package/data/goa-global-design-tokens.json +63 -26
  34. package/dist/tokens.css +544 -18
  35. package/dist/tokens.scss +544 -18
  36. package/package.json +1 -1
@@ -0,0 +1,46 @@
1
+ {
2
+ "form-item-error-message-color": {
3
+ "value": "{color.interactive.error}",
4
+ "type": "color"
5
+ },
6
+ "form-item-help-message-color": {
7
+ "value": "{color.text.default}",
8
+ "type": "color"
9
+ },
10
+ "form-item-label-large-padding-bottom": {
11
+ "value": "{space.m}",
12
+ "type": "spacing"
13
+ },
14
+ "form-item-label-large-typography": {
15
+ "value": "{typography.heading.l}",
16
+ "type": "other"
17
+ },
18
+ "form-item-label-padding-bottom": {
19
+ "value": "{space.s}",
20
+ "type": "spacing"
21
+ },
22
+ "form-item-label-typography": {
23
+ "value": "{typography.heading.s}",
24
+ "type": "other"
25
+ },
26
+ "form-item-message-gap": {
27
+ "value": "{space.2xs}",
28
+ "type": "spacing"
29
+ },
30
+ "form-item-message-margin-top": {
31
+ "value": "{space.s}",
32
+ "type": "spacing"
33
+ },
34
+ "form-item-message-typography": {
35
+ "value": "{typography.body.xs}",
36
+ "type": "other"
37
+ },
38
+ "form-item-optional-label-color": {
39
+ "value": "{color.greyscale.700}",
40
+ "type": "color"
41
+ },
42
+ "form-item-optional-label-typography": {
43
+ "value": "{typography.body.xs}",
44
+ "type": "other"
45
+ }
46
+ }
@@ -0,0 +1,98 @@
1
+ {
2
+ "step-border": {
3
+ "value": {
4
+ "width": "{borderWidth.xl}",
5
+ "style": "solid",
6
+ "color": "{step-color-border-active}"
7
+ },
8
+ "type": "border"
9
+ },
10
+ "step-color-bg": {
11
+ "value": "{color.greyscale.white}",
12
+ "type": "color"
13
+ },
14
+ "step-color-bg-active": {
15
+ "value": "{color.greyscale.white}",
16
+ "type": "color"
17
+ },
18
+ "step-color-bg-complete": {
19
+ "value": "{color.interactive.default}",
20
+ "type": "color"
21
+ },
22
+ "step-color-bg-incomplete": {
23
+ "value": "{color.greyscale.white}",
24
+ "type": "color"
25
+ },
26
+ "step-color-border": {
27
+ "value": "{color.greyscale.400}",
28
+ "type": "color"
29
+ },
30
+ "step-color-border-active": {
31
+ "value": "{color.interactive.default}",
32
+ "type": "color"
33
+ },
34
+ "step-color-border-complete": {
35
+ "value": "{color.interactive.default}",
36
+ "type": "color"
37
+ },
38
+ "step-color-border-incomplete": {
39
+ "value": "{color.interactive.default}",
40
+ "type": "color"
41
+ },
42
+ "step-color-label": {
43
+ "value": "{color.text.default}",
44
+ "type": "color"
45
+ },
46
+ "step-color-step-number": {
47
+ "value": "{color.text.secondary}",
48
+ "type": "color"
49
+ },
50
+ "step-color-sublabel": {
51
+ "value": "{color.text.secondary}",
52
+ "type": "color"
53
+ },
54
+ "step-gap-small-screen": {
55
+ "value": "0px",
56
+ "type": "spacing"
57
+ },
58
+ "step-padding": {
59
+ "value": "{space.l}",
60
+ "type": "spacing"
61
+ },
62
+ "step-padding-vertical": {
63
+ "value": "{space.2xs} {space.l}",
64
+ "type": "spacing"
65
+ },
66
+ "step-size": {
67
+ "value": "2.5rem",
68
+ "type": "sizing"
69
+ },
70
+ "step-typography-label": {
71
+ "value": "{typography.body.s}",
72
+ "type": "other"
73
+ },
74
+ "step-typography-label-active": {
75
+ "value": "{typography.heading.xs}",
76
+ "type": "other"
77
+ },
78
+ "step-typography-step-number": {
79
+ "value": "{typography.heading.xs}",
80
+ "type": "other"
81
+ },
82
+ "step-typography-sublabel": {
83
+ "value": "{typography.body.xs}",
84
+ "type": "other"
85
+ },
86
+ "stepper-color-line": {
87
+ "value": "{color.greyscale.200}",
88
+ "type": "color"
89
+ },
90
+ "stepper-color-line-active": {
91
+ "value": "{color.interactive.default}",
92
+ "type": "color"
93
+ },
94
+ "stepper-line-thickness": {
95
+ "value": "4px",
96
+ "type": "sizing"
97
+ }
98
+ }
@@ -0,0 +1,230 @@
1
+ {
2
+ "app-header-border-bottom": {
3
+ "value": {
4
+ "width": "{borderWidth.s}",
5
+ "style": "solid",
6
+ "color": "{color.greyscale.200}"
7
+ },
8
+ "type": "border"
9
+ },
10
+ "app-header-border-bottom-menu-item": {
11
+ "value": "inset 0 -1px 0 0 {color.greyscale.200}",
12
+ "type": "other"
13
+ },
14
+ "app-header-border-focus": {
15
+ "value": {
16
+ "width": "{borderWidth.l}",
17
+ "style": "solid",
18
+ "color": "{color.interactive.focus}"
19
+ },
20
+ "type": "border"
21
+ },
22
+ "app-header-border-nav-item-current": {
23
+ "value": {
24
+ "width": "{space.2xs}",
25
+ "style": "solid",
26
+ "color": "{color.interactive.default}"
27
+ },
28
+ "type": "border"
29
+ },
30
+ "app-header-border-nav-item-current-focus": {
31
+ "value": {
32
+ "width": "{space.2xs}",
33
+ "style": "solid",
34
+ "color": "{color.interactive.hover}"
35
+ },
36
+ "type": "border"
37
+ },
38
+ "app-header-border-nav-item-default": {
39
+ "value": {
40
+ "width": "{space.2xs}",
41
+ "style": "solid",
42
+ "color": "transparent"
43
+ },
44
+ "type": "border"
45
+ },
46
+ "app-header-border-nav-item-focus": {
47
+ "value": {
48
+ "width": "{space.2xs}",
49
+ "style": "solid",
50
+ "color": "{color.interactive.hover}"
51
+ },
52
+ "type": "border"
53
+ },
54
+ "app-header-border-nav-item-hover": {
55
+ "value": {
56
+ "width": "{space.2xs}",
57
+ "style": "solid",
58
+ "color": "{color.interactive.hover}"
59
+ },
60
+ "type": "border"
61
+ },
62
+ "app-header-border-top-menu-item": {
63
+ "value": "inset 0 1px 0 0 {color.greyscale.200}",
64
+ "type": "other"
65
+ },
66
+ "app-header-color-bg": {
67
+ "value": "{color.greyscale.white}",
68
+ "type": "color"
69
+ },
70
+ "app-header-color-bg-menu-button-focus": {
71
+ "value": "{color.greyscale.100}",
72
+ "type": "color"
73
+ },
74
+ "app-header-color-bg-menu-button-hover": {
75
+ "value": "{color.greyscale.100}",
76
+ "type": "color"
77
+ },
78
+ "app-header-color-bg-nav-item": {
79
+ "value": "{color.greyscale.white}",
80
+ "type": "color"
81
+ },
82
+ "app-header-color-bg-nav-item-current": {
83
+ "value": "{color.greyscale.white}",
84
+ "type": "color"
85
+ },
86
+ "app-header-color-bg-nav-item-focus": {
87
+ "value": "{color.greyscale.white}",
88
+ "type": "color"
89
+ },
90
+ "app-header-color-bg-nav-item-hover": {
91
+ "value": "{color.greyscale.white}",
92
+ "type": "color"
93
+ },
94
+ "app-header-color-bg-nav-item-in-menu-current": {
95
+ "value": "{color.interactive.default}",
96
+ "type": "color"
97
+ },
98
+ "app-header-color-bg-nav-item-in-menu-current-hover": {
99
+ "value": "{color.interactive.hover}",
100
+ "type": "color"
101
+ },
102
+ "app-header-color-menu-button": {
103
+ "value": "{color.text.default}",
104
+ "type": "color"
105
+ },
106
+ "app-header-color-menu-button-focus": {
107
+ "value": "{color.interactive.hover}",
108
+ "type": "color"
109
+ },
110
+ "app-header-color-menu-button-hover": {
111
+ "value": "{color.interactive.hover}",
112
+ "type": "color"
113
+ },
114
+ "app-header-color-service-name": {
115
+ "value": "{color.text.default}",
116
+ "type": "color"
117
+ },
118
+ "app-header-color-text-nav-item": {
119
+ "value": "{color.text.default}",
120
+ "type": "color"
121
+ },
122
+ "app-header-color-text-nav-item-current": {
123
+ "value": "{color.text.default}",
124
+ "type": "color"
125
+ },
126
+ "app-header-color-text-nav-item-focus": {
127
+ "value": "{color.interactive.hover}",
128
+ "type": "color"
129
+ },
130
+ "app-header-color-text-nav-item-hover": {
131
+ "value": "{color.interactive.hover}",
132
+ "type": "color"
133
+ },
134
+ "app-header-max-width-service-name": {
135
+ "value": "28rem",
136
+ "type": "dimension"
137
+ },
138
+ "app-header-min-width-service-name": {
139
+ "value": "8rem",
140
+ "type": "dimension"
141
+ },
142
+ "app-header-padding-desktop": {
143
+ "value": "{space.3xl}",
144
+ "type": "spacing"
145
+ },
146
+ "app-header-padding-link-item": {
147
+ "value": "{space.m}",
148
+ "type": "spacing"
149
+ },
150
+ "app-header-padding-logo": {
151
+ "value": "14px {space.xl} {space.m} 0px",
152
+ "type": "spacing"
153
+ },
154
+ "app-header-padding-logo-mobile": {
155
+ "value": "{space.s} {space.m}",
156
+ "type": "spacing"
157
+ },
158
+ "app-header-padding-menu-button": {
159
+ "value": "{space.m} {space.s}",
160
+ "type": "spacing"
161
+ },
162
+ "app-header-padding-mobile": {
163
+ "value": "{space.m}",
164
+ "type": "spacing"
165
+ },
166
+ "app-header-padding-nav-item": {
167
+ "value": "{space.m} {space.s}",
168
+ "type": "spacing"
169
+ },
170
+ "app-header-padding-nav-item-with-children": {
171
+ "value": "{space.m} {space.s} {space.s}",
172
+ "type": "spacing"
173
+ },
174
+ "app-header-padding-nav-item-in-menu": {
175
+ "value": "9px {space.m}",
176
+ "type": "spacing"
177
+ },
178
+ "app-header-padding-secondary-nav-item-in-menu-mobile": {
179
+ "value": "9px {space.m} 9px 80px",
180
+ "type": "spacing"
181
+ },
182
+ "app-header-padding-secondary-nav-item-in-menu": {
183
+ "value": "9px {space.m} 9px {space.xl}",
184
+ "type": "spacing"
185
+ },
186
+ "app-header-padding-tablet": {
187
+ "value": "{space.xl}",
188
+ "type": "spacing"
189
+ },
190
+ "app-header-size-logo": {
191
+ "value": "{space.xl}",
192
+ "type": "sizing"
193
+ },
194
+ "app-header-size-logo-mobile": {
195
+ "value": "{space.l}",
196
+ "type": "sizing"
197
+ },
198
+ "app-header-space-btw-logo-service-name": {
199
+ "value": "{space.m}",
200
+ "type": "spacing"
201
+ },
202
+ "app-header-space-btw-logo-service-name-mobile": {
203
+ "value": "{space.xs}",
204
+ "type": "spacing"
205
+ },
206
+ "app-header-space-btw-service-name-nav-items-mobile": {
207
+ "value": "{space.l}",
208
+ "type": "spacing"
209
+ },
210
+ "app-header-typography-menu-button": {
211
+ "value": "{typography.body.m}",
212
+ "type": "other"
213
+ },
214
+ "app-header-typography-menu-button-mobile": {
215
+ "value": "{typography.body.s}",
216
+ "type": "other"
217
+ },
218
+ "app-header-typography-nav-item": {
219
+ "value": "{typography.heading.s}",
220
+ "type": "other"
221
+ },
222
+ "app-header-typography-service-name": {
223
+ "value": "{typography.body.m}",
224
+ "type": "other"
225
+ },
226
+ "app-header-typography-service-name-mobile": {
227
+ "value": "{typography.body.s}",
228
+ "type": "other"
229
+ }
230
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "hero-banner-padding": {
3
+ "value": "{space.2xl} 0",
4
+ "type": "spacing"
5
+ },
6
+ "hero-banner-mobile-padding": {
7
+ "value": "{space.xl} 0",
8
+ "type": "spacing"
9
+ },
10
+ "hero-banner-content-gap": {
11
+ "value": "{space.l} 0 0",
12
+ "type": "spacing"
13
+ },
14
+ "hero-banner-heading": {
15
+ "value": "{typography.heading.xl}",
16
+ "type": "other"
17
+ },
18
+ "hero-banner-content": {
19
+ "value": "{typography.body.l}",
20
+ "type": "other"
21
+ }
22
+ }
@@ -0,0 +1,74 @@
1
+ {
2
+ "icon-button-default-color": {
3
+ "value": "{color.interactive.default}",
4
+ "type": "color"
5
+ },
6
+ "icon-button-default-hover-color": {
7
+ "value": "{color.interactive.hover}",
8
+ "type": "color"
9
+ },
10
+ "icon-button-default-focus-color": {
11
+ "value": "{color.interactive.hover}",
12
+ "type": "color"
13
+ },
14
+ "icon-button-default-hover-color-bg": {
15
+ "value": "{color.greyscale.100}",
16
+ "type": "color"
17
+ },
18
+ "icon-button-default-disabled-color": {
19
+ "value": "{color.interactive.disabled}",
20
+ "type": "color"
21
+ },
22
+ "icon-button-light-color": {
23
+ "value": "{color.greyscale.white}",
24
+ "type": "color"
25
+ },
26
+ "icon-button-light-hover-color-bg": {
27
+ "value": "{color.greyscale.700}",
28
+ "type": "color"
29
+ },
30
+ "icon-button-light-disabled-color": {
31
+ "value": "{color.greyscale.500}",
32
+ "type": "color"
33
+ },
34
+ "icon-button-dark-color": {
35
+ "value": "{color.greyscale.black}",
36
+ "type": "color"
37
+ },
38
+ "icon-button-dark-hover-color-bg": {
39
+ "value": "{color.greyscale.100}",
40
+ "type": "color"
41
+ },
42
+ "icon-button-dark-disabled-color-bg": {
43
+ "value": "{color.greyscale.500}",
44
+ "type": "color"
45
+ },
46
+ "icon-button-destructive-color": {
47
+ "value": "{color.emergency.default}",
48
+ "type": "color"
49
+ },
50
+ "icon-button-destructive-hover-color-bg": {
51
+ "value": "{color.emergency.light}",
52
+ "type": "color"
53
+ },
54
+ "icon-button-destructive-disabled-color": {
55
+ "value": "{color.interactive.error-disabled}",
56
+ "type": "color"
57
+ },
58
+ "icon-button-large-border-radius": {
59
+ "value": "{borderRadius.xl}",
60
+ "type": "borderRadius"
61
+ },
62
+ "icon-button-medium-border-radius": {
63
+ "value": "{borderRadius.m}",
64
+ "type": "borderRadius"
65
+ },
66
+ "icon-button-large-padding": {
67
+ "value": "{space.xs}",
68
+ "type": "spacing"
69
+ },
70
+ "icon-button-medium-padding": {
71
+ "value": "{space.2xs}",
72
+ "type": "spacing"
73
+ }
74
+ }
@@ -0,0 +1,90 @@
1
+ {
2
+ "text-input-border": {
3
+ "value": "inset 0 0 0 {borderWidth.s} {color.greyscale.700}",
4
+ "type": "other"
5
+ },
6
+ "text-input-border-disabled": {
7
+ "value": {
8
+ "width": "1px",
9
+ "style": "solid",
10
+ "color": "{color.greyscale.200}"
11
+ },
12
+ "type": "border"
13
+ },
14
+ "text-input-border-error": {
15
+ "value": "inset 0 0 0 {borderWidth.m} {color.interactive.error}",
16
+ "type": "other"
17
+ },
18
+ "text-input-border-focus": {
19
+ "value": "0 0 0 {borderWidth.l} {color.interactive.focus}",
20
+ "type": "other"
21
+ },
22
+ "text-input-border-hover": {
23
+ "value": "inset 0 0 0 {borderWidth.m} {color.interactive.hover}",
24
+ "type": "other"
25
+ },
26
+ "text-input-border-radius": {
27
+ "value": "{borderRadius.m}",
28
+ "type": "borderRadius"
29
+ },
30
+ "text-input-color-bg": {
31
+ "value": "{color.greyscale.white}",
32
+ "type": "color"
33
+ },
34
+ "text-input-color-bg-disabled": {
35
+ "value": "{color.greyscale.100}",
36
+ "type": "color"
37
+ },
38
+ "text-input-color-icon-disabled": {
39
+ "value": "{color.greyscale.500}",
40
+ "type": "color"
41
+ },
42
+ "text-input-color-text": {
43
+ "value": "{color.text.default}",
44
+ "type": "color"
45
+ },
46
+ "text-input-color-text-disabled": {
47
+ "value": "{color.text.secondary}",
48
+ "type": "color"
49
+ },
50
+ "text-input-color-text-placeholder": {
51
+ "value": "{color.text.secondary}",
52
+ "type": "color"
53
+ },
54
+ "text-input-lt-content-color-bg": {
55
+ "value": "{color.greyscale.100}",
56
+ "type": "color"
57
+ },
58
+ "text-input-lt-content-color-text": {
59
+ "value": "{color.text.default}",
60
+ "type": "color"
61
+ },
62
+ "text-input-padding": {
63
+ "value": "7px {text-input-padding-lr} 9px",
64
+ "type": "spacing"
65
+ },
66
+ "text-input-padding-lr": {
67
+ "value": "{space.s}",
68
+ "type": "spacing"
69
+ },
70
+ "text-input-space-btw-icon-text": {
71
+ "value": "{space.xs}",
72
+ "type": "spacing"
73
+ },
74
+ "text-input-size-icon": {
75
+ "value": "",
76
+ "type": "sizing"
77
+ },
78
+ "text-input-color-icon": {
79
+ "value": "",
80
+ "type": "color"
81
+ },
82
+ "text-input-transition": {
83
+ "value": "box-shadow 0.05s ease-in",
84
+ "type": "other"
85
+ },
86
+ "text-input-typography": {
87
+ "value": "{typography.body.m}",
88
+ "type": "other"
89
+ }
90
+ }
@@ -0,0 +1,66 @@
1
+ {
2
+ "microsite-header-alpha-badge-color": {
3
+ "value": "{color.warning.default}",
4
+ "type": "color"
5
+ },
6
+ "microsite-header-alpha-badge-color-text": {
7
+ "value": "{color.text.default}",
8
+ "type": "color"
9
+ },
10
+ "microsite-header-beta-badge-color": {
11
+ "value": "{color.brand.default}",
12
+ "type": "color"
13
+ },
14
+ "microsite-header-beta-badge-color-text": {
15
+ "value": "{color.text.light}",
16
+ "type": "color"
17
+ },
18
+ "microsite-header-color-bg": {
19
+ "value": "{color.greyscale.100}",
20
+ "type": "color"
21
+ },
22
+ "microsite-header-color-links": {
23
+ "value": "{color.interactive.default}",
24
+ "type": "color"
25
+ },
26
+ "microsite-header-color-links-hover": {
27
+ "value": "{color.interactive.hover}",
28
+ "type": "color"
29
+ },
30
+ "microsite-header-color-version-number": {
31
+ "value": "{color.text.secondary}",
32
+ "type": "color"
33
+ },
34
+ "microsite-header-gap": {
35
+ "value": "{space.m}",
36
+ "type": "spacing"
37
+ },
38
+ "microsite-header-link-focus-border": {
39
+ "value": {
40
+ "width": "{borderWidth.l}",
41
+ "style": "solid",
42
+ "color": "{color.interactive.focus}"
43
+ },
44
+ "type": "border"
45
+ },
46
+ "microsite-header-padding-large-screen": {
47
+ "value": "{space.2xs} {space.3xl}",
48
+ "type": "spacing"
49
+ },
50
+ "microsite-header-padding-medium-screen": {
51
+ "value": "{space.2xs} {space.xl}",
52
+ "type": "spacing"
53
+ },
54
+ "microsite-header-padding-small-screen": {
55
+ "value": "{space.2xs} {space.m}",
56
+ "type": "spacing"
57
+ },
58
+ "microsite-header-typography": {
59
+ "value": "{typography.body.xs}",
60
+ "type": "other"
61
+ },
62
+ "microsite-header-typography-version-number": {
63
+ "value": "{fontSize.1}",
64
+ "type": "other"
65
+ }
66
+ }
@@ -0,0 +1,53 @@
1
+ {
2
+ "modal-border-radius": {
3
+ "value": "{borderRadius.m}",
4
+ "type": "borderRadius"
5
+ },
6
+ "modal-callout-bar-padding": {
7
+ "value": "{space.xl}",
8
+ "type": "spacing"
9
+ },
10
+ "modal-callout-bar-padding-small-screen": {
11
+ "value": "{space.s} {space.s} {space.s} {space.l}",
12
+ "type": "spacing"
13
+ },
14
+ "modal-content-gap": {
15
+ "value": "{space.l}",
16
+ "type": "spacing"
17
+ },
18
+ "modal-content-gap-small-screen": {
19
+ "value": "{space.m}",
20
+ "type": "spacing"
21
+ },
22
+ "modal-header-typography": {
23
+ "value": "{typography.heading.m}",
24
+ "type": "other"
25
+ },
26
+ "modal-overlay-color": {
27
+ "value": "{color.greyscale.black}",
28
+ "type": "color"
29
+ },
30
+ "modal-padding": {
31
+ "value": "{space.xl}",
32
+ "type": "spacing"
33
+ },
34
+ "modal-padding-small-screen": {
35
+ "value": "{space.l}",
36
+ "type": "spacing"
37
+ },
38
+ "modal-shadow": {
39
+ "value": {
40
+ "x": "6",
41
+ "y": "6",
42
+ "blur": "6",
43
+ "spread": "6",
44
+ "color": "rgba(0,0,0,0.16)",
45
+ "type": "dropShadow"
46
+ },
47
+ "type": "boxShadow"
48
+ },
49
+ "modal-overlay-opacity": {
50
+ "value": "{opacity.background.modal}",
51
+ "type": "opacity"
52
+ }
53
+ }