@madgex/design-system 9.1.1 → 9.1.3
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/_tokens/css/_tokens.css +1 -1
- package/dist/_tokens/js/_tokens-module.js +1 -1
- package/dist/_tokens/json/_tokens-flat.json +181 -0
- package/dist/_tokens/json/_tokens-nested.json +3974 -0
- package/dist/assets/icons.json +1 -1
- package/dist/css/index.css +1 -1
- package/package.json +2 -2
- package/src/components/inputs/combobox/_template.njk +1 -1
- package/src/components/inputs/select/_template.njk +2 -2
- package/src/components/toggle-button-links/_template.njk +3 -3
- package/src/scss/constants/_sd-tokens.scss +1 -1
- package/src/scss/core/_containers.scss +1 -1
- package/src/tokens/_config.js +28 -16
- package/dist/_tokens/sketch/_tokens.sketchpalette +0 -5
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
{
|
|
2
|
+
"color-neutral-base": "#707070",
|
|
3
|
+
"color-neutral-light": "#949494",
|
|
4
|
+
"color-neutral-lighter": "#dddddd",
|
|
5
|
+
"color-neutral-lightest": "#f8f8f8",
|
|
6
|
+
"color-neutral-darker": "#333333",
|
|
7
|
+
"color-status-error-light": "#fd0826",
|
|
8
|
+
"color-status-error-lightest": "#ffe3e6",
|
|
9
|
+
"color-status-error-dark": "#d0021b",
|
|
10
|
+
"color-status-error-darkest": "#ae0216",
|
|
11
|
+
"color-status-error-base": "#e1021d",
|
|
12
|
+
"color-status-success-light": "#6ac52d",
|
|
13
|
+
"color-status-success-lightest": "#f0faea",
|
|
14
|
+
"color-status-success-dark": "#549b24",
|
|
15
|
+
"color-status-success-darkest": "#40791b",
|
|
16
|
+
"color-status-success-base": "#5ba927",
|
|
17
|
+
"color-status-info-light": "#ffc442",
|
|
18
|
+
"color-status-info-lightest": "#fff7e5",
|
|
19
|
+
"color-status-info-dark": "#f4aa08",
|
|
20
|
+
"color-status-info-darkest": "#946500",
|
|
21
|
+
"color-status-info-base": "#ffb411",
|
|
22
|
+
"color-brand-1-light": "#2990e0",
|
|
23
|
+
"color-brand-1-lightest": "#e9f3fc",
|
|
24
|
+
"color-brand-1-dark": "#15598e",
|
|
25
|
+
"color-brand-1-darkest": "#082135",
|
|
26
|
+
"color-brand-1-base": "#1b75bb",
|
|
27
|
+
"color-brand-2-light": "#f9007b",
|
|
28
|
+
"color-brand-2-lightest": "#ffe5f2",
|
|
29
|
+
"color-brand-2-dark": "#930049",
|
|
30
|
+
"color-brand-2-darkest": "#3d001e",
|
|
31
|
+
"color-brand-2-base": "#c60062",
|
|
32
|
+
"color-brand-3-light": "#24e6d7",
|
|
33
|
+
"color-brand-3-lightest": "#e8fcfb",
|
|
34
|
+
"color-brand-3-dark": "#119389",
|
|
35
|
+
"color-brand-3-darkest": "#063733",
|
|
36
|
+
"color-brand-3-base": "#16c1b4",
|
|
37
|
+
"color-background-body": "#ffffff",
|
|
38
|
+
"color-background-site-container": "#f8f8f8",
|
|
39
|
+
"color-background-surface": "#ffffff",
|
|
40
|
+
"color-background-main": "rgba(0, 0, 0, 0)",
|
|
41
|
+
"color-text-base": "#343433",
|
|
42
|
+
"color-text-invert": "#ffffff",
|
|
43
|
+
"color-text-headers-1": "#222222",
|
|
44
|
+
"color-text-headers-2": "#222222",
|
|
45
|
+
"color-text-headers-3": "#222222",
|
|
46
|
+
"color-text-headers-base": "#222222",
|
|
47
|
+
"color-border": "#dddddd",
|
|
48
|
+
"color-button-bg-base": "#c60062",
|
|
49
|
+
"color-button-bg-hover": "#f9007b",
|
|
50
|
+
"color-button-text-base": "#ffffff",
|
|
51
|
+
"color-button-text-hover": "#ffffff",
|
|
52
|
+
"color-button-border-base": "rgba(0, 0, 0, 0)",
|
|
53
|
+
"color-button-border-top": "rgba(0, 0, 0, 0)",
|
|
54
|
+
"color-button-border-right": "rgba(0, 0, 0, 0)",
|
|
55
|
+
"color-button-border-bottom": "rgba(0, 0, 0, 0)",
|
|
56
|
+
"color-button-border-left": "rgba(0, 0, 0, 0)",
|
|
57
|
+
"color-button-border-hover-base": "rgba(0, 0, 0, 0)",
|
|
58
|
+
"color-button-border-hover-top": "rgba(0, 0, 0, 0)",
|
|
59
|
+
"color-button-border-hover-right": "rgba(0, 0, 0, 0)",
|
|
60
|
+
"color-button-border-hover-bottom": "rgba(0, 0, 0, 0)",
|
|
61
|
+
"color-button-border-hover-left": "rgba(0, 0, 0, 0)",
|
|
62
|
+
"color-link-base": "#1b75bb",
|
|
63
|
+
"color-link-hover": "#15598e",
|
|
64
|
+
"color-branded-container-1-background": "#1b75bb",
|
|
65
|
+
"color-branded-container-1-text": "#ffffff",
|
|
66
|
+
"color-branded-container-1-button-bg-base": "#c60062",
|
|
67
|
+
"color-branded-container-1-button-bg-hover": "#f9007b",
|
|
68
|
+
"color-branded-container-1-button-text-base": "#ffffff",
|
|
69
|
+
"color-branded-container-1-button-text-hover": "#ffffff",
|
|
70
|
+
"color-ad-container-leaderboard-background": "#ffffff",
|
|
71
|
+
"color-input-checked": "#000000",
|
|
72
|
+
"color-input-border": "#707070",
|
|
73
|
+
"color-input-focus": "#5092fd",
|
|
74
|
+
"color-input-disabled-label": "rgba(84, 84, 84, 0.5)",
|
|
75
|
+
"color-input-disabled-field": "rgba(176, 176, 176, 0.5)",
|
|
76
|
+
"color-pill-bg-base": "#1b75bb",
|
|
77
|
+
"color-pill-bg-hover": "#2990e0",
|
|
78
|
+
"color-pill-text-base": "#ffffff",
|
|
79
|
+
"color-pill-text-hover": "#ffffff",
|
|
80
|
+
"color-new-badge-background": "#40791b",
|
|
81
|
+
"color-new-badge-text": "#ffffff",
|
|
82
|
+
"size-baseline": "4px",
|
|
83
|
+
"size-breakpoint-sm": "400px",
|
|
84
|
+
"size-breakpoint-md": "600px",
|
|
85
|
+
"size-breakpoint-lg": "1008px",
|
|
86
|
+
"size-breakpoint-xl": "1280px",
|
|
87
|
+
"size-gutter-width": "20px",
|
|
88
|
+
"size-border-width-base": "1px",
|
|
89
|
+
"size-border-width-button": "1px",
|
|
90
|
+
"size-border-radius-base": "4px",
|
|
91
|
+
"size-border-radius-button": "4px",
|
|
92
|
+
"size-border-radius-main": "0",
|
|
93
|
+
"size-container-width": "100%",
|
|
94
|
+
"size-container-min-width": "0",
|
|
95
|
+
"size-container-max-width": "100%",
|
|
96
|
+
"size-wrapper-width": "97%",
|
|
97
|
+
"size-wrapper-max-width": "1240px",
|
|
98
|
+
"size-surface-padding": "16px",
|
|
99
|
+
"size-main-max-width": "100%",
|
|
100
|
+
"size-main-padding": "0",
|
|
101
|
+
"size-main-margin": "0 auto",
|
|
102
|
+
"size-height-ad-container-leaderboard-min": "0",
|
|
103
|
+
"custom-badge-1-background": "#000",
|
|
104
|
+
"custom-badge-1-color": "#fff",
|
|
105
|
+
"custom-card-1-background": "#e9f3fc",
|
|
106
|
+
"custom-card-1-border": "1px solid #1b75bb",
|
|
107
|
+
"shadow-site-container": "none",
|
|
108
|
+
"shadow-main": "none",
|
|
109
|
+
"email-color-link-base": "#1b75bb",
|
|
110
|
+
"email-color-link-hover": "#15598e",
|
|
111
|
+
"email-color-button-bg-base": "#c60062",
|
|
112
|
+
"email-color-button-bg-hover": "#f9007b",
|
|
113
|
+
"email-color-button-text-base": "#ffffff",
|
|
114
|
+
"email-color-button-text-hover": "#ffffff",
|
|
115
|
+
"email-color-button-border-base": "rgba(0, 0, 0, 0)",
|
|
116
|
+
"email-color-button-border-top": "rgba(0, 0, 0, 0)",
|
|
117
|
+
"email-color-button-border-right": "rgba(0, 0, 0, 0)",
|
|
118
|
+
"email-color-button-border-bottom": "rgba(0, 0, 0, 0)",
|
|
119
|
+
"email-color-button-border-left": "rgba(0, 0, 0, 0)",
|
|
120
|
+
"email-color-button-border-hover-base": "rgba(0, 0, 0, 0)",
|
|
121
|
+
"email-color-button-border-hover-top": "rgba(0, 0, 0, 0)",
|
|
122
|
+
"email-color-button-border-hover-right": "rgba(0, 0, 0, 0)",
|
|
123
|
+
"email-color-button-border-hover-bottom": "rgba(0, 0, 0, 0)",
|
|
124
|
+
"email-color-button-border-hover-left": "rgba(0, 0, 0, 0)",
|
|
125
|
+
"email-font-family-heading-1": "\"Helvetica\", Arial, sans-serif",
|
|
126
|
+
"email-font-family-heading-2": "\"Helvetica\", Arial, sans-serif",
|
|
127
|
+
"email-font-family-heading-3": "\"Helvetica\", Arial, sans-serif",
|
|
128
|
+
"email-font-family-heading-base": "\"Helvetica\", Arial, sans-serif",
|
|
129
|
+
"email-size-button-border-radius": "4px",
|
|
130
|
+
"email-size-button-border-width": "1px",
|
|
131
|
+
"font-family-base": "\"Helvetica\", Arial, sans-serif",
|
|
132
|
+
"font-family-heading-1": "\"Helvetica\", Arial, sans-serif",
|
|
133
|
+
"font-family-heading-2": "\"Helvetica\", Arial, sans-serif",
|
|
134
|
+
"font-family-heading-3": "\"Helvetica\", Arial, sans-serif",
|
|
135
|
+
"font-family-heading-base": "\"Helvetica\", Arial, sans-serif",
|
|
136
|
+
"font-family-button-base": "\"Helvetica\", Arial, sans-serif",
|
|
137
|
+
"font-weight-base": "400",
|
|
138
|
+
"font-weight-heading-1": "400",
|
|
139
|
+
"font-weight-heading-2": "400",
|
|
140
|
+
"font-weight-heading-3": "400",
|
|
141
|
+
"font-weight-heading-base": "400",
|
|
142
|
+
"font-weight-button-base": "400",
|
|
143
|
+
"font-weight-link-base": "inherit",
|
|
144
|
+
"font-spacing-base": "normal",
|
|
145
|
+
"font-spacing-heading-1": "normal",
|
|
146
|
+
"font-spacing-heading-2": "normal",
|
|
147
|
+
"font-spacing-heading-3": "normal",
|
|
148
|
+
"font-spacing-heading-base": "normal",
|
|
149
|
+
"font-spacing-button": "normal",
|
|
150
|
+
"font-type-s-2-size": "0.75rem",
|
|
151
|
+
"font-type-s-2-line-height": "1.35",
|
|
152
|
+
"font-type-s-1-size": "0.875rem",
|
|
153
|
+
"font-type-s-1-line-height": "1.35",
|
|
154
|
+
"font-type-s0-size": "1rem",
|
|
155
|
+
"font-type-s0-line-height": "1.4",
|
|
156
|
+
"font-type-s1-size": "clamp(1.067rem, 1.0468rem + 0.1009vi, 1.125rem)",
|
|
157
|
+
"font-type-s1-line-height": "1.4",
|
|
158
|
+
"font-type-s2-size": "clamp(1.1385rem, 1.0943rem + 0.2211vi, 1.2656rem)",
|
|
159
|
+
"font-type-s2-line-height": "1.2",
|
|
160
|
+
"font-type-s3-size": "clamp(1.2148rem, 1.1421rem + 0.3636vi, 1.4238rem)",
|
|
161
|
+
"font-type-s3-line-height": "1.2",
|
|
162
|
+
"font-type-s4-size": "clamp(1.2962rem, 1.1898rem + 0.5316vi, 1.6018rem)",
|
|
163
|
+
"font-type-s4-line-height": "1.2",
|
|
164
|
+
"font-type-s5-size": "clamp(1.383rem, 1.2372rem + 0.7288vi, 1.802rem)",
|
|
165
|
+
"font-type-s5-line-height": "1.2",
|
|
166
|
+
"font-type-s6-size": "clamp(1.4757rem, 1.2838rem + 0.9593vi, 2.0273rem)",
|
|
167
|
+
"font-type-s6-line-height": "1.15",
|
|
168
|
+
"font-type-s7-size": "clamp(1.5745rem, 1.3289rem + 1.2281vi, 2.2807rem)",
|
|
169
|
+
"font-type-s7-line-height": "1.15",
|
|
170
|
+
"font-type-s8-size": "clamp(1.68rem, 1.3719rem + 1.5405vi, 2.5658rem)",
|
|
171
|
+
"font-type-s8-line-height": "1.15",
|
|
172
|
+
"font-type-s9-size": "clamp(1.7926rem, 1.4121rem + 1.9025vi, 2.8865rem)",
|
|
173
|
+
"font-type-s9-line-height": "1.15",
|
|
174
|
+
"text-transform-heading-1": "none",
|
|
175
|
+
"text-transform-heading-2": "none",
|
|
176
|
+
"text-transform-heading-3": "none",
|
|
177
|
+
"text-transform-heading-base": "none",
|
|
178
|
+
"text-transform-button": "none",
|
|
179
|
+
"text-decoration-link-base": "underline",
|
|
180
|
+
"text-decoration-link-hover": "underline"
|
|
181
|
+
}
|