@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 +9 -1
- package/README.md +48 -19
- package/branding-pallete.scss +28 -0
- package/dist/commonjs/branding-palette.d.ts +30 -0
- package/dist/commonjs/branding-palette.js +45 -0
- package/dist/commonjs/colorType.d.ts +62 -0
- package/dist/commonjs/colorType.js +9 -0
- package/dist/commonjs/index.d.ts +1 -8
- package/dist/commonjs/index.js +4 -9
- package/dist/commonjs/palette.d.ts +9 -14
- package/dist/commonjs/palette.js +122 -150
- package/dist/es2015/branding-palette.d.ts +30 -0
- package/dist/es2015/branding-palette.js +42 -0
- package/dist/es2015/colorType.d.ts +62 -0
- package/dist/es2015/colorType.js +8 -0
- package/dist/es2015/index.d.ts +1 -8
- package/dist/es2015/index.js +1 -9
- package/dist/es2015/palette.d.ts +9 -14
- package/dist/es2015/palette.js +121 -149
- package/package.json +17 -14
- package/palette.scss +124 -283
- package/LICENSES.json +0 -8
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/
|
|
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
|
|
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
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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
|
-
|
|
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
|
-
###
|
|
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:
|
|
76
|
+
background-color: $brand-lightGray;
|
|
49
77
|
```
|
|
50
78
|
|
|
51
|
-
###
|
|
79
|
+
### JSON Object
|
|
52
80
|
|
|
53
81
|
```
|
|
54
|
-
import
|
|
82
|
+
import Colors, {BrandingColors} from '@brightlayer-ui/colors';
|
|
55
83
|
...
|
|
56
|
-
<div style={{background: Colors.
|
|
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 });
|
package/dist/commonjs/index.d.ts
CHANGED
|
@@ -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
|
|
2
|
+
export { BrandingColors, chartColors as ChartColors } from './branding-palette';
|
package/dist/commonjs/index.js
CHANGED
|
@@ -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.
|
|
17
|
+
exports.ChartColors = exports.BrandingColors = void 0;
|
|
25
18
|
__exportStar(require("./palette"), exports);
|
|
26
|
-
|
|
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 {
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
13
|
-
export declare const
|
|
14
|
-
export declare const
|
|
15
|
-
export declare const
|
|
16
|
-
export declare const
|
|
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;
|
package/dist/commonjs/palette.js
CHANGED
|
@@ -1,163 +1,135 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.purple = exports.
|
|
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.
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
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.
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
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.
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
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.
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
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.
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
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.
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
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
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
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
|
};
|