@sage/design-tokens 2.64.0 → 2.65.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.
Files changed (53) hide show
  1. package/android/base.xml +4 -2
  2. package/android/dashboard/darkMode.xml +11 -0
  3. package/android/dashboard/lightMode.xml +11 -0
  4. package/android/origin.xml +108 -97
  5. package/css/base.css +4 -2
  6. package/css/dashboard/darkMode.css +13 -0
  7. package/css/dashboard/lightMode.css +13 -0
  8. package/css/origin.css +108 -97
  9. package/data/tokens.json +1125 -132
  10. package/docs/tokens/base/border-radius/index.html +41 -20
  11. package/docs/tokens/base/border-width/index.html +2 -2
  12. package/docs/tokens/base/box-shadow/index.html +2 -2
  13. package/docs/tokens/base/colors/index.html +23 -2
  14. package/docs/tokens/base/font-families/index.html +2 -2
  15. package/docs/tokens/base/font-sizes/index.html +2 -2
  16. package/docs/tokens/base/font-weights/index.html +2 -2
  17. package/docs/tokens/base/index.html +62 -20
  18. package/docs/tokens/base/line-heights/index.html +2 -2
  19. package/docs/tokens/base/opacity/index.html +2 -2
  20. package/docs/tokens/base/sizing/index.html +2 -2
  21. package/docs/tokens/base/spacing/index.html +2 -2
  22. package/docs/tokens/base/typography/index.html +2 -2
  23. package/docs/tokens/index.html +812 -539
  24. package/docs/tokens/origin/index.html +750 -519
  25. package/docs/tokens/origin/{colors → origin-colors-reference-only}/index.html +751 -520
  26. package/index.js +4 -0
  27. package/ios/base.h +4 -2
  28. package/ios/dashboard/darkMode.h +15 -0
  29. package/ios/dashboard/lightMode.h +15 -0
  30. package/ios/origin.h +108 -97
  31. package/js/base/common.d.ts +3 -1
  32. package/js/base/common.js +4 -2
  33. package/js/base/es6.d.ts +3 -1
  34. package/js/base/es6.js +3 -1
  35. package/js/dashboard/darkMode/common.d.ts +2 -0
  36. package/js/dashboard/darkMode/common.js +13 -0
  37. package/js/dashboard/darkMode/es6.d.ts +5 -0
  38. package/js/dashboard/darkMode/es6.js +8 -0
  39. package/js/dashboard/lightMode/common.d.ts +2 -0
  40. package/js/dashboard/lightMode/common.js +13 -0
  41. package/js/dashboard/lightMode/es6.d.ts +5 -0
  42. package/js/dashboard/lightMode/es6.js +8 -0
  43. package/js/origin/common.d.ts +107 -96
  44. package/js/origin/common.js +108 -97
  45. package/js/origin/es6.d.ts +107 -96
  46. package/js/origin/es6.js +107 -96
  47. package/package.json +1 -1
  48. package/sage-design-tokens-2.65.0.tgz +0 -0
  49. package/scss/base.scss +4 -2
  50. package/scss/dashboard/darkMode.scss +10 -0
  51. package/scss/dashboard/lightMode.scss +10 -0
  52. package/scss/origin.scss +108 -97
  53. package/sage-design-tokens-2.64.0.tgz +0 -0
