@brightlayer-ui/colors 3.2.0-alpha.1 → 3.2.0-alpha.3
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
|
@@ -19,3 +19,6 @@ export declare const yellow: BLUIColor;
|
|
|
19
19
|
export declare const green: BLUIColor;
|
|
20
20
|
export declare const lightBlue: BLUIColor;
|
|
21
21
|
export declare const purple: BLUIColor;
|
|
22
|
+
export declare const highlight: string;
|
|
23
|
+
export declare const highlightBlue: string;
|
|
24
|
+
export declare const textFieldContainer: string;
|
package/dist/commonjs/palette.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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.textFieldContainer = exports.highlightBlue = exports.highlight = 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
4
|
/* Primary Colors / User Interface Colors */
|
|
5
5
|
exports.blue = {
|
|
6
6
|
50: '#ecf0ff',
|
|
@@ -161,3 +161,6 @@ exports.purple = {
|
|
|
161
161
|
900: '#6a1be4',
|
|
162
162
|
contrastDefaultColor: 'light',
|
|
163
163
|
};
|
|
164
|
+
exports.highlight = '#5590EF';
|
|
165
|
+
exports.highlightBlue = '#7BABFF';
|
|
166
|
+
exports.textFieldContainer = '#BDCAD1';
|
package/dist/es2015/palette.d.ts
CHANGED
|
@@ -19,3 +19,6 @@ export declare const yellow: BLUIColor;
|
|
|
19
19
|
export declare const green: BLUIColor;
|
|
20
20
|
export declare const lightBlue: BLUIColor;
|
|
21
21
|
export declare const purple: BLUIColor;
|
|
22
|
+
export declare const highlight: string;
|
|
23
|
+
export declare const highlightBlue: string;
|
|
24
|
+
export declare const textFieldContainer: string;
|
package/dist/es2015/palette.js
CHANGED
package/package.json
CHANGED