@sproutsocial/seeds-color 2.0.0 → 2.1.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.925",
13
+ "alpha": "1.000",
14
+ "blue": "0.945",
15
+ "green": "0.604"
16
+ }
17
+ }
18
+ }
19
+ ]
20
+ }
@@ -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.800",
13
+ "alpha": "1.000",
14
+ "blue": "0.918",
15
+ "green": "0.945"
16
+ }
17
+ }
18
+ }
19
+ ]
20
+ }
@@ -12,6 +12,7 @@
12
12
  --color-green-1000: #08422f;
13
13
  --color-green-1100: #002b20;
14
14
  --color-teal-0: #e5f9f5;
15
+ --color-teal-50: #ccf1ea;
15
16
  --color-teal-100: #cdf7ef;
16
17
  --color-teal-200: #b3f2e6;
17
18
  --color-teal-300: #7dead5;
@@ -63,6 +64,7 @@
63
64
  --color-magenta-100: #f9e3fc;
64
65
  --color-magenta-200: #f4c4f7;
65
66
  --color-magenta-300: #edadf2;
67
+ --color-magenta-350: #ec9af1;
66
68
  --color-magenta-400: #f282f5;
67
69
  --color-magenta-500: #db61db;
68
70
  --color-magenta-600: #c44eb9;
@@ -11,6 +11,7 @@ export const COLOR_GREEN_900 : string;
11
11
  export const COLOR_GREEN_1000 : string;
12
12
  export const COLOR_GREEN_1100 : string;
13
13
  export const COLOR_TEAL_0 : string;
14
+ export const COLOR_TEAL_50 : string;
14
15
  export const COLOR_TEAL_100 : string;
15
16
  export const COLOR_TEAL_200 : string;
16
17
  export const COLOR_TEAL_300 : string;
@@ -62,6 +63,7 @@ export const COLOR_MAGENTA_0 : string;
62
63
  export const COLOR_MAGENTA_100 : string;
63
64
  export const COLOR_MAGENTA_200 : string;
64
65
  export const COLOR_MAGENTA_300 : string;
66
+ export const COLOR_MAGENTA_350 : string;
65
67
  export const COLOR_MAGENTA_400 : string;
66
68
  export const COLOR_MAGENTA_500 : string;
67
69
  export const COLOR_MAGENTA_600 : string;