package/js/origin/es6.js CHANGED
@@ -5,100 +5,111 @@ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
5
5
  export default {
6
6
  metaName: 'Origin Token Set',
7
7
  metaPublic: 'true',
8
- colorsJade100: '#8ff8b7ff',
9
- colorsJade200: '#44ed90ff',
10
- colorsJade300: '#00ca71ff',
11
- colorsJade400: '#00a65cff',
12
- colorsJade500: '#00884aff',
13
- colorsJade600: '#006d3bff',
14
- colorsJade700: '#00522cff',
15
- colorsJade800: '#00361eff',
16
- colorsJade900: '#001b0fff',
17
- colorsJade010: '#f2fef7ff',
18
- colorsJade050: '#c4fcd8ff',
19
- colorsNavy100: '#89d7edff',
20
- colorsNavy200: '#65bedfff',
21
- colorsNavy300: '#41a5d1ff',
22
- colorsNavy400: '#1d8cc3ff',
23
- colorsNavy500: '#0e74a7ff',
24
- colorsNavy600: '#095b84ff',
25
- colorsNavy700: '#054262ff',
26
- colorsNavy800: '#00293fff',
27
- colorsNavy900: '#001520ff',
28
- colorsNavy010: '#f4fcfeff',
29
- colorsNavy050: '#caf1fcff',
30
- colorsTeal100: '#89edeaff',
31
- colorsTeal200: '#5bcfcdff',
32
- colorsTeal300: '#2eb2b1ff',
33
- colorsTeal400: '#009494ff',
34
- colorsTeal500: '#007776ff',
35
- colorsTeal600: '#006362ff',
36
- colorsTeal700: '#004a4aff',
37
- colorsTeal800: '#003231ff',
38
- colorsTeal900: '#001919ff',
39
- colorsTeal010: '#f4fefeff',
40
- colorsTeal050: '#c3faf8ff',
41
- colorsCherry100: '#f7b3c2ff',
42
- colorsCherry200: '#ed94aaff',
43
- colorsCherry300: '#e27491ff',
44
- colorsCherry400: '#d85579ff',
45
- colorsCherry500: '#ba3c63ff',
46
- colorsCherry600: '#95304fff',
47
- colorsCherry700: '#70243bff',
48
- colorsCherry800: '#4a1828ff',
49
- colorsCherry900: '#250c14ff',
50
- colorsCherry010: '#fef5f7ff',
51
- colorsCherry050: '#fad4deff',
52
- colorsTerra100: '#ffbca6ff',
53
- colorsTerra200: '#f59a83ff',
54
- colorsTerra300: '#ea7961ff',
55
- colorsTerra400: '#e0583eff',
56
- colorsTerra500: '#c94633ff',
57
- colorsTerra600: '#a13829ff',
58
- colorsTerra700: '#782a1eff',
59
- colorsTerra800: '#501c14ff',
60
- colorsTerra900: '#280e0aff',
61
- colorsTerra010: '#fff7f5ff',
62
- colorsTerra050: '#ffdcd1ff',
63
- colorsAmber100: '#ffe290ff',
64
- colorsAmber200: '#f5ce55ff',
65
- colorsAmber300: '#efab2fff',
66
- colorsAmber400: '#e98709ff',
67
- colorsAmber500: '#c15708ff',
68
- colorsAmber600: '#9b4609ff',
69
- colorsAmber700: '#75330aff',
70
- colorsAmber800: '#4f220bff',
71
- colorsAmber900: '#281106ff',
72
- colorsAmber010: '#fffcefff',
73
- colorsAmber050: '#fff0c3ff',
74
- colorsMalachite100: '#8df79fff',
75
- colorsMalachite200: '#42eb64ff',
76
- colorsMalachite300: '#00d639ff',
77
- colorsMalachite400: '#00af2dff',
78
- colorsMalachite500: '#008a21ff',
79
- colorsMalachite600: '#006716ff',
80
- colorsMalachite700: '#00460cff',
81
- colorsMalachite800: '#002f08ff',
82
- colorsMalachite900: '#001704ff',
83
- colorsMalachite010: '#effcf0ff',
84
- colorsMalachite050: '#c1fac7ff',
85
- colorsGray100: '#e6e6e6ff',
86
- colorsGray200: '#ccccccff',
87
- colorsGray300: '#b3b3b3ff',
88
- colorsGray400: '#999999ff',
89
- colorsGray500: '#808080ff',
90
- colorsGray600: '#666666ff',
91
- colorsGray700: '#4d4d4dff',
92
- colorsGray800: '#333333ff',
93
- colorsGray900: '#191919ff',
94
- colorsGray1000: '#000000ff',
95
- colorsGray000: '#ffffffff',
96
- colorsGray010: '#fcfcfcff',
97
- colorsGray050: '#f2f2f2ff',
98
- colorsSkin400: '#ddb89eff',
99
- colorsSkin500: '#e84d4fff',
100
- colorsSkin600: '#b26e3dff',
101
- colorsSkin700: '#3a2417ff',
102
- colorsFuchsia400: '#bf47c3ff',
103
- colorsFuchsia500: '#b832bcff'
8
+ originColorsReferenceOnlyYin100: '#000000ff',
9
+ originColorsReferenceOnlyYin010: '#0000001a',
10
+ originColorsReferenceOnlyYin020: '#00000033',
11
+ originColorsReferenceOnlyYin030: '#0000004d',
12
+ originColorsReferenceOnlyYin055: '#0000008c',
13
+ originColorsReferenceOnlyYin065: '#000000a6',
14
+ originColorsReferenceOnlyYin075: '#000000bf',
15
+ originColorsReferenceOnlyYin090: '#000000e6',
16
+ originColorsReferenceOnlyYang100: '#ffffffff',
17
+ originColorsReferenceOnlyYang030: '#ffffff4d',
18
+ originColorsReferenceOnlyYang080: '#ffffffcc',
19
+ originColorsReferenceOnlyMalachite100: '#8df79fff',
20
+ originColorsReferenceOnlyMalachite200: '#42eb64ff',
21
+ originColorsReferenceOnlyMalachite300: '#00d639ff',
22
+ originColorsReferenceOnlyMalachite400: '#00af2dff',
23
+ originColorsReferenceOnlyMalachite500: '#008a21ff',
24
+ originColorsReferenceOnlyMalachite600: '#006716ff',
25
+ originColorsReferenceOnlyMalachite700: '#00460cff',
26
+ originColorsReferenceOnlyMalachite800: '#002f08ff',
27
+ originColorsReferenceOnlyMalachite900: '#001704ff',
28
+ originColorsReferenceOnlyMalachite010: '#effcf0ff',
29
+ originColorsReferenceOnlyMalachite050: '#c1fac7ff',
30
+ originColorsReferenceOnlyJade100: '#8ff8b7ff',
31
+ originColorsReferenceOnlyJade200: '#44ed90ff',
32
+ originColorsReferenceOnlyJade300: '#00ca71ff',
33
+ originColorsReferenceOnlyJade400: '#00a65cff',
34
+ originColorsReferenceOnlyJade500: '#00884aff',
35
+ originColorsReferenceOnlyJade600: '#006d3bff',
36
+ originColorsReferenceOnlyJade700: '#00522cff',
37
+ originColorsReferenceOnlyJade800: '#00361eff',
38
+ originColorsReferenceOnlyJade900: '#001b0fff',
39
+ originColorsReferenceOnlyJade010: '#f2fef7ff',
40
+ originColorsReferenceOnlyJade050: '#c4fcd8ff',
41
+ originColorsReferenceOnlyNavy100: '#89d7edff',
42
+ originColorsReferenceOnlyNavy200: '#65bedfff',
43
+ originColorsReferenceOnlyNavy300: '#41a5d1ff',
44
+ originColorsReferenceOnlyNavy400: '#1d8cc3ff',
45
+ originColorsReferenceOnlyNavy500: '#0e74a7ff',
46
+ originColorsReferenceOnlyNavy600: '#095b84ff',
47
+ originColorsReferenceOnlyNavy700: '#054262ff',
48
+ originColorsReferenceOnlyNavy800: '#00293fff',
49
+ originColorsReferenceOnlyNavy900: '#001520ff',
50
+ originColorsReferenceOnlyNavy010: '#f4fcfeff',
51
+ originColorsReferenceOnlyNavy050: '#caf1fcff',
52
+ originColorsReferenceOnlyTeal100: '#89edeaff',
53
+ originColorsReferenceOnlyTeal200: '#5bcfcdff',
54
+ originColorsReferenceOnlyTeal300: '#2eb2b1ff',
55
+ originColorsReferenceOnlyTeal400: '#009494ff',
56
+ originColorsReferenceOnlyTeal500: '#007776ff',
57
+ originColorsReferenceOnlyTeal600: '#006362ff',
58
+ originColorsReferenceOnlyTeal700: '#004a4aff',
59
+ originColorsReferenceOnlyTeal800: '#003231ff',
60
+ originColorsReferenceOnlyTeal900: '#001919ff',
61
+ originColorsReferenceOnlyTeal010: '#f4fefeff',
62
+ originColorsReferenceOnlyTeal050: '#c3faf8ff',
63
+ originColorsReferenceOnlyAmber100: '#ffe290ff',
64
+ originColorsReferenceOnlyAmber200: '#f5ce55ff',
65
+ originColorsReferenceOnlyAmber300: '#efab2fff',
66
+ originColorsReferenceOnlyAmber400: '#e98709ff',
67
+ originColorsReferenceOnlyAmber500: '#c15708ff',
68
+ originColorsReferenceOnlyAmber600: '#9b4609ff',
69
+ originColorsReferenceOnlyAmber700: '#75330aff',
70
+ originColorsReferenceOnlyAmber800: '#4f220bff',
71
+ originColorsReferenceOnlyAmber900: '#281106ff',
72
+ originColorsReferenceOnlyAmber010: '#fffcefff',
73
+ originColorsReferenceOnlyAmber050: '#fff0c3ff',
74
+ originColorsReferenceOnlyCherry100: '#f7b3c2ff',
75
+ originColorsReferenceOnlyCherry200: '#ed94aaff',
76
+ originColorsReferenceOnlyCherry300: '#e27491ff',
77
+ originColorsReferenceOnlyCherry400: '#d85579ff',
78
+ originColorsReferenceOnlyCherry500: '#ba3c63ff',
79
+ originColorsReferenceOnlyCherry600: '#95304fff',
80
+ originColorsReferenceOnlyCherry700: '#70243bff',
81
+ originColorsReferenceOnlyCherry800: '#4a1828ff',
82
+ originColorsReferenceOnlyCherry900: '#250c14ff',
83
+ originColorsReferenceOnlyCherry010: '#fef5f7ff',
84
+ originColorsReferenceOnlyCherry050: '#fad4deff',
85
+ originColorsReferenceOnlyTerra100: '#ffbca6ff',
86
+ originColorsReferenceOnlyTerra200: '#f59a83ff',
87
+ originColorsReferenceOnlyTerra300: '#ea7961ff',
88
+ originColorsReferenceOnlyTerra400: '#e0583eff',
89
+ originColorsReferenceOnlyTerra500: '#c94633ff',
90
+ originColorsReferenceOnlyTerra600: '#a13829ff',
91
+ originColorsReferenceOnlyTerra700: '#782a1eff',
92
+ originColorsReferenceOnlyTerra800: '#501c14ff',
93
+ originColorsReferenceOnlyTerra900: '#280e0aff',
94
+ originColorsReferenceOnlyTerra010: '#fff7f5ff',
95
+ originColorsReferenceOnlyTerra050: '#ffdcd1ff',
96
+ originColorsReferenceOnlyGray100: '#e6e6e6ff',
97
+ originColorsReferenceOnlyGray200: '#ccccccff',
98
+ originColorsReferenceOnlyGray300: '#b3b3b3ff',
99
+ originColorsReferenceOnlyGray400: '#999999ff',
100
+ originColorsReferenceOnlyGray500: '#808080ff',
101
+ originColorsReferenceOnlyGray600: '#666666ff',
102
+ originColorsReferenceOnlyGray700: '#4d4d4dff',
103
+ originColorsReferenceOnlyGray800: '#333333ff',
104
+ originColorsReferenceOnlyGray900: '#191919ff',
105
+ originColorsReferenceOnlyGray1000: '#000000ff',
106
+ originColorsReferenceOnlyGray000: '#ffffffff',
107
+ originColorsReferenceOnlyGray010: '#fcfcfcff',
108
+ originColorsReferenceOnlyGray050: '#f2f2f2ff',
109
+ originColorsReferenceOnlySkin400: '#ddb89eff',
110
+ originColorsReferenceOnlySkin500: '#e84d4fff',
111
+ originColorsReferenceOnlySkin600: '#b26e3dff',
112
+ originColorsReferenceOnlySkin700: '#3a2417ff',
113
+ originColorsReferenceOnlyFuchsia400: '#bf47c3ff',
114
+ originColorsReferenceOnlyFuchsia500: '#b832bcff'
104
115
  }
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "description": "Design tokens for the Sage Design System.",
8
8
  "author": "The Sage Group plc",
