@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
|
@@ -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,42 @@
|
|
|
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 var BrandingColors;
|
|
9
|
+
(function (BrandingColors) {
|
|
10
|
+
BrandingColors["lightGray"] = "#98A4AE";
|
|
11
|
+
BrandingColors["gray"] = "#5B6770";
|
|
12
|
+
BrandingColors["darkGray"] = "#333F48";
|
|
13
|
+
BrandingColors["sky"] = "#71B2C9";
|
|
14
|
+
BrandingColors["eatonBlue"] = "#005EB8";
|
|
15
|
+
BrandingColors["navy"] = "#003865";
|
|
16
|
+
BrandingColors["ash"] = "#A3B2A4";
|
|
17
|
+
BrandingColors["teal"] = "#00B2A9";
|
|
18
|
+
BrandingColors["pine"] = "#43695B";
|
|
19
|
+
BrandingColors["sage"] = "#B7CE95";
|
|
20
|
+
BrandingColors["citrus"] = "#B5BD00";
|
|
21
|
+
BrandingColors["emerald"] = "#4C8D2B";
|
|
22
|
+
BrandingColors["butter"] = "#F3DD6D";
|
|
23
|
+
BrandingColors["goldenrod"] = "#FFC72C";
|
|
24
|
+
BrandingColors["toad"] = "#AD841F";
|
|
25
|
+
BrandingColors["trophy"] = "#F0B323";
|
|
26
|
+
BrandingColors["sunset"] = "#ED8B00";
|
|
27
|
+
BrandingColors["rust"] = "#B94700";
|
|
28
|
+
BrandingColors["crimson"] = "#D22730";
|
|
29
|
+
BrandingColors["wine"] = "#9D2235";
|
|
30
|
+
})(BrandingColors || (BrandingColors = {}));
|
|
31
|
+
export var chartColors = [
|
|
32
|
+
BrandingColors.teal,
|
|
33
|
+
BrandingColors.citrus,
|
|
34
|
+
BrandingColors.pine,
|
|
35
|
+
BrandingColors.emerald,
|
|
36
|
+
BrandingColors.wine,
|
|
37
|
+
BrandingColors.crimson,
|
|
38
|
+
BrandingColors.sunset,
|
|
39
|
+
BrandingColors.rust,
|
|
40
|
+
BrandingColors.navy,
|
|
41
|
+
BrandingColors.sky,
|
|
42
|
+
];
|
|
@@ -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
|
+
};
|
package/dist/es2015/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/es2015/index.js
CHANGED
|
@@ -1,10 +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
|
-
|
|
10
|
-
export { BLUIColors_1 as BLUIColors };
|
|
2
|
+
export { BrandingColors, chartColors as ChartColors } from './branding-palette';
|
package/dist/es2015/palette.d.ts
CHANGED
|
@@ -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/es2015/palette.js
CHANGED
|
@@ -1,160 +1,132 @@
|
|
|
1
1
|
/* Primary Colors / User Interface Colors */
|
|
2
|
-
export var
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
2
|
+
export var primary = {
|
|
3
|
+
0: '#000000',
|
|
4
|
+
10: '#001B3D',
|
|
5
|
+
20: '#003063',
|
|
6
|
+
30: '#00468C',
|
|
7
|
+
40: '#005EB8',
|
|
8
|
+
50: '#1C77CC',
|
|
9
|
+
60: '#4D9FEC',
|
|
10
|
+
70: '#79BFFF',
|
|
11
|
+
80: '#B1DAFF',
|
|
12
|
+
90: '#D0EAFD',
|
|
13
|
+
95: '#E5F5FF',
|
|
14
|
+
99: '#FDFBFF',
|
|
15
|
+
100: '#FFFFFF',
|
|
14
16
|
};
|
|
15
|
-
export var
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
17
|
+
export var neutral = {
|
|
18
|
+
0: '#000000',
|
|
19
|
+
4: '#0D1317',
|
|
20
|
+
6: '#141C1F',
|
|
21
|
+
10: '#192024',
|
|
22
|
+
12: '#1E262A',
|
|
23
|
+
17: '#293338',
|
|
24
|
+
20: '#333F48',
|
|
25
|
+
30: '#414E54',
|
|
26
|
+
40: '#4F5B63',
|
|
27
|
+
50: '#5B6770',
|
|
28
|
+
60: '#737F87',
|
|
29
|
+
70: '#98A4AE',
|
|
30
|
+
80: '#BDCAD1',
|
|
31
|
+
87: '#CED8DE',
|
|
32
|
+
90: '#D7E0E5',
|
|
33
|
+
92: '#E0E7EB',
|
|
34
|
+
94: '#E5ECF0',
|
|
35
|
+
95: '#EBF1F4',
|
|
36
|
+
97: '#F2F6F8',
|
|
37
|
+
98: '#F4F8FA',
|
|
38
|
+
99: '#F8FCFC',
|
|
39
|
+
100: '#FFFFFF',
|
|
27
40
|
};
|
|
28
|
-
export var
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
41
|
+
export var neutralVariant = {
|
|
42
|
+
0: '#000000',
|
|
43
|
+
10: '#181C22',
|
|
44
|
+
20: '#2D3038',
|
|
45
|
+
30: '#44474E',
|
|
46
|
+
40: '#5B5E66',
|
|
47
|
+
50: '#74777F',
|
|
48
|
+
60: '#8E9099',
|
|
49
|
+
70: '#A8ABB4',
|
|
50
|
+
80: '#C4C6CF',
|
|
51
|
+
90: '#E0E2EC',
|
|
52
|
+
95: '#EEF0FA',
|
|
53
|
+
99: '#FDFBFF',
|
|
54
|
+
100: '#FFFFFF',
|
|
40
55
|
};
|
|
41
|
-
export var black = {
|
|
42
|
-
50: '#e8eaea',
|
|
43
|
-
100: '#c6cacc',
|
|
44
|
-
200: '#a1a7aa',
|
|
45
|
-
300: '#7b8387',
|
|
46
|
-
400: '#5e696e',
|
|
47
|
-
500: '#424e54',
|
|
48
|
-
600: '#3c474d',
|
|
49
|
-
700: '#333d43',
|
|
50
|
-
800: '#2b353a',
|
|
51
|
-
900: '#1d2529',
|
|
52
|
-
contrastDefaultColor: 'light',
|
|
53
|
-
};
|
|
54
|
-
export var darkBlack = {
|
|
55
|
-
50: '#202224',
|
|
56
|
-
100: '#182022',
|
|
57
|
-
200: '#182022',
|
|
58
|
-
300: '#13181b',
|
|
59
|
-
400: '#101417',
|
|
60
|
-
500: '#0b0e10',
|
|
61
|
-
600: '#0b0e10',
|
|
62
|
-
700: '#08090a',
|
|
63
|
-
800: '#08090a',
|
|
64
|
-
900: '#000000',
|
|
65
|
-
contrastDefaultColor: 'light',
|
|
66
|
-
};
|
|
67
|
-
// alias
|
|
68
|
-
export var vantaBlack = darkBlack;
|
|
69
56
|
/* Status Colors */
|
|
70
|
-
export var
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
50: '#feefe4',
|
|
85
|
-
100: '#fcd6bc',
|
|
86
|
-
200: '#fabb90',
|
|
87
|
-
300: '#f7a064',
|
|
88
|
-
400: '#f68b42',
|
|
89
|
-
500: '#f47721',
|
|
90
|
-
600: '#f36f1d',
|
|
91
|
-
700: '#f16418',
|
|
92
|
-
800: '#ef5a14',
|
|
93
|
-
900: '#ec470b',
|
|
94
|
-
contrastDefaultColor: 'light',
|
|
95
|
-
};
|
|
96
|
-
export var gold = {
|
|
97
|
-
50: '#fdf5e4',
|
|
98
|
-
100: '#fbe6bc',
|
|
99
|
-
200: '#f8d58f',
|
|
100
|
-
300: '#f5c462',
|
|
101
|
-
400: '#f2b741',
|
|
102
|
-
500: '#f0aa1f',
|
|
103
|
-
600: '#eea31b',
|
|
104
|
-
700: '#ec9917',
|
|
105
|
-
800: '#e99012',
|
|
106
|
-
900: '#e57f0a',
|
|
107
|
-
contrastDefaultColor: 'dark',
|
|
57
|
+
export var error = {
|
|
58
|
+
0: '#000000',
|
|
59
|
+
10: '#410002',
|
|
60
|
+
20: '#690005',
|
|
61
|
+
30: '#93000A',
|
|
62
|
+
40: '#BA1A1A',
|
|
63
|
+
50: '#DE3730',
|
|
64
|
+
60: '#FF5449',
|
|
65
|
+
70: '#FF897D',
|
|
66
|
+
80: '#FFB4AB',
|
|
67
|
+
90: '#FFDAD6',
|
|
68
|
+
95: '#FFEDEA',
|
|
69
|
+
99: '#FFFBFF',
|
|
70
|
+
100: '#FFFFFF',
|
|
108
71
|
};
|
|
109
|
-
export var
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
72
|
+
export var warning = {
|
|
73
|
+
0: '#000000',
|
|
74
|
+
10: '#211B00',
|
|
75
|
+
20: '#383000',
|
|
76
|
+
30: '#524700',
|
|
77
|
+
40: '#6C5E00',
|
|
78
|
+
50: '#887700',
|
|
79
|
+
60: '#A59116',
|
|
80
|
+
70: '#C1AB33',
|
|
81
|
+
80: '#DDC437',
|
|
82
|
+
90: '#FBE365',
|
|
83
|
+
95: '#FFF1B6',
|
|
84
|
+
98: '#FFF9EC',
|
|
85
|
+
100: '#FFFFFF',
|
|
121
86
|
};
|
|
122
|
-
export var
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
87
|
+
export var success = {
|
|
88
|
+
0: '#000000',
|
|
89
|
+
4: '#022100',
|
|
90
|
+
10: '#022100',
|
|
91
|
+
20: '#053900',
|
|
92
|
+
30: '#0B5300',
|
|
93
|
+
40: '#126E00',
|
|
94
|
+
50: '#198900',
|
|
95
|
+
60: '#27A70B',
|
|
96
|
+
70: '#48C32E',
|
|
97
|
+
80: '#65E049',
|
|
98
|
+
90: '#95F77D',
|
|
99
|
+
95: '#CBFFB6',
|
|
100
|
+
98: '#EDFFE1',
|
|
101
|
+
100: '#FFFFFF',
|
|
134
102
|
};
|
|
135
|
-
export var
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
103
|
+
export var orange = {
|
|
104
|
+
0: '#000000',
|
|
105
|
+
10: '#2D1600',
|
|
106
|
+
20: '#4B2800',
|
|
107
|
+
30: '#6B3B00',
|
|
108
|
+
40: '#8D4F00',
|
|
109
|
+
50: '#B06400',
|
|
110
|
+
60: '#D37B15',
|
|
111
|
+
70: '#ED8B00',
|
|
112
|
+
80: '#FFB876',
|
|
113
|
+
90: '#FFDCC0',
|
|
114
|
+
95: '#FFEEE1',
|
|
115
|
+
98: '#FFF8F5',
|
|
116
|
+
100: '#FFFFFF',
|
|
147
117
|
};
|
|
148
118
|
export var purple = {
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
119
|
+
0: '#000000',
|
|
120
|
+
10: '#2C0051',
|
|
121
|
+
20: '#480081',
|
|
122
|
+
30: '#6700B5',
|
|
123
|
+
40: '#8424DB',
|
|
124
|
+
50: '#9F45F6',
|
|
125
|
+
60: '#B56EFF',
|
|
126
|
+
70: '#C994FF',
|
|
127
|
+
80: '#DCB8FF',
|
|
128
|
+
90: '#F0DBFF',
|
|
129
|
+
95: '#F9ECFF',
|
|
130
|
+
98: '#FFF7FF',
|
|
131
|
+
100: '#FFFFFF',
|
|
160
132
|
};
|
package/package.json
CHANGED
|
@@ -1,45 +1,48 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightlayer-ui/colors",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-alpha.1",
|
|
4
4
|
"description": "Brightlayer UI colors for Eaton applications",
|
|
5
5
|
"main": "./dist/commonjs/index.js",
|
|
6
6
|
"types": "./dist/commonjs/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"test": "
|
|
8
|
+
"test": "./buildTest.sh",
|
|
9
9
|
"build": "yarn && tsc --module commonjs --outDir dist/commonjs && tsc --module ES2015 --outDir dist/es2015",
|
|
10
|
+
"prettier": "prettier \"**/**.{ts,tsx,js,jsx,json,css,scss,html,md}\" --write",
|
|
11
|
+
"precommit": "yarn && yarn prettier && yarn build && yarn test",
|
|
10
12
|
"publish:package": "set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish",
|
|
11
13
|
"tag:package": "npx -p @brightlayer-ui/tag blui-tag"
|
|
12
14
|
},
|
|
13
15
|
"repository": {
|
|
14
16
|
"type": "git",
|
|
15
|
-
"url": "git+https://github.com/
|
|
17
|
+
"url": "git+https://github.com/etn-ccis/blui-colors.git"
|
|
16
18
|
},
|
|
17
19
|
"keywords": [
|
|
18
|
-
"Brightlayer
|
|
19
|
-
"
|
|
20
|
+
"Brightlayer UI",
|
|
21
|
+
"Branding",
|
|
22
|
+
"Colors",
|
|
20
23
|
"Eaton",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
24
|
+
"Quality",
|
|
25
|
+
"Lighting"
|
|
23
26
|
],
|
|
24
27
|
"author": "Brightlayer UI <brightlayer-ui@eaton.com>",
|
|
25
28
|
"license": "BSD-3-Clause",
|
|
26
29
|
"bugs": {
|
|
27
|
-
"url": "https://github.com/
|
|
28
|
-
},
|
|
29
|
-
"homepage": "https://github.com/brightlayer-ui/colors#readme",
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"@brightlayer-ui/types": "^2.0.0"
|
|
30
|
+
"url": "https://github.com/etn-ccis/blui-colors/issues"
|
|
32
31
|
},
|
|
32
|
+
"homepage": "https://github.com/etn-ccis/blui-colors#readme",
|
|
33
|
+
"prettier": "@brightlayer-ui/prettier-config",
|
|
33
34
|
"devDependencies": {
|
|
34
|
-
"typescript": "^
|
|
35
|
+
"typescript": "^5.0.3",
|
|
36
|
+
"@brightlayer-ui/prettier-config": "^1.0.2",
|
|
37
|
+
"prettier": "^3.0.3"
|
|
35
38
|
},
|
|
36
39
|
"files": [
|
|
37
40
|
"package.json",
|
|
38
41
|
"README.md",
|
|
39
42
|
"LICENSE",
|
|
40
|
-
"LICENSES.json",
|
|
41
43
|
"CHANGELOG.md",
|
|
42
44
|
"dist/",
|
|
45
|
+
"branding-pallete.scss",
|
|
43
46
|
"palette.scss"
|
|
44
47
|
]
|
|
45
48
|
}
|