@youngonesworks/ui 0.1.105 → 0.1.108
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/index.cjs +19 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +18 -16
- package/dist/index.js.map +1 -1
- package/dist/styles/variables.css +66 -45
- package/package.json +1 -1
|
@@ -62,67 +62,49 @@
|
|
|
62
62
|
--font-lg-weight: 400;
|
|
63
63
|
|
|
64
64
|
/* Extra large */
|
|
65
|
-
--font-xl-size: 1.
|
|
66
|
-
--font-xl-line-height:
|
|
67
|
-
--font-xl-weight:
|
|
65
|
+
--font-xl-size: 1.5rem;
|
|
66
|
+
--font-xl-line-height: 2rem;
|
|
67
|
+
--font-xl-weight: 500;
|
|
68
68
|
|
|
69
69
|
/* 2x large */
|
|
70
70
|
--font-2xl-size: 1.5rem;
|
|
71
71
|
--font-2xl-line-height: 2rem;
|
|
72
|
-
--font-2xl-weight:
|
|
72
|
+
--font-2xl-weight: 700;
|
|
73
73
|
|
|
74
74
|
/* 3x large */
|
|
75
75
|
--font-3xl-size: 1.875rem;
|
|
76
76
|
--font-3xl-line-height: 2.25rem;
|
|
77
|
-
--font-3xl-weight:
|
|
77
|
+
--font-3xl-weight: 700;
|
|
78
78
|
|
|
79
79
|
/* 4x large */
|
|
80
80
|
--font-4xl-size: 2.25rem;
|
|
81
81
|
--font-4xl-line-height: 2.5rem;
|
|
82
|
-
--font-4xl-weight:
|
|
82
|
+
--font-4xl-weight: 700;
|
|
83
83
|
|
|
84
84
|
/* 5x large */
|
|
85
85
|
--font-5xl-size: 3rem;
|
|
86
86
|
--font-5xl-line-height: 1;
|
|
87
|
-
--font-5xl-weight:
|
|
87
|
+
--font-5xl-weight: 700;
|
|
88
88
|
|
|
89
89
|
/* 6x large */
|
|
90
90
|
--font-6xl-size: 3.75rem;
|
|
91
91
|
--font-6xl-line-height: 1;
|
|
92
|
-
--font-6xl-weight:
|
|
92
|
+
--font-6xl-weight: 700;
|
|
93
93
|
|
|
94
94
|
/* 7x large */
|
|
95
95
|
--font-7xl-size: 4.5rem;
|
|
96
96
|
--font-7xl-line-height: 1;
|
|
97
|
-
--font-7xl-weight:
|
|
97
|
+
--font-7xl-weight: 700;
|
|
98
98
|
|
|
99
99
|
/* 8x large */
|
|
100
100
|
--font-8xl-size: 6rem;
|
|
101
101
|
--font-8xl-line-height: 1;
|
|
102
|
-
--font-8xl-weight:
|
|
102
|
+
--font-8xl-weight: 700;
|
|
103
103
|
|
|
104
104
|
/* 9x large */
|
|
105
105
|
--font-9xl-size: 8rem;
|
|
106
106
|
--font-9xl-line-height: 1;
|
|
107
|
-
--font-9xl-weight:
|
|
108
|
-
|
|
109
|
-
/* Large */
|
|
110
|
-
--font-lg-weight: 700;
|
|
111
|
-
|
|
112
|
-
/* Extra large */
|
|
113
|
-
--font-xl-size: 1.5rem;
|
|
114
|
-
--font-xl-line-height: 2rem;
|
|
115
|
-
--font-xl-weight: 500;
|
|
116
|
-
|
|
117
|
-
/* 2XL */
|
|
118
|
-
--font-2xl-size: 1.5rem;
|
|
119
|
-
--font-2xl-line-height: 2rem;
|
|
120
|
-
--font-2xl-weight: 700;
|
|
121
|
-
|
|
122
|
-
/* 3XL */
|
|
123
|
-
--font-3xl-size: 1.875rem;
|
|
124
|
-
--font-3xl-line-height: 2.25rem;
|
|
125
|
-
--font-3xl-weight: 700;
|
|
107
|
+
--font-9xl-weight: 700;
|
|
126
108
|
|
|
127
109
|
/* Color scales */
|
|
128
110
|
/* Turquoise palette */
|
|
@@ -213,24 +195,63 @@
|
|
|
213
195
|
);
|
|
214
196
|
|
|
215
197
|
/* Navy blue → Primary gradients */
|
|
216
|
-
--color-gradient-blue-green-y: linear-gradient(
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
--color-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
198
|
+
--color-gradient-blue-green-y: linear-gradient(
|
|
199
|
+
180deg,
|
|
200
|
+
var(--color-navy-blue) 1.57%,
|
|
201
|
+
var(--color-primary) 98.28%
|
|
202
|
+
);
|
|
203
|
+
--color-gradient-blue-green-x: linear-gradient(
|
|
204
|
+
88.05deg,
|
|
205
|
+
var(--color-navy-blue) 1.57%,
|
|
206
|
+
var(--color-primary) 98.28%
|
|
207
|
+
);
|
|
208
|
+
--color-gradient-calendar: linear-gradient(
|
|
209
|
+
51.61deg,
|
|
210
|
+
#000440 14.79%,
|
|
211
|
+
#10d1bb 167.63%
|
|
212
|
+
);
|
|
213
|
+
--color-nav-gradient: linear-gradient(
|
|
214
|
+
179.94deg,
|
|
215
|
+
var(--color-navy-blue) 65.65%,
|
|
216
|
+
var(--color-primary) 128%
|
|
217
|
+
);
|
|
218
|
+
--color-nav-gradient-agency: linear-gradient(
|
|
219
|
+
179.94deg,
|
|
220
|
+
var(--color-navy-blue) 65.65%,
|
|
221
|
+
var(--color-pink) 128%
|
|
222
|
+
);
|
|
223
|
+
--color-nav-gradient-mobile: linear-gradient(
|
|
224
|
+
88.05deg,
|
|
225
|
+
var(--color-navy-blue) 54.46%,
|
|
226
|
+
var(--color-primary) 149.24%
|
|
227
|
+
);
|
|
228
|
+
--color-nav-gradient-mobile-agency: linear-gradient(
|
|
229
|
+
88.05deg,
|
|
230
|
+
var(--color-navy-blue) 54.46%,
|
|
231
|
+
var(--color-pink) 149.24%
|
|
232
|
+
);
|
|
233
|
+
--color-gradient-calendar: linear-gradient(
|
|
234
|
+
51.61deg,
|
|
235
|
+
var(--color-navy-blue) 14.79%,
|
|
236
|
+
var(--color-primary) 167.63%
|
|
237
|
+
);
|
|
226
238
|
|
|
227
239
|
/* Font families */
|
|
228
|
-
--font-family-sans:
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
--font-
|
|
232
|
-
|
|
240
|
+
--font-family-sans:
|
|
241
|
+
"Gotham", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
242
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
243
|
+
--font-family-serif:
|
|
244
|
+
ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
245
|
+
--font-family-mono:
|
|
246
|
+
ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo,
|
|
247
|
+
monospace;
|
|
248
|
+
--font-sans:
|
|
249
|
+
"var(--font-gotham)", "ui-sans-serif", "system-ui", "-apple-system",
|
|
250
|
+
"BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial",
|
|
251
|
+
"Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji",
|
|
252
|
+
"Segoe UI Symbol", "Noto Color Emoji";
|
|
253
|
+
--font-gotham: "Gotham", sans-serif;
|
|
233
254
|
}
|
|
234
255
|
|
|
235
256
|
/* Change this path to be relative to where this CSS file ends up after packaging this library. */
|
|
236
|
-
@source "../../dist"
|
|
257
|
+
@source "../../dist";
|