9
- "version": "2.64.0",
9
+ "version": "2.65.0",
10
10
  "license": "SEE LICENSE IN https://github.com/Sage/design-tokens/blob/master/license",
11
11
  "tags": [
12
12
  "design tokens",
Binary file
package/scss/base.scss CHANGED
@@ -4,7 +4,7 @@ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
4
4
 
5
5
 
6
6
  // Do not edit directly
7
- // Generated on Wed, 14 Dec 2022 11:43:20 GMT
7
+ // Generated on Wed, 21 Dec 2022 15:17:51 GMT
8
8
 
9
9
  $metaName: Base Theme;
10
10
  $metaPublic: true;
@@ -223,6 +223,7 @@ $colorsComponentsMenuYin065: #000000a6;
223
223
  $colorsComponentsMenuYin090: #000000e6;
224
224
  $colorsComponentsMenuYang100: #ffffffff;
225
225
  $colorsComponentsMenuYang080: #ffffffcc;
226
+ $colorsComponentsMenuYang030: #ffffff4d;
226
227
  $colorsComponentsMenuTransparent: #00000000;
227
228
  $sizing100: 8px;
228
229
  $sizing125: 10px;
@@ -318,9 +319,10 @@ $borderRadius100: 8px;
318
319
  $borderRadius200: 16px;
319
320
  $borderRadius400: 32px;
320
321
  $borderRadiusCircle: 50%;
322
+ $borderRadius000: 0px;
323
+ $borderRadius010: 1px;
321
324
  $borderRadius025: 2px;
322
325
  $borderRadius050: 4px;
323
- $borderRadius000: 0px;
324
326
  $typographyAccordionTitleM: 500 20px/125% Sage UI;
325
327
  $typographyAccordionTitleS: 500 16px/125% Sage UI;
326
328
  $typographyAccordionSubtitleM: 400 14px/150% Sage UI;
@@ -0,0 +1,10 @@
1
+ /*
2
+ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
3
+ */
4
+
5
+
6
+ // Do not edit directly
7
+ // Generated on Wed, 21 Dec 2022 15:17:51 GMT
8
+
9
+ $metaName: Dashboard Dark-Mode Token Set;
10
+ $metaPublic: true;
@@ -0,0 +1,10 @@
1
+ /*
2
+ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
3
+ */
4
+
5
+
6
+ // Do not edit directly
7
+ // Generated on Wed, 21 Dec 2022 15:17:51 GMT
8
+
9
+ $metaName: Dashboard Light-Mode Token Set;
10
+ $metaPublic: true;
package/scss/origin.scss CHANGED
@@ -4,103 +4,114 @@ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
4
4
 
5
5
 
6
6
  // Do not edit directly
7
- // Generated on Wed, 14 Dec 2022 11:43:20 GMT
7
+ // Generated on Wed, 21 Dec 2022 15:17:51 GMT
8
8
 
9
9
  $metaName: Origin Token Set;
10
10
  $metaPublic: true;
11
- $colorsJade100: #8ff8b7ff;
12
- $colorsJade200: #44ed90ff;
13
- $colorsJade300: #00ca71ff;
14
- $colorsJade400: #00a65cff;
15
- $colorsJade500: #00884aff;
16
- $colorsJade600: #006d3bff;
17
- $colorsJade700: #00522cff;
18
- $colorsJade800: #00361eff;
19
- $colorsJade900: #001b0fff;
20
- $colorsJade010: #f2fef7ff;
21
- $colorsJade050: #c4fcd8ff;
22
- $colorsNavy100: #89d7edff;
23
- $colorsNavy200: #65bedfff;
24
- $colorsNavy300: #41a5d1ff;
25
- $colorsNavy400: #1d8cc3ff;
26
- $colorsNavy500: #0e74a7ff;
27
- $colorsNavy600: #095b84ff;
28
- $colorsNavy700: #054262ff;
29
- $colorsNavy800: #00293fff;
30
- $colorsNavy900: #001520ff;
31
- $colorsNavy010: #f4fcfeff;
32
- $colorsNavy050: #caf1fcff;
33
- $colorsTeal100: #89edeaff;
34
- $colorsTeal200: #5bcfcdff;
35
- $colorsTeal300: #2eb2b1ff;
36
- $colorsTeal400: #009494ff;
37
- $colorsTeal500: #007776ff;
38
- $colorsTeal600: #006362ff;
39
- $colorsTeal700: #004a4aff;
40
- $colorsTeal800: #003231ff;
41
- $colorsTeal900: #001919ff;
42
- $colorsTeal010: #f4fefeff;
43
- $colorsTeal050: #c3faf8ff;
44
- $colorsCherry100: #f7b3c2ff;
45
- $colorsCherry200: #ed94aaff;
46
- $colorsCherry300: #e27491ff;
47
- $colorsCherry400: #d85579ff;
48
- $colorsCherry500: #ba3c63ff;
49
- $colorsCherry600: #95304fff;
50
- $colorsCherry700: #70243bff;
51
- $colorsCherry800: #4a1828ff;
52
- $colorsCherry900: #250c14ff;
53
- $colorsCherry010: #fef5f7ff;
54
- $colorsCherry050: #fad4deff;
55
- $colorsTerra100: #ffbca6ff;
56
- $colorsTerra200: #f59a83ff;
57
- $colorsTerra300: #ea7961ff;
58
- $colorsTerra400: #e0583eff;
59
- $colorsTerra500: #c94633ff;
60
- $colorsTerra600: #a13829ff;
61
- $colorsTerra700: #782a1eff;
62
- $colorsTerra800: #501c14ff;
63
- $colorsTerra900: #280e0aff;
64
- $colorsTerra010: #fff7f5ff;
65
- $colorsTerra050: #ffdcd1ff;
66
- $colorsAmber100: #ffe290ff;
67
- $colorsAmber200: #f5ce55ff;
68
- $colorsAmber300: #efab2fff;
69
- $colorsAmber400: #e98709ff;
70
- $colorsAmber500: #c15708ff;
71
- $colorsAmber600: #9b4609ff;
72
- $colorsAmber700: #75330aff;
73
- $colorsAmber800: #4f220bff;
74
- $colorsAmber900: #281106ff;
75
- $colorsAmber010: #fffcefff;
76
- $colorsAmber050: #fff0c3ff;
77
- $colorsMalachite100: #8df79fff;
78
- $colorsMalachite200: #42eb64ff;
79
- $colorsMalachite300: #00d639ff;
80
- $colorsMalachite400: #00af2dff;
81
- $colorsMalachite500: #008a21ff;
82
- $colorsMalachite600: #006716ff;
83
- $colorsMalachite700: #00460cff;
84
- $colorsMalachite800: #002f08ff;
85
- $colorsMalachite900: #001704ff;
86
- $colorsMalachite010: #effcf0ff;
87
- $colorsMalachite050: #c1fac7ff;
88
- $colorsGray100: #e6e6e6ff;
89
- $colorsGray200: #ccccccff;
90
- $colorsGray300: #b3b3b3ff;
91
- $colorsGray400: #999999ff;
92
- $colorsGray500: #808080ff;
93
- $colorsGray600: #666666ff;
94
- $colorsGray700: #4d4d4dff;
95
- $colorsGray800: #333333ff;
96
- $colorsGray900: #191919ff;
97
- $colorsGray1000: #000000ff;
98
- $colorsGray000: #ffffffff;
99
- $colorsGray010: #fcfcfcff;
100
- $colorsGray050: #f2f2f2ff;
101
- $colorsSkin400: #ddb89eff;
102
- $colorsSkin500: #e84d4fff;
103
- $colorsSkin600: #b26e3dff;
104
- $colorsSkin700: #3a2417ff;
105
- $colorsFuchsia400: #bf47c3ff;
106
- $colorsFuchsia500: #b832bcff;
11
+ $originColorsReferenceOnlyYin100: #000000ff;
12
+ $originColorsReferenceOnlyYin010: #0000001a;
13
+ $originColorsReferenceOnlyYin020: #00000033;
14
+ $originColorsReferenceOnlyYin030: #0000004d;
15
+ $originColorsReferenceOnlyYin055: #0000008c;
16
+ $originColorsReferenceOnlyYin065: #000000a6;
17
+ $originColorsReferenceOnlyYin075: #000000bf;
18
+ $originColorsReferenceOnlyYin090: #000000e6;
19
+ $originColorsReferenceOnlyYang100: #ffffffff;
20
+ $originColorsReferenceOnlyYang030: #ffffff4d;
21
+ $originColorsReferenceOnlyYang080: #ffffffcc;
22
+ $originColorsReferenceOnlyMalachite100: #8df79fff;
23
+ $originColorsReferenceOnlyMalachite200: #42eb64ff;
24
+ $originColorsReferenceOnlyMalachite300: #00d639ff;
25
+ $originColorsReferenceOnlyMalachite400: #00af2dff;
26
+ $originColorsReferenceOnlyMalachite500: #008a21ff;
27
+ $originColorsReferenceOnlyMalachite600: #006716ff;
28
+ $originColorsReferenceOnlyMalachite700: #00460cff;
29
+ $originColorsReferenceOnlyMalachite800: #002f08ff;
30
+ $originColorsReferenceOnlyMalachite900: #001704ff;
31
+ $originColorsReferenceOnlyMalachite010: #effcf0ff;
32
+ $originColorsReferenceOnlyMalachite050: #c1fac7ff;
33
+ $originColorsReferenceOnlyJade100: #8ff8b7ff;
34
+ $originColorsReferenceOnlyJade200: #44ed90ff;
35
+ $originColorsReferenceOnlyJade300: #00ca71ff;
36
+ $originColorsReferenceOnlyJade400: #00a65cff;
37
+ $originColorsReferenceOnlyJade500: #00884aff;
38
+ $originColorsReferenceOnlyJade600: #006d3bff;
39
+ $originColorsReferenceOnlyJade700: #00522cff;
40
+ $originColorsReferenceOnlyJade800: #00361eff;
41
+ $originColorsReferenceOnlyJade900: #001b0fff;
42
+ $originColorsReferenceOnlyJade010: #f2fef7ff;
43
+ $originColorsReferenceOnlyJade050: #c4fcd8ff;
44
+ $originColorsReferenceOnlyNavy100: #89d7edff;
45
+ $originColorsReferenceOnlyNavy200: #65bedfff;
46
+ $originColorsReferenceOnlyNavy300: #41a5d1ff;
47
+ $originColorsReferenceOnlyNavy400: #1d8cc3ff;
48
+ $originColorsReferenceOnlyNavy500: #0e74a7ff;
49
+ $originColorsReferenceOnlyNavy600: #095b84ff;
50
+ $originColorsReferenceOnlyNavy700: #054262ff;
51
+ $originColorsReferenceOnlyNavy800: #00293fff;
52
+ $originColorsReferenceOnlyNavy900: #001520ff;
53
+ $originColorsReferenceOnlyNavy010: #f4fcfeff;
54
+ $originColorsReferenceOnlyNavy050: #caf1fcff;
55
+ $originColorsReferenceOnlyTeal100: #89edeaff;
56
+ $originColorsReferenceOnlyTeal200: #5bcfcdff;
57
+ $originColorsReferenceOnlyTeal300: #2eb2b1ff;
58
+ $originColorsReferenceOnlyTeal400: #009494ff;
59
+ $originColorsReferenceOnlyTeal500: #007776ff;
60
+ $originColorsReferenceOnlyTeal600: #006362ff;
61
+ $originColorsReferenceOnlyTeal700: #004a4aff;
62
+ $originColorsReferenceOnlyTeal800: #003231ff;
63
+ $originColorsReferenceOnlyTeal900: #001919ff;
64
+ $originColorsReferenceOnlyTeal010: #f4fefeff;
65
+ $originColorsReferenceOnlyTeal050: #c3faf8ff;
66
+ $originColorsReferenceOnlyAmber100: #ffe290ff;
67
+ $originColorsReferenceOnlyAmber200: #f5ce55ff;
68
+ $originColorsReferenceOnlyAmber300: #efab2fff;
69
+ $originColorsReferenceOnlyAmber400: #e98709ff;
70
+ $originColorsReferenceOnlyAmber500: #c15708ff;
71
+ $originColorsReferenceOnlyAmber600: #9b4609ff;
72
+ $originColorsReferenceOnlyAmber700: #75330aff;
73
+ $originColorsReferenceOnlyAmber800: #4f220bff;
74
+ $originColorsReferenceOnlyAmber900: #281106ff;
75
+ $originColorsReferenceOnlyAmber010: #fffcefff;
76
+ $originColorsReferenceOnlyAmber050: #fff0c3ff;
77
+ $originColorsReferenceOnlyCherry100: #f7b3c2ff;
78
+ $originColorsReferenceOnlyCherry200: #ed94aaff;
79
+ $originColorsReferenceOnlyCherry300: #e27491ff;
80
+ $originColorsReferenceOnlyCherry400: #d85579ff;
81
+ $originColorsReferenceOnlyCherry500: #ba3c63ff;
82
+ $originColorsReferenceOnlyCherry600: #95304fff;
83
+ $originColorsReferenceOnlyCherry700: #70243bff;
84
+ $originColorsReferenceOnlyCherry800: #4a1828ff;
85
+ $originColorsReferenceOnlyCherry900: #250c14ff;
86
+ $originColorsReferenceOnlyCherry010: #fef5f7ff;
87
+ $originColorsReferenceOnlyCherry050: #fad4deff;
88
+ $originColorsReferenceOnlyTerra100: #ffbca6ff;
89
+ $originColorsReferenceOnlyTerra200: #f59a83ff;
90
+ $originColorsReferenceOnlyTerra300: #ea7961ff;
91
+ $originColorsReferenceOnlyTerra400: #e0583eff;
92
+ $originColorsReferenceOnlyTerra500: #c94633ff;
93
+ $originColorsReferenceOnlyTerra600: #a13829ff;
94
+ $originColorsReferenceOnlyTerra700: #782a1eff;
95
+ $originColorsReferenceOnlyTerra800: #501c14ff;
96
+ $originColorsReferenceOnlyTerra900: #280e0aff;
97
+ $originColorsReferenceOnlyTerra010: #fff7f5ff;
98
+ $originColorsReferenceOnlyTerra050: #ffdcd1ff;
99
+ $originColorsReferenceOnlyGray100: #e6e6e6ff;
100
+ $originColorsReferenceOnlyGray200: #ccccccff;
101
+ $originColorsReferenceOnlyGray300: #b3b3b3ff;
102
+ $originColorsReferenceOnlyGray400: #999999ff;
103
+ $originColorsReferenceOnlyGray500: #808080ff;
104
+ $originColorsReferenceOnlyGray600: #666666ff;
105
+ $originColorsReferenceOnlyGray700: #4d4d4dff;
106
+ $originColorsReferenceOnlyGray800: #333333ff;
107
+ $originColorsReferenceOnlyGray900: #191919ff;
108
+ $originColorsReferenceOnlyGray1000: #000000ff;
109
+ $originColorsReferenceOnlyGray000: #ffffffff;
110
+ $originColorsReferenceOnlyGray010: #fcfcfcff;
111
+ $originColorsReferenceOnlyGray050: #f2f2f2ff;
112
+ $originColorsReferenceOnlySkin400: #ddb89eff;
113
+ $originColorsReferenceOnlySkin500: #e84d4fff;
114
+ $originColorsReferenceOnlySkin600: #b26e3dff;
115
+ $originColorsReferenceOnlySkin700: #3a2417ff;
116
+ $originColorsReferenceOnlyFuchsia400: #bf47c3ff;
117
+ $originColorsReferenceOnlyFuchsia500: #b832bcff;
Binary file