@haiilo/catalyst-tokens 0.6.0 → 0.7.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/dist/css/_variables.css
CHANGED
|
@@ -142,6 +142,8 @@
|
|
|
142
142
|
--cat-color-ui-border-dark: 215, 219, 224;
|
|
143
143
|
--cat-color-ui-border-focus: 0, 113, 255;
|
|
144
144
|
--cat-color-ui-border-input: 215, 219, 224;
|
|
145
|
+
--cat-color-ui-border-tabs: 215, 219, 224;
|
|
146
|
+
--cat-color-ui-border-active-tab: 32, 127, 138;
|
|
145
147
|
--cat-color-ui-font-head: 0, 0, 0;
|
|
146
148
|
--cat-color-ui-font-body: 0, 0, 0;
|
|
147
149
|
--cat-color-ui-font-mono: 0, 0, 0;
|
package/dist/js/_variables.d.ts
CHANGED
|
@@ -141,6 +141,8 @@ export const ColorUiBorderDefault : string;
|
|
|
141
141
|
export const ColorUiBorderDark : string;
|
|
142
142
|
export const ColorUiBorderFocus : string;
|
|
143
143
|
export const ColorUiBorderInput : string;
|
|
144
|
+
export const ColorUiBorderTabs : string;
|
|
145
|
+
export const ColorUiBorderActiveTab : string;
|
|
144
146
|
export const ColorUiFontHead : string;
|
|
145
147
|
export const ColorUiFontBody : string;
|
|
146
148
|
export const ColorUiFontMono : string;
|
package/dist/js/_variables.js
CHANGED
|
@@ -141,6 +141,8 @@ export const ColorUiBorderDefault = "#ebecf0";
|
|
|
141
141
|
export const ColorUiBorderDark = "#d7dbe0";
|
|
142
142
|
export const ColorUiBorderFocus = "#0071ff";
|
|
143
143
|
export const ColorUiBorderInput = "#d7dbe0";
|
|
144
|
+
export const ColorUiBorderTabs = "#d7dbe0";
|
|
145
|
+
export const ColorUiBorderActiveTab = "#207f8a";
|
|
144
146
|
export const ColorUiFontHead = "#000000";
|
|
145
147
|
export const ColorUiFontBody = "#000000";
|
|
146
148
|
export const ColorUiFontMono = "#000000";
|
|
@@ -156,6 +156,8 @@ $cat-color-ui-font-muted: var(--cat-font-color-muted, $cat-color-base-neutral-40
|
|
|
156
156
|
$cat-color-ui-font-mono: var(--cat-font-color-mono, $cat-color-base-neutral-900) !default;
|
|
157
157
|
$cat-color-ui-font-body: var(--cat-font-color-body, $cat-color-base-neutral-900) !default;
|
|
158
158
|
$cat-color-ui-font-head: var(--cat-font-color-head, $cat-color-base-neutral-900) !default;
|
|
159
|
+
$cat-color-ui-border-active-tab: $cat-color-base-brand-400 !default;
|
|
160
|
+
$cat-color-ui-border-tabs: $cat-color-base-neutral-300 !default;
|
|
159
161
|
$cat-color-ui-border-input: $cat-color-base-neutral-300 !default;
|
|
160
162
|
$cat-color-ui-border-dark: $cat-color-base-neutral-300 !default;
|
|
161
163
|
$cat-color-ui-border-default: $cat-color-base-neutral-200 !default;
|
|
@@ -394,7 +396,9 @@ $tokens: (
|
|
|
394
396
|
'default': $cat-color-ui-border-default,
|
|
395
397
|
'dark': $cat-color-ui-border-dark,
|
|
396
398
|
'focus': $cat-color-ui-border-focus,
|
|
397
|
-
'input': $cat-color-ui-border-input
|
|
399
|
+
'input': $cat-color-ui-border-input,
|
|
400
|
+
'tabs': $cat-color-ui-border-tabs,
|
|
401
|
+
'activeTab': $cat-color-ui-border-active-tab
|
|
398
402
|
),
|
|
399
403
|
'font': (
|
|
400
404
|
'head': $cat-color-ui-font-head,
|