@l3mpire/tokens 0.8.0 → 0.9.0

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 CHANGED
@@ -116,6 +116,7 @@ src/
116
116
  | Token | Value |
117
117
  |-------|-------|
118
118
  | `--font-weight-regular` | 400 |
119
+ | `--font-weight-medium` | 500 |
119
120
  | `--font-weight-semibold` | 600 |
120
121
  | `--font-weight-bold` | 700 |
121
122
 
@@ -18,6 +18,7 @@
18
18
  --font-size-size-lg: 20px;
19
19
  --font-size-size-xl: 24px;
20
20
  --font-weight-regular: 400;
21
+ --font-weight-medium: 500;
21
22
  --font-weight-semibold: 600;
22
23
  --font-weight-bold: 700;
23
24
  }
@@ -169,6 +169,7 @@
169
169
  --font-size-size-lg: 20px;
170
170
  --font-size-size-xl: 24px;
171
171
  --font-weight-regular: 400;
172
+ --font-weight-medium: 500;
172
173
  --font-weight-semibold: 600;
173
174
  --font-weight-bold: 700;
174
175
  --comp-btn-solid-brand-bg-gradient-to-default: #477bff;
package/dist/ts/tokens.ts CHANGED
@@ -298,6 +298,7 @@ export const tokens = {
298
298
  "font-size-size-lg": "20px",
299
299
  "font-size-size-xl": "24px",
300
300
  "font-weight-regular": "400",
301
+ "font-weight-medium": "500",
301
302
  "font-weight-semibold": "600",
302
303
  "font-weight-bold": "700",
303
304
  "comp-avatar-fallback-bg": "#316bff",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@l3mpire/tokens",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org",
6
6
  "access": "public"