@haiilo/catalyst-tokens 10.31.1 → 10.32.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/dist/css/variables-hex.css +1 -0
- package/dist/css/variables.css +1 -0
- package/dist/export/figma.json +4 -0
- package/dist/export/theme.json +4 -0
- package/dist/export/zeroheight.json +4 -0
- package/dist/js/variables.d.ts +1 -0
- package/dist/js/variables.js +1 -0
- package/dist/json/variables.json +2 -1
- package/dist/scss/_variables.scss +3 -1
- package/package.json +1 -1
|
@@ -180,6 +180,7 @@
|
|
|
180
180
|
--cat-color-ui-border-dark: #d7dbe0;
|
|
181
181
|
--cat-color-ui-border-focus: #0071ff;
|
|
182
182
|
--cat-color-ui-border-quote: #697687;
|
|
183
|
+
--cat-color-ui-border-card: rgba(0, 0, 0, 0);
|
|
183
184
|
--cat-color-ui-font-base: #000000;
|
|
184
185
|
--cat-color-ui-font-base-inverted: #ffffff;
|
|
185
186
|
--cat-color-ui-font-muted: #515c6c;
|
package/dist/css/variables.css
CHANGED
|
@@ -180,6 +180,7 @@
|
|
|
180
180
|
--cat-color-ui-border-dark: 215, 219, 224;
|
|
181
181
|
--cat-color-ui-border-focus: 0, 113, 255;
|
|
182
182
|
--cat-color-ui-border-quote: 105, 118, 135;
|
|
183
|
+
--cat-color-ui-border-card: 0, 0, 0, 0;
|
|
183
184
|
--cat-color-ui-font-base: 0, 0, 0;
|
|
184
185
|
--cat-color-ui-font-base-inverted: 255, 255, 255;
|
|
185
186
|
--cat-color-ui-font-muted: 81, 92, 108;
|
package/dist/export/figma.json
CHANGED
package/dist/export/theme.json
CHANGED
package/dist/js/variables.d.ts
CHANGED
|
@@ -179,6 +179,7 @@ export const colorUiBorderDefault : string;
|
|
|
179
179
|
export const colorUiBorderDark : string;
|
|
180
180
|
export const colorUiBorderFocus : string;
|
|
181
181
|
export const colorUiBorderQuote : string;
|
|
182
|
+
export const colorUiBorderCard : string;
|
|
182
183
|
export const colorUiFontBase : string;
|
|
183
184
|
export const colorUiFontBaseInverted : string;
|
|
184
185
|
export const colorUiFontMuted : string;
|
package/dist/js/variables.js
CHANGED
|
@@ -179,6 +179,7 @@ export const colorUiBorderDefault = "#ebecf0";
|
|
|
179
179
|
export const colorUiBorderDark = "#d7dbe0";
|
|
180
180
|
export const colorUiBorderFocus = "#0071ff";
|
|
181
181
|
export const colorUiBorderQuote = "#697687";
|
|
182
|
+
export const colorUiBorderCard = "#00000000";
|
|
182
183
|
export const colorUiFontBase = "#000000";
|
|
183
184
|
export const colorUiFontBaseInverted = "#ffffff";
|
|
184
185
|
export const colorUiFontMuted = "#515c6c";
|
package/dist/json/variables.json
CHANGED
|
@@ -75,6 +75,7 @@ $cat-font-weight-body: var(--cat-font-weight-body, 400) !default;
|
|
|
75
75
|
$cat-font-weight-head: var(--cat-font-weight-head, 600) !default;
|
|
76
76
|
$cat-font-family-emoji: var(--cat-font-family-emoji, '') !default;
|
|
77
77
|
$cat-font-family-mono: var(--cat-font-family-mono, '') !default;
|
|
78
|
+
$cat-color-ui-border-card: var(--cat-border-color-card, 0, 0, 0, 0) !default;
|
|
78
79
|
$cat-color-ui-border-focus: var(--cat-border-color-focus, 0, 113, 255) !default;
|
|
79
80
|
$cat-color-ui-background-input-autofill: 232, 240, 254 !default;
|
|
80
81
|
$cat-color-base-red-700: 158, 38, 9 !default;
|
|
@@ -487,7 +488,8 @@ $tokens: (
|
|
|
487
488
|
'default': $cat-color-ui-border-default,
|
|
488
489
|
'dark': $cat-color-ui-border-dark,
|
|
489
490
|
'focus': $cat-color-ui-border-focus,
|
|
490
|
-
'quote': $cat-color-ui-border-quote
|
|
491
|
+
'quote': $cat-color-ui-border-quote,
|
|
492
|
+
'card': $cat-color-ui-border-card
|
|
491
493
|
),
|
|
492
494
|
'font': (
|
|
493
495
|
'base': $cat-color-ui-font-base,
|