@blackbaud/skyux-design-tokens 0.0.26 → 0.0.28

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.28 (2023-10-11)
2
+
3
+ - Added `neutral-medium-dark` token in modern. [#64](https://github.com/blackbaud/skyux-design-tokens/pull/64)
4
+
5
+ # 0.0.27 (2023-06-22)
6
+
7
+ - Updated `sky-theme-modern-background-color-disabled`. [#63](https://github.com/blackbaud/skyux-design-tokens/pull/63)
8
+
1
9
  # 0.0.26 (2023-03-10)
2
10
 
3
11
  - Added new blue-05 color. [#61](https://github.com/blackbaud/skyux-design-tokens/pull/61)
@@ -3,6 +3,7 @@
3
3
  "gray": {
4
4
  "15": "#d2d2d2",
5
5
  "30": "#c0c2c5",
6
+ "50": "#8c929c",
6
7
  "70": "#686c73",
7
8
  "102": "#27292c",
8
9
  "103": "#232427",
@@ -83,12 +84,13 @@
83
84
  "neutral-light": "#fcfcfc",
84
85
  "neutral-medium": "#ededee",
85
86
  "primary-dark": "#1870B8",
86
- "disabled": "#d2d2d2",
87
+ "disabled": "#ededee",
87
88
  "page-default": "#fcfcfc"
88
89
  },
89
90
  "border-color": {
90
91
  "neutral-light": "#ededee",
91
92
  "neutral-medium": "#d2d2d2",
93
+ "neutral-medium-dark": "#8c929c",
92
94
  "primary-dark": "#1870B8"
93
95
  },
94
96
  "padding": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blackbaud/skyux-design-tokens",
3
- "version": "0.0.26",
3
+ "version": "0.0.28",
4
4
  "description": "Design tokens for SKY UX",
5
5
  "homepage": "https://github.com/blackbaud/skyux-design-tokens",
6
6
  "license": "MIT",
@@ -1,5 +1,6 @@
1
1
  $sky-theme-modern-color-gray-15: #d2d2d2 !default;
2
2
  $sky-theme-modern-color-gray-30: #c0c2c5 !default;
3
+ $sky-theme-modern-color-gray-50: #8c929c !default;
3
4
  $sky-theme-modern-color-gray-70: #686c73 !default;
4
5
  $sky-theme-modern-color-gray-102: #27292c !default;
5
6
  $sky-theme-modern-color-gray-103: #232427 !default;
@@ -45,10 +46,11 @@ $sky-theme-modern-text-color-action-primary: #1870B8 !default;
45
46
  $sky-theme-modern-background-color-neutral-light: #fcfcfc !default;
46
47
  $sky-theme-modern-background-color-neutral-medium: #ededee !default;
47
48
  $sky-theme-modern-background-color-primary-dark: #1870B8 !default;
48
- $sky-theme-modern-background-color-disabled: #d2d2d2 !default;
49
+ $sky-theme-modern-background-color-disabled: #ededee !default;
49
50
  $sky-theme-modern-background-color-page-default: #fcfcfc !default;
50
51
  $sky-theme-modern-border-color-neutral-light: #ededee !default;
51
52
  $sky-theme-modern-border-color-neutral-medium: #d2d2d2 !default;
53
+ $sky-theme-modern-border-color-neutral-medium-dark: #8c929c !default;
52
54
  $sky-theme-modern-border-color-primary-dark: #1870B8 !default;
53
55
  $sky-theme-modern-padding-even-sm: 10px 10px 10px 10px !default;
54
56
  $sky-theme-modern-padding-even-md: 15px 15px 15px 15px !default;
@@ -7,6 +7,7 @@ color:
7
7
  "07": &color-gray-07 "#ededee"
8
8
  "15": &color-gray-15 "#d2d2d2"
9
9
  "30": &color-gray-30 "#c0c2c5"
10
+ "50": &color-gray-50 "#8c929c"
10
11
  "70": &color-gray-70 "#686c73"
11
12
  "102": &color-gray-102 "#27292c"
12
13
  "103": &color-gray-103 "#232427"
@@ -74,12 +75,13 @@ background-color:
74
75
  neutral-light: *color-gray-005
75
76
  neutral-medium: *color-gray-07
76
77
  primary-dark: *color-blue-74
77
- disabled: *color-gray-15
78
+ disabled: *color-gray-07
78
79
  page-default: *color-gray-005
79
80
 
80
81
  border-color:
81
82
  neutral-light: *color-gray-07
82
83
  neutral-medium: *color-gray-15
84
+ neutral-medium-dark: *color-gray-50
83
85
  primary-dark: *color-blue-74
84
86
 
85
87
  padding:
@@ -276,4 +278,3 @@ mode:
276
278
  elevation:
277
279
  0-bordered:
278
280
  border: *color-gray-70
279
-