@hpe-web/design-tokens 1.1.0 → 1.2.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.
- package/README.md +21 -19
- package/dist/css/fonts/de.css +0 -164
- package/dist/css/fonts/en.css +0 -164
- package/dist/css/fonts/es.css +0 -164
- package/dist/css/fonts/fr.css +0 -164
- package/dist/css/fonts/it.css +0 -164
- package/dist/css/fonts/zh.css +1 -1
- package/dist/css/locales/de.tokens.css +14 -32
- package/dist/css/locales/es.tokens.css +14 -32
- package/dist/css/locales/fr.tokens.css +14 -32
- package/dist/css/locales/it.tokens.css +14 -32
- package/dist/css/locales/ja.tokens.css +20 -41
- package/dist/css/locales/ko.tokens.css +20 -41
- package/dist/css/tokens.css +280 -223
- package/dist/css/tokens.dark.css +2 -11
- package/dist/css/tokens.md-lg.css +109 -99
- package/dist/css/tokens.xl.css +85 -49
- package/package.json +4 -8
- package/src/breakpoints.json +14 -0
- package/src/component/button.json +1172 -0
- package/{static → src}/fonts.json +17 -17
- package/src/hpe.resolver.json +94 -0
- package/src/locales.json +58 -0
- package/{dtcg/foundation/color.tokens.json → src/primitive/primitives.json} +870 -1183
- package/{dtcg/theme/dark/color.tokens.json → src/semantic/color.dark.json} +157 -165
- package/{dtcg/theme/light/color.tokens.json → src/semantic/color.light.json} +159 -167
- package/src/semantic/dimension.md-lg.json +764 -0
- package/src/semantic/dimension.xl.json +764 -0
- package/src/semantic/dimension.xs-sm.json +764 -0
- package/transforms.mjs +7 -7
- package/dist/css/locales/zh.tokens.css +0 -10
- package/dtcg/foundation/border-radius.tokens.json +0 -239
- package/dtcg/foundation/border-width.tokens.json +0 -103
- package/dtcg/foundation/breakpoint.tokens.json +0 -27
- package/dtcg/foundation/dimension.tokens.json +0 -278
- package/dtcg/foundation/font-family.tokens.json +0 -75
- package/dtcg/foundation/font-size.tokens.json +0 -420
- package/dtcg/foundation/font-weight.tokens.json +0 -226
- package/dtcg/foundation/letter-spacing.tokens.json +0 -215
- package/dtcg/foundation/line-height.tokens.json +0 -420
- package/dtcg/foundation/size.tokens.json +0 -240
- package/dtcg/foundation/space.tokens.json +0 -431
- package/dtcg/hpe.resolver.json +0 -178
- package/dtcg/semantic/border-radius.tokens.json +0 -149
- package/dtcg/semantic/border-width.tokens.json +0 -50
- package/dtcg/semantic/dimension.tokens.json +0 -25
- package/dtcg/semantic/font-family.tokens.json +0 -40
- package/dtcg/semantic/font-size.tokens.json +0 -271
- package/dtcg/semantic/font-weight.tokens.json +0 -129
- package/dtcg/semantic/letter-spacing.tokens.json +0 -189
- package/dtcg/semantic/line-height.tokens.json +0 -271
- package/dtcg/semantic/size.tokens.json +0 -152
- package/dtcg/semantic/space.tokens.json +0 -275
- package/dtcg/viewport/md-lg/font-size.tokens.json +0 -189
- package/dtcg/viewport/md-lg/font-weight.tokens.json +0 -11
- package/dtcg/viewport/md-lg/letter-spacing.tokens.json +0 -88
- package/dtcg/viewport/md-lg/line-height.tokens.json +0 -125
- package/dtcg/viewport/md-lg/size.tokens.json +0 -20
- package/dtcg/viewport/md-lg/space.tokens.json +0 -36
- package/dtcg/viewport/sm-xs/border-width.tokens.json +0 -15
- package/dtcg/viewport/sm-xs/font-size.tokens.json +0 -222
- package/dtcg/viewport/sm-xs/font-weight.tokens.json +0 -15
- package/dtcg/viewport/sm-xs/letter-spacing.tokens.json +0 -126
- package/dtcg/viewport/sm-xs/line-height.tokens.json +0 -222
- package/dtcg/viewport/sm-xs/size.tokens.json +0 -61
- package/dtcg/viewport/sm-xs/space.tokens.json +0 -46
- package/dtcg/viewport/xl/font-size.tokens.json +0 -220
- package/dtcg/viewport/xl/letter-spacing.tokens.json +0 -126
- package/dtcg/viewport/xl/line-height.tokens.json +0 -162
- package/dtcg/viewport/xl/size.tokens.json +0 -84
- package/dtcg/viewport/xl/space.tokens.json +0 -68
- package/static/breakpoints.json +0 -23
- package/static/locales.json +0 -58
package/README.md
CHANGED
|
@@ -2,13 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
HPE Design System design tokens — CSS custom properties, DTCG source, locale overrides, and utilities.
|
|
4
4
|
|
|
5
|
-
## What's new in v1.
|
|
5
|
+
## What's new in v1.2.0
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
7
|
+
**CSS consumers: no changes required.** If you use the DTCG source or static metadata via package imports, see the migration notes below.
|
|
8
|
+
|
|
9
|
+
- Token source restructured: `dtcg/` + `static/` replaced by `src/` with consolidated semantic files
|
|
10
|
+
- `@hpe-web/design-tokens/dtcg/*` and `@hpe-web/design-tokens/static/*` exports removed — use `@hpe-web/design-tokens/src/*`
|
|
11
|
+
- `sm-xs` → `xs-sm` breakpoint rename in `src/breakpoints.json` and source file paths
|
|
12
|
+
- `src/component/button.json` added — button component tokens
|
|
13
|
+
- Token values updated (`color.light`, `color.dark`, `button`) from Supernova sync
|
|
14
|
+
|
|
15
|
+
[Full changelog →](CHANGELOG.md)
|
|
12
16
|
|
|
13
17
|
[Full changelog →](https://github.com/HPE-EMU/design-system/blob/main/packages/tokens/CHANGELOG.md)
|
|
14
18
|
|
|
@@ -37,12 +41,12 @@ Load the base file and any overrides your app needs. The cascade handles viewpor
|
|
|
37
41
|
|
|
38
42
|
<!-- Locales (if your app serves multiple languages) -->
|
|
39
43
|
<link rel="stylesheet" href="node_modules/@hpe-web/design-tokens/css/locales/de.tokens.css">
|
|
40
|
-
<link rel="stylesheet" href="node_modules/@hpe-web/design-tokens/css/fonts/de.
|
|
44
|
+
<link rel="stylesheet" href="node_modules/@hpe-web/design-tokens/css/fonts/de.css">
|
|
41
45
|
```
|
|
42
46
|
|
|
43
47
|
| File | Contents | Applied when |
|
|
44
48
|
|------|----------|-------------|
|
|
45
|
-
| `tokens.css` | All tokens — sm
|
|
49
|
+
| `tokens.css` | All tokens — xs-sm base, light theme | Always |
|
|
46
50
|
| `tokens.dark.css` | Dark theme color overrides | `[data-theme="dark"]` |
|
|
47
51
|
| `tokens.md-lg.css` | Typography + border-radius overrides | `@media (min-width: 992px)` |
|
|
48
52
|
| `tokens.xl.css` | Typography + border-radius overrides | `@media (min-width: 1600px)` |
|
|
@@ -77,15 +81,15 @@ No breakpoint logic needed in component CSS. Token values shift automatically as
|
|
|
77
81
|
All three metadata files live in `static/`:
|
|
78
82
|
|
|
79
83
|
```js
|
|
80
|
-
import breakpoints from '@hpe-web/design-tokens/
|
|
84
|
+
import breakpoints from '@hpe-web/design-tokens/src/breakpoints.json' assert { type: 'json' };
|
|
81
85
|
// { values: { xs: '0px', md: '992px', xl: '1600px' },
|
|
82
86
|
// ranges: { 'md-lg': { mediaQuery: '(min-width: 992px)' }, ... } }
|
|
83
87
|
|
|
84
|
-
import locales from '@hpe-web/design-tokens/
|
|
88
|
+
import locales from '@hpe-web/design-tokens/src/locales.json' assert { type: 'json' };
|
|
85
89
|
// locales.de.coefficient.display === 0.75
|
|
86
90
|
// locales.ja.minFontSize === '14px'
|
|
87
91
|
|
|
88
|
-
import fonts from '@hpe-web/design-tokens/
|
|
92
|
+
import fonts from '@hpe-web/design-tokens/src/fonts.json' assert { type: 'json' };
|
|
89
93
|
```
|
|
90
94
|
|
|
91
95
|
`breakpoints.json` is generated from DTCG token values at build time. `fonts.json` and `locales.json` are hand-maintained. All three are for tooling and pipeline scripts — the browser gets everything it needs from the CSS files.
|
|
@@ -100,10 +104,9 @@ import { lineHeightUnitless, letterSpacingEm } from '@hpe-web/design-tokens/tran
|
|
|
100
104
|
|
|
101
105
|
const sd = new StyleDictionary({
|
|
102
106
|
source: [
|
|
103
|
-
'node_modules/@hpe-web/design-tokens/
|
|
104
|
-
'node_modules/@hpe-web/design-tokens/
|
|
105
|
-
'node_modules/@hpe-web/design-tokens/
|
|
106
|
-
'node_modules/@hpe-web/design-tokens/dtcg/viewport/sm-xs/**/*.tokens.json',
|
|
107
|
+
'node_modules/@hpe-web/design-tokens/src/primitive/primitives.json',
|
|
108
|
+
'node_modules/@hpe-web/design-tokens/src/semantic/color.light.json',
|
|
109
|
+
'node_modules/@hpe-web/design-tokens/src/semantic/dimension.xs-sm.json',
|
|
107
110
|
],
|
|
108
111
|
platforms: { /* your config */ },
|
|
109
112
|
});
|
|
@@ -114,12 +117,12 @@ sd.registerTransform(letterSpacingEm); // px letter-spacing → em
|
|
|
114
117
|
await sd.buildAllPlatforms();
|
|
115
118
|
```
|
|
116
119
|
|
|
117
|
-
See `
|
|
120
|
+
See `src/hpe.resolver.json` for the canonical token load order.
|
|
118
121
|
|
|
119
122
|
**Locale metadata** for custom pipelines:
|
|
120
123
|
|
|
121
124
|
```js
|
|
122
|
-
import locales from '@hpe-web/design-tokens/
|
|
125
|
+
import locales from '@hpe-web/design-tokens/src/locales.json' assert { type: 'json' };
|
|
123
126
|
// locales.de.coefficient.display === 0.75
|
|
124
127
|
// locales.ja.minFontSize === '14px'
|
|
125
128
|
```
|
|
@@ -129,8 +132,7 @@ import locales from '@hpe-web/design-tokens/static/locales.json' assert { type:
|
|
|
129
132
|
| Export | What |
|
|
130
133
|
|--------|------|
|
|
131
134
|
| `@hpe-web/design-tokens/css/*` | CSS custom properties (primary format) |
|
|
132
|
-
| `@hpe-web/design-tokens/
|
|
133
|
-
| `@hpe-web/design-tokens/dtcg/*` | DTCG 2025.10 source (for custom pipelines) |
|
|
135
|
+
| `@hpe-web/design-tokens/src/*` | DTCG source + system metadata (`breakpoints.json`, `locales.json`, `fonts.json`) |
|
|
134
136
|
| `@hpe-web/design-tokens/transforms` | SD transforms + `applyLocale` utility |
|
|
135
137
|
|
|
136
138
|
## License
|
package/dist/css/fonts/de.css
CHANGED
|
@@ -153,167 +153,3 @@
|
|
|
153
153
|
font-style: italic;
|
|
154
154
|
font-display: swap;
|
|
155
155
|
}
|
|
156
|
-
|
|
157
|
-
/* ——— HPE Graphik (condensed) ——— */
|
|
158
|
-
|
|
159
|
-
@font-face {
|
|
160
|
-
font-family: 'HPE Graphik';
|
|
161
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Thin-Web.woff2') format('woff2');
|
|
162
|
-
font-weight: 100;
|
|
163
|
-
font-style: normal;
|
|
164
|
-
font-stretch: condensed;
|
|
165
|
-
font-display: swap;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
@font-face {
|
|
169
|
-
font-family: 'HPE Graphik';
|
|
170
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-ThinItalic-Web.woff2') format('woff2');
|
|
171
|
-
font-weight: 100;
|
|
172
|
-
font-style: italic;
|
|
173
|
-
font-stretch: condensed;
|
|
174
|
-
font-display: swap;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
@font-face {
|
|
178
|
-
font-family: 'HPE Graphik';
|
|
179
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Extralight-Web.woff2') format('woff2');
|
|
180
|
-
font-weight: 200;
|
|
181
|
-
font-style: normal;
|
|
182
|
-
font-stretch: condensed;
|
|
183
|
-
font-display: swap;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
@font-face {
|
|
187
|
-
font-family: 'HPE Graphik';
|
|
188
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-ExtralightItalic-Web.woff2') format('woff2');
|
|
189
|
-
font-weight: 200;
|
|
190
|
-
font-style: italic;
|
|
191
|
-
font-stretch: condensed;
|
|
192
|
-
font-display: swap;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
@font-face {
|
|
196
|
-
font-family: 'HPE Graphik';
|
|
197
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Light-Web.woff2') format('woff2');
|
|
198
|
-
font-weight: 300;
|
|
199
|
-
font-style: normal;
|
|
200
|
-
font-stretch: condensed;
|
|
201
|
-
font-display: swap;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
@font-face {
|
|
205
|
-
font-family: 'HPE Graphik';
|
|
206
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-LightItalic-Web.woff2') format('woff2');
|
|
207
|
-
font-weight: 300;
|
|
208
|
-
font-style: italic;
|
|
209
|
-
font-stretch: condensed;
|
|
210
|
-
font-display: swap;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
@font-face {
|
|
214
|
-
font-family: 'HPE Graphik';
|
|
215
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Regular-Web.woff2') format('woff2');
|
|
216
|
-
font-weight: 400;
|
|
217
|
-
font-style: normal;
|
|
218
|
-
font-stretch: condensed;
|
|
219
|
-
font-display: swap;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
@font-face {
|
|
223
|
-
font-family: 'HPE Graphik';
|
|
224
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-RegularItalic-Web.woff2') format('woff2');
|
|
225
|
-
font-weight: 400;
|
|
226
|
-
font-style: italic;
|
|
227
|
-
font-stretch: condensed;
|
|
228
|
-
font-display: swap;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
@font-face {
|
|
232
|
-
font-family: 'HPE Graphik';
|
|
233
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Medium-Web.woff2') format('woff2');
|
|
234
|
-
font-weight: 500;
|
|
235
|
-
font-style: normal;
|
|
236
|
-
font-stretch: condensed;
|
|
237
|
-
font-display: swap;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
@font-face {
|
|
241
|
-
font-family: 'HPE Graphik';
|
|
242
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-MediumItalic-Web.woff2') format('woff2');
|
|
243
|
-
font-weight: 500;
|
|
244
|
-
font-style: italic;
|
|
245
|
-
font-stretch: condensed;
|
|
246
|
-
font-display: swap;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
@font-face {
|
|
250
|
-
font-family: 'HPE Graphik';
|
|
251
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Semibold-Web.woff2') format('woff2');
|
|
252
|
-
font-weight: 600;
|
|
253
|
-
font-style: normal;
|
|
254
|
-
font-stretch: condensed;
|
|
255
|
-
font-display: swap;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
@font-face {
|
|
259
|
-
font-family: 'HPE Graphik';
|
|
260
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-SemiboldItalic-Web.woff2') format('woff2');
|
|
261
|
-
font-weight: 600;
|
|
262
|
-
font-style: italic;
|
|
263
|
-
font-stretch: condensed;
|
|
264
|
-
font-display: swap;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
@font-face {
|
|
268
|
-
font-family: 'HPE Graphik';
|
|
269
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Bold-Web.woff2') format('woff2');
|
|
270
|
-
font-weight: 700;
|
|
271
|
-
font-style: normal;
|
|
272
|
-
font-stretch: condensed;
|
|
273
|
-
font-display: swap;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
@font-face {
|
|
277
|
-
font-family: 'HPE Graphik';
|
|
278
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-BoldItalic-Web.woff2') format('woff2');
|
|
279
|
-
font-weight: 700;
|
|
280
|
-
font-style: italic;
|
|
281
|
-
font-stretch: condensed;
|
|
282
|
-
font-display: swap;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
@font-face {
|
|
286
|
-
font-family: 'HPE Graphik';
|
|
287
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Black-Web.woff2') format('woff2');
|
|
288
|
-
font-weight: 800;
|
|
289
|
-
font-style: normal;
|
|
290
|
-
font-stretch: condensed;
|
|
291
|
-
font-display: swap;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
@font-face {
|
|
295
|
-
font-family: 'HPE Graphik';
|
|
296
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-BlackItalic-Web.woff2') format('woff2');
|
|
297
|
-
font-weight: 800;
|
|
298
|
-
font-style: italic;
|
|
299
|
-
font-stretch: condensed;
|
|
300
|
-
font-display: swap;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
@font-face {
|
|
304
|
-
font-family: 'HPE Graphik';
|
|
305
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Super-Web.woff2') format('woff2');
|
|
306
|
-
font-weight: 900;
|
|
307
|
-
font-style: normal;
|
|
308
|
-
font-stretch: condensed;
|
|
309
|
-
font-display: swap;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
@font-face {
|
|
313
|
-
font-family: 'HPE Graphik';
|
|
314
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-SuperItalic-Web.woff2') format('woff2');
|
|
315
|
-
font-weight: 900;
|
|
316
|
-
font-style: italic;
|
|
317
|
-
font-stretch: condensed;
|
|
318
|
-
font-display: swap;
|
|
319
|
-
}
|
package/dist/css/fonts/en.css
CHANGED
|
@@ -153,167 +153,3 @@
|
|
|
153
153
|
font-style: italic;
|
|
154
154
|
font-display: swap;
|
|
155
155
|
}
|
|
156
|
-
|
|
157
|
-
/* ——— HPE Graphik (condensed) ——— */
|
|
158
|
-
|
|
159
|
-
@font-face {
|
|
160
|
-
font-family: 'HPE Graphik';
|
|
161
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Thin-Web.woff2') format('woff2');
|
|
162
|
-
font-weight: 100;
|
|
163
|
-
font-style: normal;
|
|
164
|
-
font-stretch: condensed;
|
|
165
|
-
font-display: swap;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
@font-face {
|
|
169
|
-
font-family: 'HPE Graphik';
|
|
170
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-ThinItalic-Web.woff2') format('woff2');
|
|
171
|
-
font-weight: 100;
|
|
172
|
-
font-style: italic;
|
|
173
|
-
font-stretch: condensed;
|
|
174
|
-
font-display: swap;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
@font-face {
|
|
178
|
-
font-family: 'HPE Graphik';
|
|
179
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Extralight-Web.woff2') format('woff2');
|
|
180
|
-
font-weight: 200;
|
|
181
|
-
font-style: normal;
|
|
182
|
-
font-stretch: condensed;
|
|
183
|
-
font-display: swap;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
@font-face {
|
|
187
|
-
font-family: 'HPE Graphik';
|
|
188
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-ExtralightItalic-Web.woff2') format('woff2');
|
|
189
|
-
font-weight: 200;
|
|
190
|
-
font-style: italic;
|
|
191
|
-
font-stretch: condensed;
|
|
192
|
-
font-display: swap;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
@font-face {
|
|
196
|
-
font-family: 'HPE Graphik';
|
|
197
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Light-Web.woff2') format('woff2');
|
|
198
|
-
font-weight: 300;
|
|
199
|
-
font-style: normal;
|
|
200
|
-
font-stretch: condensed;
|
|
201
|
-
font-display: swap;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
@font-face {
|
|
205
|
-
font-family: 'HPE Graphik';
|
|
206
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-LightItalic-Web.woff2') format('woff2');
|
|
207
|
-
font-weight: 300;
|
|
208
|
-
font-style: italic;
|
|
209
|
-
font-stretch: condensed;
|
|
210
|
-
font-display: swap;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
@font-face {
|
|
214
|
-
font-family: 'HPE Graphik';
|
|
215
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Regular-Web.woff2') format('woff2');
|
|
216
|
-
font-weight: 400;
|
|
217
|
-
font-style: normal;
|
|
218
|
-
font-stretch: condensed;
|
|
219
|
-
font-display: swap;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
@font-face {
|
|
223
|
-
font-family: 'HPE Graphik';
|
|
224
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-RegularItalic-Web.woff2') format('woff2');
|
|
225
|
-
font-weight: 400;
|
|
226
|
-
font-style: italic;
|
|
227
|
-
font-stretch: condensed;
|
|
228
|
-
font-display: swap;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
@font-face {
|
|
232
|
-
font-family: 'HPE Graphik';
|
|
233
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Medium-Web.woff2') format('woff2');
|
|
234
|
-
font-weight: 500;
|
|
235
|
-
font-style: normal;
|
|
236
|
-
font-stretch: condensed;
|
|
237
|
-
font-display: swap;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
@font-face {
|
|
241
|
-
font-family: 'HPE Graphik';
|
|
242
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-MediumItalic-Web.woff2') format('woff2');
|
|
243
|
-
font-weight: 500;
|
|
244
|
-
font-style: italic;
|
|
245
|
-
font-stretch: condensed;
|
|
246
|
-
font-display: swap;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
@font-face {
|
|
250
|
-
font-family: 'HPE Graphik';
|
|
251
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Semibold-Web.woff2') format('woff2');
|
|
252
|
-
font-weight: 600;
|
|
253
|
-
font-style: normal;
|
|
254
|
-
font-stretch: condensed;
|
|
255
|
-
font-display: swap;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
@font-face {
|
|
259
|
-
font-family: 'HPE Graphik';
|
|
260
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-SemiboldItalic-Web.woff2') format('woff2');
|
|
261
|
-
font-weight: 600;
|
|
262
|
-
font-style: italic;
|
|
263
|
-
font-stretch: condensed;
|
|
264
|
-
font-display: swap;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
@font-face {
|
|
268
|
-
font-family: 'HPE Graphik';
|
|
269
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Bold-Web.woff2') format('woff2');
|
|
270
|
-
font-weight: 700;
|
|
271
|
-
font-style: normal;
|
|
272
|
-
font-stretch: condensed;
|
|
273
|
-
font-display: swap;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
@font-face {
|
|
277
|
-
font-family: 'HPE Graphik';
|
|
278
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-BoldItalic-Web.woff2') format('woff2');
|
|
279
|
-
font-weight: 700;
|
|
280
|
-
font-style: italic;
|
|
281
|
-
font-stretch: condensed;
|
|
282
|
-
font-display: swap;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
@font-face {
|
|
286
|
-
font-family: 'HPE Graphik';
|
|
287
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Black-Web.woff2') format('woff2');
|
|
288
|
-
font-weight: 800;
|
|
289
|
-
font-style: normal;
|
|
290
|
-
font-stretch: condensed;
|
|
291
|
-
font-display: swap;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
@font-face {
|
|
295
|
-
font-family: 'HPE Graphik';
|
|
296
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-BlackItalic-Web.woff2') format('woff2');
|
|
297
|
-
font-weight: 800;
|
|
298
|
-
font-style: italic;
|
|
299
|
-
font-stretch: condensed;
|
|
300
|
-
font-display: swap;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
@font-face {
|
|
304
|
-
font-family: 'HPE Graphik';
|
|
305
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Super-Web.woff2') format('woff2');
|
|
306
|
-
font-weight: 900;
|
|
307
|
-
font-style: normal;
|
|
308
|
-
font-stretch: condensed;
|
|
309
|
-
font-display: swap;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
@font-face {
|
|
313
|
-
font-family: 'HPE Graphik';
|
|
314
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-SuperItalic-Web.woff2') format('woff2');
|
|
315
|
-
font-weight: 900;
|
|
316
|
-
font-style: italic;
|
|
317
|
-
font-stretch: condensed;
|
|
318
|
-
font-display: swap;
|
|
319
|
-
}
|
package/dist/css/fonts/es.css
CHANGED
|
@@ -153,167 +153,3 @@
|
|
|
153
153
|
font-style: italic;
|
|
154
154
|
font-display: swap;
|
|
155
155
|
}
|
|
156
|
-
|
|
157
|
-
/* ——— HPE Graphik (condensed) ——— */
|
|
158
|
-
|
|
159
|
-
@font-face {
|
|
160
|
-
font-family: 'HPE Graphik';
|
|
161
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Thin-Web.woff2') format('woff2');
|
|
162
|
-
font-weight: 100;
|
|
163
|
-
font-style: normal;
|
|
164
|
-
font-stretch: condensed;
|
|
165
|
-
font-display: swap;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
@font-face {
|
|
169
|
-
font-family: 'HPE Graphik';
|
|
170
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-ThinItalic-Web.woff2') format('woff2');
|
|
171
|
-
font-weight: 100;
|
|
172
|
-
font-style: italic;
|
|
173
|
-
font-stretch: condensed;
|
|
174
|
-
font-display: swap;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
@font-face {
|
|
178
|
-
font-family: 'HPE Graphik';
|
|
179
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Extralight-Web.woff2') format('woff2');
|
|
180
|
-
font-weight: 200;
|
|
181
|
-
font-style: normal;
|
|
182
|
-
font-stretch: condensed;
|
|
183
|
-
font-display: swap;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
@font-face {
|
|
187
|
-
font-family: 'HPE Graphik';
|
|
188
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-ExtralightItalic-Web.woff2') format('woff2');
|
|
189
|
-
font-weight: 200;
|
|
190
|
-
font-style: italic;
|
|
191
|
-
font-stretch: condensed;
|
|
192
|
-
font-display: swap;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
@font-face {
|
|
196
|
-
font-family: 'HPE Graphik';
|
|
197
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Light-Web.woff2') format('woff2');
|
|
198
|
-
font-weight: 300;
|
|
199
|
-
font-style: normal;
|
|
200
|
-
font-stretch: condensed;
|
|
201
|
-
font-display: swap;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
@font-face {
|
|
205
|
-
font-family: 'HPE Graphik';
|
|
206
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-LightItalic-Web.woff2') format('woff2');
|
|
207
|
-
font-weight: 300;
|
|
208
|
-
font-style: italic;
|
|
209
|
-
font-stretch: condensed;
|
|
210
|
-
font-display: swap;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
@font-face {
|
|
214
|
-
font-family: 'HPE Graphik';
|
|
215
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Regular-Web.woff2') format('woff2');
|
|
216
|
-
font-weight: 400;
|
|
217
|
-
font-style: normal;
|
|
218
|
-
font-stretch: condensed;
|
|
219
|
-
font-display: swap;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
@font-face {
|
|
223
|
-
font-family: 'HPE Graphik';
|
|
224
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-RegularItalic-Web.woff2') format('woff2');
|
|
225
|
-
font-weight: 400;
|
|
226
|
-
font-style: italic;
|
|
227
|
-
font-stretch: condensed;
|
|
228
|
-
font-display: swap;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
@font-face {
|
|
232
|
-
font-family: 'HPE Graphik';
|
|
233
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Medium-Web.woff2') format('woff2');
|
|
234
|
-
font-weight: 500;
|
|
235
|
-
font-style: normal;
|
|
236
|
-
font-stretch: condensed;
|
|
237
|
-
font-display: swap;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
@font-face {
|
|
241
|
-
font-family: 'HPE Graphik';
|
|
242
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-MediumItalic-Web.woff2') format('woff2');
|
|
243
|
-
font-weight: 500;
|
|
244
|
-
font-style: italic;
|
|
245
|
-
font-stretch: condensed;
|
|
246
|
-
font-display: swap;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
@font-face {
|
|
250
|
-
font-family: 'HPE Graphik';
|
|
251
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Semibold-Web.woff2') format('woff2');
|
|
252
|
-
font-weight: 600;
|
|
253
|
-
font-style: normal;
|
|
254
|
-
font-stretch: condensed;
|
|
255
|
-
font-display: swap;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
@font-face {
|
|
259
|
-
font-family: 'HPE Graphik';
|
|
260
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-SemiboldItalic-Web.woff2') format('woff2');
|
|
261
|
-
font-weight: 600;
|
|
262
|
-
font-style: italic;
|
|
263
|
-
font-stretch: condensed;
|
|
264
|
-
font-display: swap;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
@font-face {
|
|
268
|
-
font-family: 'HPE Graphik';
|
|
269
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Bold-Web.woff2') format('woff2');
|
|
270
|
-
font-weight: 700;
|
|
271
|
-
font-style: normal;
|
|
272
|
-
font-stretch: condensed;
|
|
273
|
-
font-display: swap;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
@font-face {
|
|
277
|
-
font-family: 'HPE Graphik';
|
|
278
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-BoldItalic-Web.woff2') format('woff2');
|
|
279
|
-
font-weight: 700;
|
|
280
|
-
font-style: italic;
|
|
281
|
-
font-stretch: condensed;
|
|
282
|
-
font-display: swap;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
@font-face {
|
|
286
|
-
font-family: 'HPE Graphik';
|
|
287
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Black-Web.woff2') format('woff2');
|
|
288
|
-
font-weight: 800;
|
|
289
|
-
font-style: normal;
|
|
290
|
-
font-stretch: condensed;
|
|
291
|
-
font-display: swap;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
@font-face {
|
|
295
|
-
font-family: 'HPE Graphik';
|
|
296
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-BlackItalic-Web.woff2') format('woff2');
|
|
297
|
-
font-weight: 800;
|
|
298
|
-
font-style: italic;
|
|
299
|
-
font-stretch: condensed;
|
|
300
|
-
font-display: swap;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
@font-face {
|
|
304
|
-
font-family: 'HPE Graphik';
|
|
305
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-Super-Web.woff2') format('woff2');
|
|
306
|
-
font-weight: 900;
|
|
307
|
-
font-style: normal;
|
|
308
|
-
font-stretch: condensed;
|
|
309
|
-
font-display: swap;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
@font-face {
|
|
313
|
-
font-family: 'HPE Graphik';
|
|
314
|
-
src: url('https://www.hpe.com/content/dam/hpe/fonts/graphik/HPEGraphikXXCondensed-SuperItalic-Web.woff2') format('woff2');
|
|
315
|
-
font-weight: 900;
|
|
316
|
-
font-style: italic;
|
|
317
|
-
font-stretch: condensed;
|
|
318
|
-
font-display: swap;
|
|
319
|
-
}
|