@blackbaud/skyux-design-tokens 0.0.25 → 0.0.27

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/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # 0.0.27 (2023-06-22)
2
+
3
+ - Updated `sky-theme-modern-background-color-disabled`. [#63](https://github.com/blackbaud/skyux-design-tokens/pull/63)
4
+
5
+ # 0.0.26 (2023-03-10)
6
+
7
+ - Added new blue-05 color. [#61](https://github.com/blackbaud/skyux-design-tokens/pull/61)
8
+
1
9
  # 0.0.25 (2022-04-11)
2
10
 
3
11
  - Updated the SCSS mixins to implement `@use` modules. #60
@@ -18,7 +18,8 @@
18
18
  "30": "#81d4f7",
19
19
  "50": "#00b4f1",
20
20
  "70": "#007ca6",
21
- "75": "#0974a1"
21
+ "75": "#0974a1",
22
+ "05": "#ebfbff"
22
23
  },
23
24
  "green": {
24
25
  "30": "#b7da9b",
@@ -83,7 +83,7 @@
83
83
  "neutral-light": "#fcfcfc",
84
84
  "neutral-medium": "#ededee",
85
85
  "primary-dark": "#1870B8",
86
- "disabled": "#d2d2d2",
86
+ "disabled": "#ededee",
87
87
  "page-default": "#fcfcfc"
88
88
  },
89
89
  "border-color": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blackbaud/skyux-design-tokens",
3
- "version": "0.0.25",
3
+ "version": "0.0.27",
4
4
  "description": "Design tokens for SKY UX",
5
5
  "homepage": "https://github.com/blackbaud/skyux-design-tokens",
6
6
  "license": "MIT",
@@ -45,7 +45,7 @@ $sky-theme-modern-text-color-action-primary: #1870B8 !default;
45
45
  $sky-theme-modern-background-color-neutral-light: #fcfcfc !default;
46
46
  $sky-theme-modern-background-color-neutral-medium: #ededee !default;
47
47
  $sky-theme-modern-background-color-primary-dark: #1870B8 !default;
48
- $sky-theme-modern-background-color-disabled: #d2d2d2 !default;
48
+ $sky-theme-modern-background-color-disabled: #ededee !default;
49
49
  $sky-theme-modern-background-color-page-default: #fcfcfc !default;
50
50
  $sky-theme-modern-border-color-neutral-light: #ededee !default;
51
51
  $sky-theme-modern-border-color-neutral-medium: #d2d2d2 !default;
@@ -14,6 +14,7 @@ $sky-color-blue-30: #81d4f7 !default;
14
14
  $sky-color-blue-50: #00b4f1 !default;
15
15
  $sky-color-blue-70: #007ca6 !default;
16
16
  $sky-color-blue-75: #0974a1 !default;
17
+ $sky-color-blue-05: #ebfbff !default;
17
18
  $sky-color-green-30: #b7da9b !default;
18
19
  $sky-color-green-50: #72bf44 !default;
19
20
  $sky-color-yellow-30: #ffd597 !default;
@@ -14,6 +14,7 @@ color:
14
14
  "100": &color-gray-100 "#282b31"
15
15
  "105": &color-gray-105 "#212327"
16
16
  blue:
17
+ "05": &color-blue-05 "#ebfbff"
17
18
  "10": &color-blue-10 "#c1e8fb"
18
19
  "30": &color-blue-30 "#81d4f7"
19
20
  "50": &color-blue-50 "#00b4f1"
@@ -74,7 +74,7 @@ background-color:
74
74
  neutral-light: *color-gray-005
75
75
  neutral-medium: *color-gray-07
76
76
  primary-dark: *color-blue-74
77
- disabled: *color-gray-15
77
+ disabled: *color-gray-07
78
78
  page-default: *color-gray-005
79
79
 
80
80
  border-color:
@@ -276,4 +276,3 @@ mode:
276
276
  elevation:
277
277
  0-bordered:
278
278
  border: *color-gray-70
279
-