@haiilo/catalyst-tokens 0.1.3 → 0.1.4

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.
@@ -49,7 +49,6 @@
49
49
  --cat-asset-font-lato-woff2-thin-italic: "Lato-ThinItalic.woff2";
50
50
  --cat-asset-font-azeret-mono-name: "Azeret Mono";
51
51
  --cat-asset-font-azeret-mono-woff2-regular: "AzeretMono-Regular.woff2";
52
- --cat-asset-font-azeret-mono-woff2-semi-bold: "AzeretMono-SemiBold.woff2";
53
52
  --cat-color-base-neutral-0: 255, 255, 255;
54
53
  --cat-color-base-neutral-100: 248, 248, 251;
55
54
  --cat-color-base-neutral-200: 235, 236, 240;
@@ -133,6 +132,8 @@
133
132
  --cat-color-ui-background-body: 255, 255, 255;
134
133
  --cat-color-ui-background-interaction: 32, 127, 138;
135
134
  --cat-color-ui-background-notification: 217, 52, 13;
135
+ --cat-color-ui-background-skeleton: 235, 236, 240;
136
+ --cat-color-ui-background-skeleton-highlight: 215, 219, 224;
136
137
  --cat-color-ui-border-default: 235, 236, 240;
137
138
  --cat-color-ui-border-dark: 215, 219, 224;
138
139
  --cat-color-ui-border-focus: 0, 113, 255;
@@ -48,7 +48,6 @@ export const AssetFontLatoWoffThinItalic : string;
48
48
  export const AssetFontLatoWoff2ThinItalic : string;
49
49
  export const AssetFontAzeretMonoName : string;
50
50
  export const AssetFontAzeretMonoWoff2Regular : string;
51
- export const AssetFontAzeretMonoWoff2SemiBold : string;
52
51
  export const ColorBaseNeutral0 : string;
53
52
  export const ColorBaseNeutral100 : string;
54
53
  export const ColorBaseNeutral200 : string;
@@ -132,6 +131,8 @@ export const ColorUiBackgroundCanvas : string;
132
131
  export const ColorUiBackgroundBody : string;
133
132
  export const ColorUiBackgroundInteraction : string;
134
133
  export const ColorUiBackgroundNotification : string;
134
+ export const ColorUiBackgroundSkeleton : string;
135
+ export const ColorUiBackgroundSkeletonHighlight : string;
135
136
  export const ColorUiBorderDefault : string;
136
137
  export const ColorUiBorderDark : string;
137
138
  export const ColorUiBorderFocus : string;
@@ -48,7 +48,6 @@ export const AssetFontLatoWoffThinItalic = "Lato-ThinItalic.woff";
48
48
  export const AssetFontLatoWoff2ThinItalic = "Lato-ThinItalic.woff2";
49
49
  export const AssetFontAzeretMonoName = "Azeret Mono";
50
50
  export const AssetFontAzeretMonoWoff2Regular = "AzeretMono-Regular.woff2";
51
- export const AssetFontAzeretMonoWoff2SemiBold = "AzeretMono-SemiBold.woff2";
52
51
  export const ColorBaseNeutral0 = "#ffffff";
53
52
  export const ColorBaseNeutral100 = "#f8f8fb";
54
53
  export const ColorBaseNeutral200 = "#ebecf0";
@@ -132,6 +131,8 @@ export const ColorUiBackgroundCanvas = "#f8f8fb";
132
131
  export const ColorUiBackgroundBody = "#ffffff";
133
132
  export const ColorUiBackgroundInteraction = "#207f8a";
134
133
  export const ColorUiBackgroundNotification = "#d9340d";
134
+ export const ColorUiBackgroundSkeleton = "#ebecf0";
135
+ export const ColorUiBackgroundSkeletonHighlight = "#d7dbe0";
135
136
  export const ColorUiBorderDefault = "#ebecf0";
136
137
  export const ColorUiBorderDark = "#d7dbe0";
137
138
  export const ColorUiBorderFocus = "#0071ff";
@@ -92,7 +92,6 @@ $cat-color-base-neutral-300: 215, 219, 224 !default;
92
92
  $cat-color-base-neutral-200: 235, 236, 240 !default;
93
93
  $cat-color-base-neutral-100: 248, 248, 251 !default;
94
94
  $cat-color-base-neutral-0: 255, 255, 255 !default;
95
- $cat-asset-font-azeret-mono-woff2-semi-bold: "AzeretMono-SemiBold.woff2" !default;
96
95
  $cat-asset-font-azeret-mono-woff2-regular: "AzeretMono-Regular.woff2" !default;
97
96
  $cat-asset-font-azeret-mono-name: "Azeret Mono" !default;
98
97
  $cat-asset-font-lato-woff2-thin-italic: "Lato-ThinItalic.woff2" !default;
@@ -158,6 +157,8 @@ $cat-color-ui-font-body: var(--cat-font-color-body, $cat-color-base-neutral-900)
158
157
  $cat-color-ui-font-head: var(--cat-font-color-head, $cat-color-base-neutral-900) !default;
159
158
  $cat-color-ui-border-dark: $cat-color-base-neutral-300 !default;
160
159
  $cat-color-ui-border-default: $cat-color-base-neutral-200 !default;
160
+ $cat-color-ui-background-skeleton-highlight: $cat-color-base-neutral-300 !default;
161
+ $cat-color-ui-background-skeleton: $cat-color-base-neutral-200 !default;
161
162
  $cat-color-ui-background-notification: $cat-color-base-red-400 !default;
162
163
  $cat-color-ui-background-interaction: $cat-color-base-brand-400 !default;
163
164
  $cat-color-ui-background-body: $cat-color-base-neutral-0 !default;
@@ -263,8 +264,7 @@ $tokens: (
263
264
  ),
264
265
  'azeretMono': (
265
266
  'name': $cat-asset-font-azeret-mono-name,
266
- 'woff2Regular': $cat-asset-font-azeret-mono-woff2-regular,
267
- 'woff2SemiBold': $cat-asset-font-azeret-mono-woff2-semi-bold
267
+ 'woff2Regular': $cat-asset-font-azeret-mono-woff2-regular
268
268
  )
269
269
  )
270
270
  ),
@@ -377,7 +377,9 @@ $tokens: (
377
377
  'canvas': $cat-color-ui-background-canvas,
378
378
  'body': $cat-color-ui-background-body,
379
379
  'interaction': $cat-color-ui-background-interaction,
380
- 'notification': $cat-color-ui-background-notification
380
+ 'notification': $cat-color-ui-background-notification,
381
+ 'skeleton': $cat-color-ui-background-skeleton,
382
+ 'skeletonHighlight': $cat-color-ui-background-skeleton-highlight
381
383
  ),
382
384
  'border': (
383
385
  'default': $cat-color-ui-border-default,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haiilo/catalyst-tokens",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Design tokens for Catalyst Design System",
5
5
  "license": "MIT",
6
6
  "repository": {