@brightlayer-ui/colors 3.1.1 → 4.0.0-alpha.1

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,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v4.0.0 (Unreleased)
4
+
5
+ ### Changed
6
+
7
+ - Move Branding colors under `@brightlayer-ui/colors` package.
8
+ - Update UI colors and Branding colors as per new Material Design 3.
9
+ - Remove dependency of `@brightlayer-ui/types` and moved type in `@brightlayer-ui/colors` package.
10
+
3
11
  ## v3.1.1 (June 20, 2022)
4
12
 
5
13
  ### Changed
@@ -14,7 +22,7 @@
14
22
 
15
23
  ### Changed
16
24
 
17
- - Changed build module from `commonjs` to `es2015` ([#47](https://github.com/brightlayer-ui/colors/issues/47)).
25
+ - Changed build module from `commonjs` to `es2015` ([#47](https://github.com/etn-ccis/blui-colors/issues/47)).
18
26
 
19
27
  ## Package Migration Notice
20
28
 
package/README.md CHANGED
@@ -1,25 +1,46 @@
1
1
  # Brightlayer UI Colors
2
2
 
3
- This package contains Brightlayer UI color definitions. These are intended for use as primary UI colors.
3
+ This repository contains definitions for various colors used throughout Brightlayer UI applications.
4
4
 
5
5
  It contains the following color defintions:
6
6
 
7
+ ## UI Colors
8
+
7
9
  ```
8
- blue / $blui-blue
9
- white / $blui-white
10
- gray / $blui-gray
11
- black / $blui-black
12
- darkBlack / $blui-darkBlack
13
- red / $blui-red
10
+ primary / $blui-primary
11
+ neutral / $blui-neutral
12
+ neutralVariant / $blui-neutralVariant
13
+ error / $blui-error
14
+ warning / $blui-warning
15
+ success / $blui-success
14
16
  orange / $blui-orange
15
- gold / $blui-gold
16
- yellow / $blui-yellow
17
- green / $blui-green
18
- lightBlue / $blui-lightBlue
19
17
  purple / $blui-purple
20
18
  ```
21
19
 
22
- These all have color definitions for the following values: 50, 100, 200, 300, 400, 500, 600, 700, 800, 900.
20
+ ## Branding Colors
21
+
22
+ ```
23
+ lightGray / $brand-lightGray
24
+ gray / $brand-gray
25
+ darkGray / $brand-darkGray
26
+ sky / $brand-sky
27
+ eatonBlue / $brand-eatonBlue
28
+ navy / $brand-navy
29
+ ash / $brand-ash
30
+ teal / $brand-teal
31
+ pine / $brand-pine
32
+ sage / $brand-sage
33
+ citrus / $brand-citrus
34
+ emerald / $brand-emerald
35
+ butter / $brand-butter
36
+ goldenrod / $brand-goldenrod
37
+ toad / $brand-toad
38
+ trophy / $brand-trophy
39
+ sunset / $brand-sunset
40
+ rust / $brand-rust
41
+ crimson / $brand-crimson
42
+ wine / $brand-wine
43
+ ```
23
44
 
24
45
  ## Installation
25
46
 
@@ -39,19 +60,27 @@ yarn add @brightlayer-ui/colors
39
60
 
40
61
  Incorporating these colors into your project is handled differently depending on the framework that you are using.
41
62
 
42
- ### Angular or Ionic
63
+ ### CSS variables
64
+
65
+ ```
66
+ // For UI Colors in styles.scss or your top-level sass file
67
+ @import '~@brightlayer-ui/colors/palette.scss';
68
+ ...
69
+ background-color: map-get($blui-primary, 10);
70
+ ```
43
71
 
44
72
  ```
45
- // in styles.scss or your top-level sass file
46
- @import '~@brightlayer-ui/colors/palette.scss'
73
+ // For Branding Colors in styles.scss or your top-level sass file
74
+ @import '~@brightlayer-ui/colors/branding-palette.scss';
47
75
  ...
48
- background-color: map-get($blui-blue, 500)
76
+ background-color: $brand-lightGray;
49
77
  ```
50
78
 
51
- ### React or React Native
79
+ ### JSON Object
52
80
 
53
81
  ```
54
- import * as Colors from '@brightlayer-ui/colors';
82
+ import Colors, {BrandingColors} from '@brightlayer-ui/colors';
55
83
  ...
56
- <div style={{background: Colors.blue['500']}}/>
84
+ <div style={{background: Colors.primary[10]}}/>
85
+ <div style={{background: BrandingColors.teal}}/>
57
86
  ```
@@ -0,0 +1,28 @@
1
+ /**
2
+ Copyright (c) 2021-present, Eaton
3
+
4
+ All rights reserved.
5
+
6
+ This code is licensed under the BSD-3 license found in the LICENSE file in the root directory of this source tree and at https://opensource.org/licenses/BSD-3-Clause.
7
+ **/
8
+
9
+ $brand-lightGray: #98a4ae;
10
+ $brand-gray: #5b6770;
11
+ $brand-darkGray: #333f48;
12
+ $brand-sky: #71b2c9;
13
+ $brand-eatonBlue: #005eb8;
14
+ $brand-navy: #003865;
15
+ $brand-ash: #a3b2a4;
16
+ $brand-teal: #00b2a9;
17
+ $brand-pine: #43695b;
18
+ $brand-sage: #b7ce95;
19
+ $brand-citrus: #b5bd00;
20
+ $brand-emerald: #4c8d2b;
21
+ $brand-butter: #f3dd6d;
22
+ $brand-goldenrod: #ffc72c;
23
+ $brand-toad: #ad841f;
24
+ $brand-trophy: #f0b323;
25
+ $brand-sunset: #ed8b00;
26
+ $brand-rust: #b94700;
27
+ $brand-crimson: #d22730;
28
+ $brand-wine: #9d2235;
@@ -0,0 +1,30 @@
1
+ /**
2
+ Copyright (c) 2018-present, Eaton
3
+
4
+ All rights reserved.
5
+
6
+ This code is licensed under the BSD-3 license found in the LICENSE file in the root directory of this source tree and at https://opensource.org/licenses/BSD-3-Clause.
7
+ **/
8
+ export declare enum BrandingColors {
9
+ lightGray = "#98A4AE",
10
+ gray = "#5B6770",
11
+ darkGray = "#333F48",
12
+ sky = "#71B2C9",
13
+ eatonBlue = "#005EB8",
14
+ navy = "#003865",
15
+ ash = "#A3B2A4",
16
+ teal = "#00B2A9",
17
+ pine = "#43695B",
18
+ sage = "#B7CE95",
19
+ citrus = "#B5BD00",
20
+ emerald = "#4C8D2B",
21
+ butter = "#F3DD6D",
22
+ goldenrod = "#FFC72C",
23
+ toad = "#AD841F",
24
+ trophy = "#F0B323",
25
+ sunset = "#ED8B00",
26
+ rust = "#B94700",
27
+ crimson = "#D22730",
28
+ wine = "#9D2235"
29
+ }
30
+ export declare const chartColors: BrandingColors[];
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ /**
3
+ Copyright (c) 2018-present, Eaton
4
+
5
+ All rights reserved.
6
+
7
+ This code is licensed under the BSD-3 license found in the LICENSE file in the root directory of this source tree and at https://opensource.org/licenses/BSD-3-Clause.
8
+ **/
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ exports.chartColors = exports.BrandingColors = void 0;
11
+ var BrandingColors;
12
+ (function (BrandingColors) {
13
+ BrandingColors["lightGray"] = "#98A4AE";
14
+ BrandingColors["gray"] = "#5B6770";
15
+ BrandingColors["darkGray"] = "#333F48";
16
+ BrandingColors["sky"] = "#71B2C9";
17
+ BrandingColors["eatonBlue"] = "#005EB8";
18
+ BrandingColors["navy"] = "#003865";
19
+ BrandingColors["ash"] = "#A3B2A4";
20
+ BrandingColors["teal"] = "#00B2A9";
21
+ BrandingColors["pine"] = "#43695B";
22
+ BrandingColors["sage"] = "#B7CE95";
23
+ BrandingColors["citrus"] = "#B5BD00";
24
+ BrandingColors["emerald"] = "#4C8D2B";
25
+ BrandingColors["butter"] = "#F3DD6D";
26
+ BrandingColors["goldenrod"] = "#FFC72C";
27
+ BrandingColors["toad"] = "#AD841F";
28
+ BrandingColors["trophy"] = "#F0B323";
29
+ BrandingColors["sunset"] = "#ED8B00";
30
+ BrandingColors["rust"] = "#B94700";
31
+ BrandingColors["crimson"] = "#D22730";
32
+ BrandingColors["wine"] = "#9D2235";
33
+ })(BrandingColors || (exports.BrandingColors = BrandingColors = {}));
34
+ exports.chartColors = [
35
+ BrandingColors.teal,
36
+ BrandingColors.citrus,
37
+ BrandingColors.pine,
38
+ BrandingColors.emerald,
39
+ BrandingColors.wine,
40
+ BrandingColors.crimson,
41
+ BrandingColors.sunset,
42
+ BrandingColors.rust,
43
+ BrandingColors.navy,
44
+ BrandingColors.sky,
45
+ ];
@@ -0,0 +1,62 @@
1
+ /**
2
+ Copyright (c) 2018-present, Eaton
3
+
4
+ All rights reserved.
5
+
6
+ This code is licensed under the BSD-3 license found in the LICENSE file in the root directory of this source tree and at https://opensource.org/licenses/BSD-3-Clause.
7
+ **/
8
+ export declare type BLUIColor = {
9
+ 0: string;
10
+ 10: string;
11
+ 20: string;
12
+ 30: string;
13
+ 40: string;
14
+ 50: string;
15
+ 60: string;
16
+ 70: string;
17
+ 80: string;
18
+ 90: string;
19
+ 100: string;
20
+ };
21
+ export declare type Primary = BLUIColor & {
22
+ 95: string;
23
+ 99: string;
24
+ };
25
+ export declare type Neutral = BLUIColor & {
26
+ 4: string;
27
+ 6: string;
28
+ 12: string;
29
+ 17: string;
30
+ 87: string;
31
+ 92: string;
32
+ 94: string;
33
+ 95: string;
34
+ 97: string;
35
+ 98: string;
36
+ 99: string;
37
+ };
38
+ export declare type NeutralVariant = BLUIColor & {
39
+ 95: string;
40
+ 99: string;
41
+ };
42
+ export declare type Error = BLUIColor & {
43
+ 95: string;
44
+ 99: string;
45
+ };
46
+ export declare type Warning = BLUIColor & {
47
+ 95: string;
48
+ 98: string;
49
+ };
50
+ export declare type Success = BLUIColor & {
51
+ 4: string;
52
+ 95: string;
53
+ 98: string;
54
+ };
55
+ export declare type Orange = BLUIColor & {
56
+ 95: string;
57
+ 98: string;
58
+ };
59
+ export declare type Purple = BLUIColor & {
60
+ 95: string;
61
+ 98: string;
62
+ };
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ Copyright (c) 2018-present, Eaton
4
+
5
+ All rights reserved.
6
+
7
+ This code is licensed under the BSD-3 license found in the LICENSE file in the root directory of this source tree and at https://opensource.org/licenses/BSD-3-Clause.
8
+ **/
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,9 +1,2 @@
1
- /**
2
- Copyright (c) 2018-present, Eaton
3
-
4
- All rights reserved.
5
-
6
- This code is licensed under the BSD-3 license found in the LICENSE file in the root directory of this source tree and at https://opensource.org/licenses/BSD-3-Clause.
7
- **/
8
1
  export * from './palette';
9
- export * as BLUIColors from './palette';
2
+ export { BrandingColors, chartColors as ChartColors } from './branding-palette';
@@ -1,11 +1,4 @@
1
1
  "use strict";
2
- /**
3
- Copyright (c) 2018-present, Eaton
4
-
5
- All rights reserved.
6
-
7
- This code is licensed under the BSD-3 license found in the LICENSE file in the root directory of this source tree and at https://opensource.org/licenses/BSD-3-Clause.
8
- **/
9
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10
3
  if (k2 === undefined) k2 = k;
11
4
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -21,6 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
21
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
22
15
  };
23
16
  Object.defineProperty(exports, "__esModule", { value: true });
24
- exports.BLUIColors = void 0;
17
+ exports.ChartColors = exports.BrandingColors = void 0;
25
18
  __exportStar(require("./palette"), exports);
26
- exports.BLUIColors = require("./palette");
19
+ var branding_palette_1 = require("./branding-palette");
20
+ Object.defineProperty(exports, "BrandingColors", { enumerable: true, get: function () { return branding_palette_1.BrandingColors; } });
21
+ Object.defineProperty(exports, "ChartColors", { enumerable: true, get: function () { return branding_palette_1.chartColors; } });
@@ -5,17 +5,12 @@ All rights reserved.
5
5
 
6
6
  This code is licensed under the BSD-3 license found in the LICENSE file in the root directory of this source tree and at https://opensource.org/licenses/BSD-3-Clause.
7
7
  **/
8
- import { BLUIColor } from '@brightlayer-ui/types';
9
- export declare const blue: BLUIColor;
10
- export declare const white: BLUIColor;
11
- export declare const gray: BLUIColor;
12
- export declare const black: BLUIColor;
13
- export declare const darkBlack: BLUIColor;
14
- export declare const vantaBlack: BLUIColor;
15
- export declare const red: BLUIColor;
16
- export declare const orange: BLUIColor;
17
- export declare const gold: BLUIColor;
18
- export declare const yellow: BLUIColor;
19
- export declare const green: BLUIColor;
20
- export declare const lightBlue: BLUIColor;
21
- export declare const purple: BLUIColor;
8
+ import { Error, Neutral, NeutralVariant, Orange, Primary, Purple, Success, Warning } from './colorType';
9
+ export declare const primary: Primary;
10
+ export declare const neutral: Neutral;
11
+ export declare const neutralVariant: NeutralVariant;
12
+ export declare const error: Error;
13
+ export declare const warning: Warning;
14
+ export declare const success: Success;
15
+ export declare const orange: Orange;
16
+ export declare const purple: Purple;
@@ -1,163 +1,135 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.purple = exports.lightBlue = exports.green = exports.yellow = exports.gold = exports.orange = exports.red = exports.vantaBlack = exports.darkBlack = exports.black = exports.gray = exports.white = exports.blue = void 0;
3
+ exports.purple = exports.orange = exports.success = exports.warning = exports.error = exports.neutralVariant = exports.neutral = exports.primary = void 0;
4
4
  /* Primary Colors / User Interface Colors */
5
- exports.blue = {
6
- 50: '#e0eff8',
7
- 100: '#b3d7ec',
8
- 200: '#80bde0',
9
- 300: '#4da3d4',
10
- 400: '#268fca',
11
- 500: '#007bc1',
12
- 600: '#0073bb',
13
- 700: '#0068b3',
14
- 800: '#005eab',
15
- 900: '#004b9e',
16
- contrastDefaultColor: 'light',
5
+ exports.primary = {
6
+ 0: '#000000',
7
+ 10: '#001B3D',
8
+ 20: '#003063',
9
+ 30: '#00468C',
10
+ 40: '#005EB8',
11
+ 50: '#1C77CC',
12
+ 60: '#4D9FEC',
13
+ 70: '#79BFFF',
14
+ 80: '#B1DAFF',
15
+ 90: '#D0EAFD',
16
+ 95: '#E5F5FF',
17
+ 99: '#FDFBFF',
18
+ 100: '#FFFFFF',
17
19
  };
18
- exports.white = {
19
- 50: '#ffffff',
20
- 100: '#fbfbfb',
21
- 200: '#f7f8f8',
22
- 300: '#f3f5f5',
23
- 400: '#f1f2f2',
24
- 500: '#eef0f0',
25
- 600: '#eceeee',
26
- 700: '#e9ecec',
27
- 800: '#e7e9e9',
28
- 900: '#e2e5e5',
29
- contrastDefaultColor: 'dark',
20
+ exports.neutral = {
21
+ 0: '#000000',
22
+ 4: '#0D1317',
23
+ 6: '#141C1F',
24
+ 10: '#192024',
25
+ 12: '#1E262A',
26
+ 17: '#293338',
27
+ 20: '#333F48',
28
+ 30: '#414E54',
29
+ 40: '#4F5B63',
30
+ 50: '#5B6770',
31
+ 60: '#737F87',
32
+ 70: '#98A4AE',
33
+ 80: '#BDCAD1',
34
+ 87: '#CED8DE',
35
+ 90: '#D7E0E5',
36
+ 92: '#E0E7EB',
37
+ 94: '#E5ECF0',
38
+ 95: '#EBF1F4',
39
+ 97: '#F2F6F8',
40
+ 98: '#F4F8FA',
41
+ 99: '#F8FCFC',
42
+ 100: '#FFFFFF',
30
43
  };
31
- exports.gray = {
32
- 50: '#eef0f0',
33
- 100: '#d5d8da',
34
- 200: '#b9bfc2',
35
- 300: '#9ca5a9',
36
- 400: '#879196',
37
- 500: '#727e84',
38
- 600: '#6a767c',
39
- 700: '#5f6b71',
40
- 800: '#556167',
41
- 900: '#424e54',
42
- contrastDefaultColor: 'light',
44
+ exports.neutralVariant = {
45
+ 0: '#000000',
46
+ 10: '#181C22',
47
+ 20: '#2D3038',
48
+ 30: '#44474E',
49
+ 40: '#5B5E66',
50
+ 50: '#74777F',
51
+ 60: '#8E9099',
52
+ 70: '#A8ABB4',
53
+ 80: '#C4C6CF',
54
+ 90: '#E0E2EC',
55
+ 95: '#EEF0FA',
56
+ 99: '#FDFBFF',
57
+ 100: '#FFFFFF',
43
58
  };
44
- exports.black = {
45
- 50: '#e8eaea',
46
- 100: '#c6cacc',
47
- 200: '#a1a7aa',
48
- 300: '#7b8387',
49
- 400: '#5e696e',
50
- 500: '#424e54',
51
- 600: '#3c474d',
52
- 700: '#333d43',
53
- 800: '#2b353a',
54
- 900: '#1d2529',
55
- contrastDefaultColor: 'light',
56
- };
57
- exports.darkBlack = {
58
- 50: '#202224',
59
- 100: '#182022',
60
- 200: '#182022',
61
- 300: '#13181b',
62
- 400: '#101417',
63
- 500: '#0b0e10',
64
- 600: '#0b0e10',
65
- 700: '#08090a',
66
- 800: '#08090a',
67
- 900: '#000000',
68
- contrastDefaultColor: 'light',
69
- };
70
- // alias
71
- exports.vantaBlack = exports.darkBlack;
72
59
  /* Status Colors */
73
- exports.red = {
74
- 50: '#f9e8e8',
75
- 100: '#efc5c5',
76
- 200: '#e59e9e',
77
- 300: '#da7777',
78
- 400: '#d2595a',
79
- 500: '#ca3c3d',
80
- 600: '#c53637',
81
- 700: '#bd2e2f',
82
- 800: '#b72727',
83
- 900: '#ab1a1a',
84
- contrastDefaultColor: 'light',
85
- };
86
- exports.orange = {
87
- 50: '#feefe4',
88
- 100: '#fcd6bc',
89
- 200: '#fabb90',
90
- 300: '#f7a064',
91
- 400: '#f68b42',
92
- 500: '#f47721',
93
- 600: '#f36f1d',
94
- 700: '#f16418',
95
- 800: '#ef5a14',
96
- 900: '#ec470b',
97
- contrastDefaultColor: 'light',
98
- };
99
- exports.gold = {
100
- 50: '#fdf5e4',
101
- 100: '#fbe6bc',
102
- 200: '#f8d58f',
103
- 300: '#f5c462',
104
- 400: '#f2b741',
105
- 500: '#f0aa1f',
106
- 600: '#eea31b',
107
- 700: '#ec9917',
108
- 800: '#e99012',
109
- 900: '#e57f0a',
110
- contrastDefaultColor: 'dark',
60
+ exports.error = {
61
+ 0: '#000000',
62
+ 10: '#410002',
63
+ 20: '#690005',
64
+ 30: '#93000A',
65
+ 40: '#BA1A1A',
66
+ 50: '#DE3730',
67
+ 60: '#FF5449',
68
+ 70: '#FF897D',
69
+ 80: '#FFB4AB',
70
+ 90: '#FFDAD6',
71
+ 95: '#FFEDEA',
72
+ 99: '#FFFBFF',
73
+ 100: '#FFFFFF',
111
74
  };
112
- exports.yellow = {
113
- 50: '#fdf9e6',
114
- 100: '#fbefc1',
115
- 200: '#f8e597',
116
- 300: '#f5db6d',
117
- 400: '#f2d34e',
118
- 500: '#f0cb2f',
119
- 600: '#eec62a',
120
- 700: '#ecbe23',
121
- 800: '#e9b81d',
122
- 900: '#e5ac12',
123
- contrastDefaultColor: 'dark',
75
+ exports.warning = {
76
+ 0: '#000000',
77
+ 10: '#211B00',
78
+ 20: '#383000',
79
+ 30: '#524700',
80
+ 40: '#6C5E00',
81
+ 50: '#887700',
82
+ 60: '#A59116',
83
+ 70: '#C1AB33',
84
+ 80: '#DDC437',
85
+ 90: '#FBE365',
86
+ 95: '#FFF1B6',
87
+ 98: '#FFF9EC',
88
+ 100: '#FFFFFF',
124
89
  };
125
- exports.green = {
126
- 50: '#e7f6e4',
127
- 100: '#c4e9bc',
128
- 200: '#9cdb90',
129
- 300: '#74cc63',
130
- 400: '#57c141',
131
- 500: '#39b620',
132
- 600: '#33af1c',
133
- 700: '#2ca618',
134
- 800: '#249e13',
135
- 900: '#178e0b',
136
- contrastDefaultColor: 'light',
90
+ exports.success = {
91
+ 0: '#000000',
92
+ 4: '#022100',
93
+ 10: '#022100',
94
+ 20: '#053900',
95
+ 30: '#0B5300',
96
+ 40: '#126E00',
97
+ 50: '#198900',
98
+ 60: '#27A70B',
99
+ 70: '#48C32E',
100
+ 80: '#65E049',
101
+ 90: '#95F77D',
102
+ 95: '#CBFFB6',
103
+ 98: '#EDFFE1',
104
+ 100: '#FFFFFF',
137
105
  };
138
- exports.lightBlue = {
139
- 50: '#e0f1fd',
140
- 100: '#b3dbfb',
141
- 200: '#80c4f9',
142
- 300: '#4dacf6',
143
- 400: '#269af4',
144
- 500: '#0088f2',
145
- 600: '#0080f0',
146
- 700: '#0075ee',
147
- 800: '#006bec',
148
- 900: '#0058e8',
149
- contrastDefaultColor: 'dark',
106
+ exports.orange = {
107
+ 0: '#000000',
108
+ 10: '#2D1600',
109
+ 20: '#4B2800',
110
+ 30: '#6B3B00',
111
+ 40: '#8D4F00',
112
+ 50: '#B06400',
113
+ 60: '#D37B15',
114
+ 70: '#ED8B00',
115
+ 80: '#FFB876',
116
+ 90: '#FFDCC0',
117
+ 95: '#FFEEE1',
118
+ 98: '#FFF8F5',
119
+ 100: '#FFFFFF',
150
120
  };
151
121
  exports.purple = {
152
- 50: '#f3e8fd',
153
- 100: '#e0c5fa',
154
- 200: '#cc9ff7',
155
- 300: '#b779f4',
156
- 400: '#a75cf1',
157
- 500: '#983fef',
158
- 600: '#9039ed',
159
- 700: '#8531eb',
160
- 800: '#7b29e8',
161
- 900: '#6a1be4',
162
- contrastDefaultColor: 'light',
122
+ 0: '#000000',
123
+ 10: '#2C0051',
124
+ 20: '#480081',
125
+ 30: '#6700B5',
126
+ 40: '#8424DB',
127
+ 50: '#9F45F6',
128
+ 60: '#B56EFF',
129
+ 70: '#C994FF',
130
+ 80: '#DCB8FF',
131
+ 90: '#F0DBFF',
132
+ 95: '#F9ECFF',
133
+ 98: '#FFF7FF',
134
+ 100: '#FFFFFF',
163
135
  };