@l3mpire/tokens 0.7.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 +1 -0
- package/dist/css/components.css +3 -0
- package/dist/css/fonts.css +1 -0
- package/dist/css/tokens.css +4 -0
- package/dist/ts/tokens.ts +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/css/components.css
CHANGED
|
@@ -88,6 +88,9 @@
|
|
|
88
88
|
--comp-browser-tab-item-inactive-text: var(--core-text-main-tertiary);
|
|
89
89
|
--comp-browser-tab-item-inactive-icon: var(--core-text-main-tertiary);
|
|
90
90
|
--comp-browser-tab-item-hover-icon: var(--core-text-main-secondary);
|
|
91
|
+
--comp-bulk-action-bg: var(--core-bg-main-primary);
|
|
92
|
+
--comp-bulk-action-border: var(--core-border-main-primary);
|
|
93
|
+
--comp-bulk-action-count: var(--core-text-main-secondary);
|
|
91
94
|
--comp-btn-solid-brand-bg-default: var(--interactive-bg-primary-dark-default);
|
|
92
95
|
--comp-btn-solid-brand-bg-hover: var(--interactive-bg-primary-dark-default);
|
|
93
96
|
--comp-btn-solid-brand-bg-pressed: var(--interactive-bg-primary-dark-hover);
|
package/dist/css/fonts.css
CHANGED
package/dist/css/tokens.css
CHANGED
|
@@ -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;
|
|
@@ -389,6 +390,9 @@
|
|
|
389
390
|
--comp-browser-tab-item-inactive-text: var(--core-text-main-tertiary);
|
|
390
391
|
--comp-browser-tab-item-inactive-icon: var(--core-text-main-tertiary);
|
|
391
392
|
--comp-browser-tab-item-hover-icon: var(--core-text-main-secondary);
|
|
393
|
+
--comp-bulk-action-bg: var(--core-bg-main-primary);
|
|
394
|
+
--comp-bulk-action-border: var(--core-border-main-primary);
|
|
395
|
+
--comp-bulk-action-count: var(--core-text-main-secondary);
|
|
392
396
|
--comp-btn-solid-brand-bg-default: var(--interactive-bg-primary-dark-default);
|
|
393
397
|
--comp-btn-solid-brand-bg-hover: var(--interactive-bg-primary-dark-default);
|
|
394
398
|
--comp-btn-solid-brand-bg-pressed: var(--interactive-bg-primary-dark-hover);
|
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",
|
|
@@ -340,6 +341,9 @@ export const tokens = {
|
|
|
340
341
|
"comp-browser-tab-item-inactive-text": "#98a1ac",
|
|
341
342
|
"comp-browser-tab-item-inactive-icon": "#98a1ac",
|
|
342
343
|
"comp-browser-tab-item-hover-icon": "#566f8f",
|
|
344
|
+
"comp-bulk-action-bg": "#ffffff",
|
|
345
|
+
"comp-bulk-action-border": "#efefef",
|
|
346
|
+
"comp-bulk-action-count": "#566f8f",
|
|
343
347
|
"comp-btn-solid-brand-bg-default": "#316bff",
|
|
344
348
|
"comp-btn-solid-brand-bg-hover": "#316bff",
|
|
345
349
|
"comp-btn-solid-brand-bg-pressed": "#1f5eff",
|