@sproutsocial/seeds-color 2.2.0 → 2.3.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.
@@ -0,0 +1,20 @@
1
+ {
2
+ "info": {
3
+ "version": 1,
4
+ "author": "xcode"
5
+ },
6
+ "colors": [
7
+ {
8
+ "idiom": "universal",
9
+ "color": {
10
+ "color-space": "srgb",
11
+ "components": {
12
+ "red": "0.114",
13
+ "alpha": "1.000",
14
+ "blue": "0.145",
15
+ "green": "0.145"
16
+ }
17
+ }
18
+ }
19
+ ]
20
+ }
@@ -119,6 +119,7 @@
119
119
  --color-neutral-700: #515e5f;
120
120
  --color-neutral-800: #364141;
121
121
  --color-neutral-900: #273333;
122
+ --color-neutral-950: #1d2525;
122
123
  --color-neutral-1000: #162020;
123
124
  --color-neutral-1100: #040404;
124
125
  --color-yellow-0: #fff8e2;
@@ -118,6 +118,7 @@ export const COLOR_NEUTRAL_600 : string;
118
118
  export const COLOR_NEUTRAL_700 : string;
119
119
  export const COLOR_NEUTRAL_800 : string;
120
120
  export const COLOR_NEUTRAL_900 : string;
121
+ export const COLOR_NEUTRAL_950 : string;
121
122
  export const COLOR_NEUTRAL_1000 : string;
122
123
  export const COLOR_NEUTRAL_1100 : string;
123
124
  export const COLOR_YELLOW_0 : string;
@@ -118,6 +118,7 @@
118
118
  const COLOR_NEUTRAL_700 = '#515e5f';
119
119
  const COLOR_NEUTRAL_800 = '#364141';
120
120
  const COLOR_NEUTRAL_900 = '#273333';
121
+ const COLOR_NEUTRAL_950 = '#1D2525';
121
122
  const COLOR_NEUTRAL_1000 = '#162020';
122
123
  const COLOR_NEUTRAL_1100 = '#040404';
123
124
  const COLOR_YELLOW_0 = '#fff8e2';
@@ -260,6 +261,7 @@ export {
260
261
  COLOR_NEUTRAL_700,
261
262
  COLOR_NEUTRAL_800,
262
263
  COLOR_NEUTRAL_900,
264
+ COLOR_NEUTRAL_950,
263
265
  COLOR_NEUTRAL_1000,
264
266
  COLOR_NEUTRAL_1100,
265
267
  COLOR_YELLOW_0,
@@ -403,6 +405,7 @@ export default {
403
405
  COLOR_NEUTRAL_700,
404
406
  COLOR_NEUTRAL_800,
405
407
  COLOR_NEUTRAL_900,
408
+ COLOR_NEUTRAL_950,
406
409
  COLOR_NEUTRAL_1000,
407
410
  COLOR_NEUTRAL_1100,
408
411
  COLOR_YELLOW_0,
@@ -121,6 +121,7 @@ module.exports = {
121
121
  COLOR_NEUTRAL_700: '#515e5f',
122
122
  COLOR_NEUTRAL_800: '#364141',
123
123
  COLOR_NEUTRAL_900: '#273333',
124
+ COLOR_NEUTRAL_950: '#1D2525',
124
125
  COLOR_NEUTRAL_1000: '#162020',
125
126
  COLOR_NEUTRAL_1100: '#040404',
126
127
  COLOR_YELLOW_0: '#fff8e2',
@@ -118,6 +118,7 @@ $Color-neutral--600: #6e797a;
118
118
  $Color-neutral--700: #515e5f;
119
119
  $Color-neutral--800: #364141;
120
120
  $Color-neutral--900: #273333;
121
+ $Color-neutral--950: #1D2525;
121
122
  $Color-neutral--1000: #162020;
122
123
  $Color-neutral--1100: #040404;
123
124
  $Color-yellow--0: #fff8e2;
@@ -842,6 +842,13 @@
842
842
  "blue": 0.2,
843
843
  "alpha": 1
844
844
  },
845
+ {
846
+ "name": "Neutral 950",
847
+ "red": 0.11372549019607843,
848
+ "green": 0.1450980392156863,
849
+ "blue": 0.1450980392156863,
850
+ "alpha": 1
851
+ },
845
852
  {
846
853
  "name": "Neutral 1000",
847
854
  "red": 0.08627450980392157,
@@ -122,6 +122,7 @@
122
122
  <color name="neutral_700">#ff515e5f</color>
123
123
  <color name="neutral_800">#ff364141</color>
124
124
  <color name="neutral_900">#ff273333</color>
125
+ <color name="neutral_950">#ff1d2525</color>
125
126
  <color name="neutral_1000">#ff162020</color>
126
127
  <color name="neutral_1100">#ff040404</color>
127
128
  <color name="yellow_0">#fffff8e2</color>
package/dist/tokens.json CHANGED
@@ -1439,6 +1439,18 @@
1439
1439
  "rgb": "rgb(39, 51, 51)"
1440
1440
  }
1441
1441
  },
1442
+ {
1443
+ "category": "neutral",
1444
+ "sass": "$Color-neutral--950",
1445
+ "css": "--color-neutral--950",
1446
+ "javascript": "COLOR_NEUTRAL_950",
1447
+ "android": "neutral_950",
1448
+ "app": "Neutral 950",
1449
+ "value": {
1450
+ "hex": "#1D2525",
1451
+ "rgb": "rgb(29, 37, 37)"
1452
+ }
1453
+ },
1442
1454
  {
1443
1455
  "category": "neutral",
1444
1456
  "sass": "$Color-neutral--1000",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sproutsocial/seeds-color",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "description": "Seeds Color Tokens",
5
5
  "main": "dist/seeds-color.js",
6
6
  "module": "dist/seeds-color.esm.js",
@@ -23,6 +23,6 @@
23
23
  "@sproutsocial/seeds-utils": "*"
24
24
  },
25
25
  "engines": {
26
- "node": "^14.15.0 || >=16.0.0"
26
+ "node": ">=20"
27
27
  }
28
28
  }