@haiilo/catalyst-tokens 0.7.1 → 0.8.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
|
@@ -137,6 +137,8 @@
|
|
|
137
137
|
--cat-color-ui-background-skeleton-highlight: 215, 219, 224;
|
|
138
138
|
--cat-color-ui-background-tooltip: 255, 255, 255;
|
|
139
139
|
--cat-color-ui-background-avatar: 105, 118, 135;
|
|
140
|
+
--cat-color-ui-background-modal-body: 255, 255, 255;
|
|
141
|
+
--cat-color-ui-background-modal-wrapper: 0, 0, 0;
|
|
140
142
|
--cat-color-ui-border-light: 248, 248, 251;
|
|
141
143
|
--cat-color-ui-border-default: 235, 236, 240;
|
|
142
144
|
--cat-color-ui-border-dark: 215, 219, 224;
|
|
@@ -198,6 +200,9 @@
|
|
|
198
200
|
--cat-size-line-mono-m: 1.125rem;
|
|
199
201
|
--cat-size-line-mono-s: 1rem;
|
|
200
202
|
--cat-size-line-mono-xs: 0.875rem;
|
|
203
|
+
--cat-size-modal-s: 400px;
|
|
204
|
+
--cat-size-modal-m: 600px;
|
|
205
|
+
--cat-size-modal-l: 800px;
|
|
201
206
|
--cat-size-screen-xs: 540px;
|
|
202
207
|
--cat-size-screen-s: 768px;
|
|
203
208
|
--cat-size-screen-m: 992px;
|
package/dist/js/_variables.d.ts
CHANGED
|
@@ -136,6 +136,8 @@ export const ColorUiBackgroundSkeleton : string;
|
|
|
136
136
|
export const ColorUiBackgroundSkeletonHighlight : string;
|
|
137
137
|
export const ColorUiBackgroundTooltip : string;
|
|
138
138
|
export const ColorUiBackgroundAvatar : string;
|
|
139
|
+
export const ColorUiBackgroundModalBody : string;
|
|
140
|
+
export const ColorUiBackgroundModalWrapper : string;
|
|
139
141
|
export const ColorUiBorderLight : string;
|
|
140
142
|
export const ColorUiBorderDefault : string;
|
|
141
143
|
export const ColorUiBorderDark : string;
|
|
@@ -197,6 +199,9 @@ export const SizeLineMonoL : string;
|
|
|
197
199
|
export const SizeLineMonoM : string;
|
|
198
200
|
export const SizeLineMonoS : string;
|
|
199
201
|
export const SizeLineMonoXs : string;
|
|
202
|
+
export const SizeModalS : string;
|
|
203
|
+
export const SizeModalM : string;
|
|
204
|
+
export const SizeModalL : string;
|
|
200
205
|
export const SizeScreenXs : string;
|
|
201
206
|
export const SizeScreenS : string;
|
|
202
207
|
export const SizeScreenM : string;
|
package/dist/js/_variables.js
CHANGED
|
@@ -136,6 +136,8 @@ export const ColorUiBackgroundSkeleton = "#ebecf0";
|
|
|
136
136
|
export const ColorUiBackgroundSkeletonHighlight = "#d7dbe0";
|
|
137
137
|
export const ColorUiBackgroundTooltip = "#ffffff";
|
|
138
138
|
export const ColorUiBackgroundAvatar = "#697687";
|
|
139
|
+
export const ColorUiBackgroundModalBody = "#ffffff";
|
|
140
|
+
export const ColorUiBackgroundModalWrapper = "#000000";
|
|
139
141
|
export const ColorUiBorderLight = "#f8f8fb";
|
|
140
142
|
export const ColorUiBorderDefault = "#ebecf0";
|
|
141
143
|
export const ColorUiBorderDark = "#d7dbe0";
|
|
@@ -197,6 +199,9 @@ export const SizeLineMonoL = "1.25rem";
|
|
|
197
199
|
export const SizeLineMonoM = "1.125rem";
|
|
198
200
|
export const SizeLineMonoS = "1rem";
|
|
199
201
|
export const SizeLineMonoXs = "0.875rem";
|
|
202
|
+
export const SizeModalS = "400rem";
|
|
203
|
+
export const SizeModalM = "600rem";
|
|
204
|
+
export const SizeModalL = "800rem";
|
|
200
205
|
export const SizeScreenXs = "540rem";
|
|
201
206
|
export const SizeScreenS = "768rem";
|
|
202
207
|
export const SizeScreenM = "992rem";
|
|
@@ -22,6 +22,9 @@ $cat-size-screen-l: 1200px !default;
|
|
|
22
22
|
$cat-size-screen-m: 992px !default;
|
|
23
23
|
$cat-size-screen-s: 768px !default;
|
|
24
24
|
$cat-size-screen-xs: 540px !default;
|
|
25
|
+
$cat-size-modal-l: 800px !default;
|
|
26
|
+
$cat-size-modal-m: 600px !default;
|
|
27
|
+
$cat-size-modal-s: 400px !default;
|
|
25
28
|
$cat-size-line-mono-xs: 0.875rem !default;
|
|
26
29
|
$cat-size-line-mono-s: 1rem !default;
|
|
27
30
|
$cat-size-line-mono-m: 1.125rem !default;
|
|
@@ -162,6 +165,8 @@ $cat-color-ui-border-input: $cat-color-base-neutral-300 !default;
|
|
|
162
165
|
$cat-color-ui-border-dark: $cat-color-base-neutral-300 !default;
|
|
163
166
|
$cat-color-ui-border-default: $cat-color-base-neutral-200 !default;
|
|
164
167
|
$cat-color-ui-border-light: $cat-color-base-neutral-100 !default;
|
|
168
|
+
$cat-color-ui-background-modal-wrapper: $cat-color-base-neutral-900 !default;
|
|
169
|
+
$cat-color-ui-background-modal-body: $cat-color-base-neutral-0 !default;
|
|
165
170
|
$cat-color-ui-background-avatar: $cat-color-base-neutral-400 !default;
|
|
166
171
|
$cat-color-ui-background-tooltip: $cat-color-base-neutral-0 !default;
|
|
167
172
|
$cat-color-ui-background-skeleton-highlight: $cat-color-base-neutral-300 !default;
|
|
@@ -389,7 +394,11 @@ $tokens: (
|
|
|
389
394
|
'skeleton': $cat-color-ui-background-skeleton,
|
|
390
395
|
'skeletonHighlight': $cat-color-ui-background-skeleton-highlight,
|
|
391
396
|
'tooltip': $cat-color-ui-background-tooltip,
|
|
392
|
-
'avatar': $cat-color-ui-background-avatar
|
|
397
|
+
'avatar': $cat-color-ui-background-avatar,
|
|
398
|
+
'modal': (
|
|
399
|
+
'body': $cat-color-ui-background-modal-body,
|
|
400
|
+
'wrapper': $cat-color-ui-background-modal-wrapper
|
|
401
|
+
)
|
|
393
402
|
),
|
|
394
403
|
'border': (
|
|
395
404
|
'light': $cat-color-ui-border-light,
|
|
@@ -489,6 +498,11 @@ $tokens: (
|
|
|
489
498
|
'xs': $cat-size-line-mono-xs
|
|
490
499
|
)
|
|
491
500
|
),
|
|
501
|
+
'modal': (
|
|
502
|
+
's': $cat-size-modal-s,
|
|
503
|
+
'm': $cat-size-modal-m,
|
|
504
|
+
'l': $cat-size-modal-l
|
|
505
|
+
),
|
|
492
506
|
'screen': (
|
|
493
507
|
'xs': $cat-size-screen-xs,
|
|
494
508
|
's': $cat-size-screen-s,
|