@@ -14,6 +14,7 @@ module.exports = {
14
14
  COLOR_GREEN_1000: '#08422f',
15
15
  COLOR_GREEN_1100: '#002b20',
16
16
  COLOR_TEAL_0: '#e5f9f5',
17
+ COLOR_TEAL_50: '#CCF1EA',
17
18
  COLOR_TEAL_100: '#cdf7ef',
18
19
  COLOR_TEAL_200: '#b3f2e6',
19
20
  COLOR_TEAL_300: '#7dead5',
@@ -65,6 +66,7 @@ module.exports = {
65
66
  COLOR_MAGENTA_100: '#f9e3fc',
66
67
  COLOR_MAGENTA_200: '#f4c4f7',
67
68
  COLOR_MAGENTA_300: '#edadf2',
69
+ COLOR_MAGENTA_350: '#EC9AF1',
68
70
  COLOR_MAGENTA_400: '#f282f5',
69
71
  COLOR_MAGENTA_500: '#db61db',
70
72
  COLOR_MAGENTA_600: '#c44eb9',
@@ -11,6 +11,7 @@ $Color-green--900: #006b40;
11
11
  $Color-green--1000: #08422f;
12
12
  $Color-green--1100: #002b20;
13
13
  $Color-teal--0: #e5f9f5;
14
+ $Color-teal--50: #CCF1EA;
14
15
  $Color-teal--100: #cdf7ef;
15
16
  $Color-teal--200: #b3f2e6;
16
17
  $Color-teal--300: #7dead5;
@@ -62,6 +63,7 @@ $Color-magenta--0: #fef0ff;
62
63
  $Color-magenta--100: #f9e3fc;
63
64
  $Color-magenta--200: #f4c4f7;
64
65
  $Color-magenta--300: #edadf2;
66
+ $Color-magenta--350: #EC9AF1;
65
67
  $Color-magenta--400: #f282f5;
66
68
  $Color-magenta--500: #db61db;
67
69
  $Color-magenta--600: #c44eb9;
@@ -93,6 +93,13 @@
93
93
  "blue": 0.9607843137254902,
94
94
  "alpha": 1
95
95
  },
96
+ {
97
+ "name": "Teal 50",
98
+ "red": 0.8,
99
+ "green": 0.9450980392156862,
100
+ "blue": 0.9176470588235294,
101
+ "alpha": 1
102
+ },
96
103
  {
97
104
  "name": "Teal 100",
98
105
  "red": 0.803921568627451,
@@ -450,6 +457,13 @@
450
457
  "blue": 0.9490196078431372,
451
458
  "alpha": 1
452
459
  },
460
+ {
461
+ "name": "Magenta 350",
462
+ "red": 0.9254901960784314,
463
+ "green": 0.6039215686274509,
464
+ "blue": 0.9450980392156862,
465
+ "alpha": 1
466
+ },
453
467
  {
454
468
  "name": "Magenta 400",
455
469
  "red": 0.9490196078431372,
@@ -15,6 +15,7 @@
15
15
  <color name="green_1000">#ff08422f</color>
16
16
  <color name="green_1100">#ff002b20</color>
17
17
  <color name="teal_0">#ffe5f9f5</color>
18
+ <color name="teal_50">#ffccf1ea</color>
18
19
  <color name="teal_100">#ffcdf7ef</color>
19
20
  <color name="teal_200">#ffb3f2e6</color>
20
21
  <color name="teal_300">#ff7dead5</color>
@@ -66,6 +67,7 @@
66
67
  <color name="magenta_100">#fff9e3fc</color>
67
68
  <color name="magenta_200">#fff4c4f7</color>
68
69
  <color name="magenta_300">#ffedadf2</color>
70
+ <color name="magenta_350">#ffec9af1</color>
69
71
  <color name="magenta_400">#fff282f5</color>
70
72
  <color name="magenta_500">#ffdb61db</color>
71
73
  <color name="magenta_600">#ffc44eb9</color>
package/dist/tokens.json CHANGED
@@ -155,6 +155,18 @@
155
155
  "rgb": "rgb(229, 249, 245)"
156
156
  }
157
157
  },
158
+ {
159
+ "category": "teal",
160
+ "sass": "$Color-teal--50",
161
+ "css": "--color-teal--50",
162
+ "javascript": "COLOR_TEAL_50",
163
+ "android": "teal_50",
164
+ "app": "Teal 50",
165
+ "value": {
166
+ "hex": "#CCF1EA",
167
+ "rgb": "rgb(204, 241, 234)"
168
+ }
169
+ },
158
170
  {
159
171
  "category": "teal",
160
172
  "sass": "$Color-teal--100",
@@ -767,6 +779,18 @@
767
779
  "rgb": "rgb(237, 173, 242)"
768
780
  }
769
781
  },
782
+ {
783
+ "category": "magenta",
784
+ "sass": "$Color-magenta--350",
785
+ "css": "--color-magenta--350",
786
+ "javascript": "COLOR_MAGENTA_350",
787
+ "android": "magenta_350",
788
+ "app": "Magenta 350",
789
+ "value": {
790
+ "hex": "#EC9AF1",
791
+ "rgb": "rgb(236, 154, 241)"
792
+ }
793
+ },
770
794
  {
771
795
  "category": "magenta",
772
796
  "sass": "$Color-magenta--400",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sproutsocial/seeds-color",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "Seeds Color Tokens",
5
5
  "main": "dist/seeds-color.js",
6
6
  "types": "dist/seeds-color.d.ts",
@@ -15,7 +15,8 @@
15
15
  "license": "MIT",
16
16
  "scripts": {
17
17
  "build": "node build.js",
18
- "clean": "rm -rf .turbo && rm -rf dist && rm -rf node_modules"
18
+ "clean": "rm -rf .turbo && rm -rf dist",
19
+ "clean:modules": "rm -rf node_modules"
19
20
  },
20
21
  "devDependencies": {
21
22
  "@sproutsocial/seeds-utils": "*"