@brightlayer-ui/colors 3.1.1-alpha.0 → 3.1.1-beta.2
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 +60 -60
- package/LICENSE +29 -29
- package/LICENSES.json +8 -8
- package/README.md +57 -57
- package/dist/commonjs/index.d.ts +9 -9
- package/dist/commonjs/index.js +26 -26
- package/dist/commonjs/palette.d.ts +21 -21
- package/dist/commonjs/palette.js +163 -163
- package/dist/es2015/index.d.ts +9 -9
- package/dist/es2015/index.js +10 -10
- package/dist/es2015/palette.d.ts +21 -21
- package/dist/es2015/palette.js +160 -160
- package/package.json +45 -45
- package/palette.scss +304 -304
package/dist/commonjs/palette.js
CHANGED
|
@@ -1,163 +1,163 @@
|
|
|
1
|
-
"use strict";
|
|
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;
|
|
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',
|
|
17
|
-
};
|
|
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',
|
|
30
|
-
};
|
|
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',
|
|
43
|
-
};
|
|
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
|
-
/* 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',
|
|
111
|
-
};
|
|
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',
|
|
124
|
-
};
|
|
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',
|
|
137
|
-
};
|
|
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',
|
|
150
|
-
};
|
|
151
|
-
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',
|
|
163
|
-
};
|
|
1
|
+
"use strict";
|
|
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;
|
|
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',
|
|
17
|
+
};
|
|
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',
|
|
30
|
+
};
|
|
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',
|
|
43
|
+
};
|
|
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
|
+
/* 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',
|
|
111
|
+
};
|
|
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',
|
|
124
|
+
};
|
|
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',
|
|
137
|
+
};
|
|
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',
|
|
150
|
+
};
|
|
151
|
+
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',
|
|
163
|
+
};
|
package/dist/es2015/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
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 * from './palette';
|
|
9
|
-
export * as BLUIColors from './palette';
|
|
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 * from './palette';
|
|
9
|
+
export * as BLUIColors from './palette';
|
package/dist/es2015/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
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 * from './palette';
|
|
9
|
-
import * as BLUIColors_1 from './palette';
|
|
10
|
-
export { BLUIColors_1 as BLUIColors };
|
|
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 * from './palette';
|
|
9
|
+
import * as BLUIColors_1 from './palette';
|
|
10
|
+
export { BLUIColors_1 as BLUIColors };
|
package/dist/es2015/palette.d.ts
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
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
|
-
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;
|
|
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
|
+
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;
|