@proximus/lavender-styling 2.0.0-alpha.3 → 2.0.0-alpha.5
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.
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
--px-color-background-data-magenta: #FF418C;
|
|
16
16
|
--px-color-background-data-blue: #016BC1;
|
|
17
17
|
--px-color-background-data-turquoise: #66D2CC;
|
|
18
|
+
--px-color-background-footer-default: #7d57a7;
|
|
19
|
+
--px-color-background-footer-inverted: #ffffff;
|
|
18
20
|
--px-color-background-gradient-purple-top-red: 180deg, #5C2D91 66%, #EE2E5D 100%;
|
|
19
21
|
--px-color-background-gradient-purple-top-magenta: 180deg, #5C2D91 66%, #FF418C 100%;
|
|
20
22
|
--px-color-background-gradient-purple-top-orange: 180deg, #5C2D91 66%, #F39200 100%;
|
|
@@ -18,6 +18,8 @@ export const ColorBackgroundDataRed: string;
|
|
|
18
18
|
export const ColorBackgroundDataMagenta: string;
|
|
19
19
|
export const ColorBackgroundDataBlue: string;
|
|
20
20
|
export const ColorBackgroundDataTurquoise: string;
|
|
21
|
+
export const ColorBackgroundFooterDefault: string;
|
|
22
|
+
export const ColorBackgroundFooterInverted: string;
|
|
21
23
|
export const ColorBackgroundGradientPurpleTopRed: {
|
|
22
24
|
color: string;
|
|
23
25
|
position: number;
|
|
@@ -23,6 +23,8 @@ export const ColorBackgroundDataRed = "#B30000";
|
|
|
23
23
|
export const ColorBackgroundDataMagenta = "#FF418C";
|
|
24
24
|
export const ColorBackgroundDataBlue = "#016BC1";
|
|
25
25
|
export const ColorBackgroundDataTurquoise = "#66D2CC";
|
|
26
|
+
export const ColorBackgroundFooterDefault = "#7d57a7";
|
|
27
|
+
export const ColorBackgroundFooterInverted = "#ffffff";
|
|
26
28
|
export const ColorBackgroundGradientPurpleTopRed = [
|
|
27
29
|
{ color: "#5C2D91", position: 0.66 },
|
|
28
30
|
{ color: "#EE2E5D", position: 1 },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proximus/lavender-styling",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"lint": "npx tsc -p tsconfig.json",
|
|
34
|
-
"
|
|
34
|
+
"tokens": "node scripts/build-dictionary.js ",
|
|
35
|
+
"build": "npm run clean && npm run lint && npm run tokens && mkdir -p dist/far/away && cp package.json dist/far/away",
|
|
35
36
|
"clean": "rm -rf dist"
|
|
36
37
|
},
|
|
37
38
|
"author": "",
|