@daikin-oss/dds-tokens 0.0.0 → 0.1.0
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/README.md +8 -5
- package/build/css/AAF/Dark/buttons.css +1 -1
- package/build/css/AAF/Dark/variables.css +14 -2
- package/build/css/AAF/Light/buttons.css +1 -1
- package/build/css/AAF/Light/variables.css +14 -2
- package/build/css/DKN/Dark/buttons.css +1 -1
- package/build/css/DKN/Dark/variables.css +24 -2
- package/build/css/DKN/Light/buttons.css +1 -1
- package/build/css/DKN/Light/variables.css +24 -2
- package/build/js/{AAF → cjs/AAF}/Dark/variables.d.ts +14 -2
- package/build/js/cjs/AAF/Dark/variables.js +288 -0
- package/build/js/{DKN/Dark → cjs/AAF/Light}/variables.d.ts +14 -3
- package/build/js/cjs/AAF/Light/variables.js +288 -0
- package/build/js/cjs/DKN/Dark/variables.d.ts +328 -0
- package/build/js/cjs/DKN/Dark/variables.js +298 -0
- package/build/js/cjs/DKN/Light/variables.d.ts +328 -0
- package/build/js/cjs/DKN/Light/variables.js +298 -0
- package/build/js/{AAF/Light → es/AAF/Dark}/variables.d.ts +14 -2
- package/build/js/{AAF → es/AAF}/Dark/variables.js +14 -2
- package/build/js/{DKN → es/AAF}/Light/variables.d.ts +14 -3
- package/build/js/{AAF → es/AAF}/Light/variables.js +14 -2
- package/build/js/es/DKN/Dark/variables.d.ts +328 -0
- package/build/js/{DKN → es/DKN}/Dark/variables.js +24 -2
- package/build/js/es/DKN/Light/variables.d.ts +328 -0
- package/build/js/{DKN → es/DKN}/Light/variables.js +24 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -18,21 +18,24 @@ npm install @daikin-oss/dds-tokens
|
|
|
18
18
|
|
|
19
19
|
Import as js variables:
|
|
20
20
|
|
|
21
|
-
```
|
|
22
|
-
import {
|
|
21
|
+
```js
|
|
22
|
+
import { buttonColorBackgroundPrimaryActive } from '@daikin-oss/dds-tokens/js/daikin/Light/variables.js';
|
|
23
|
+
|
|
24
|
+
// CommonJS
|
|
25
|
+
const {
|
|
23
26
|
buttonColorBackgroundPrimaryActive
|
|
24
|
-
}
|
|
27
|
+
} = require('@daikin-oss/dds-tokens/js/daikin/Light/variables.js');
|
|
25
28
|
```
|
|
26
29
|
|
|
27
30
|
Import the CSS:
|
|
28
31
|
|
|
29
|
-
```
|
|
32
|
+
```CSS
|
|
30
33
|
import variables from '@daikin-oss/dds-tokens/css/daikin/Dark/variables.css'
|
|
31
34
|
```
|
|
32
35
|
|
|
33
36
|
The above includes all CSS classes - including core styles and components
|
|
34
37
|
There are also component-specific files if you don't need everything:
|
|
35
38
|
|
|
36
|
-
```
|
|
39
|
+
```CSS
|
|
37
40
|
import buttonStyles from '@daikin-oss/dds-tokens/css/daikin/Dark/buttons.css'
|
|
38
41
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 29 Jul 2024 23:34:49 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -106,6 +106,8 @@
|
|
|
106
106
|
--colorFeedbackPositive: #13CE66; /* System status is positive */
|
|
107
107
|
--colorFeedbackWarning: #FFCC3D; /* System status has a warning */
|
|
108
108
|
--colorFeedbackNegative: #FF4949; /* System status is negative */
|
|
109
|
+
--colorFeedbackAlarm: #F68C54;
|
|
110
|
+
--colorFeedbackInformation: #0097E0;
|
|
109
111
|
--colorBrandPrimary: #DB4F66; /* Primary brand blue */
|
|
110
112
|
--colorBrandSecondary: #C8102E;
|
|
111
113
|
--colorTextBrandPrimary: #DB4F66;
|
|
@@ -268,9 +270,19 @@
|
|
|
268
270
|
--formBorderNegative: 1px solid #FF4949;
|
|
269
271
|
--tabBorderUnderline: 1px #CFDFDF;
|
|
270
272
|
--tabBorderSelected: 1px #0097E0;
|
|
273
|
+
--notificationColorBackgroundPositive: #13CE66;
|
|
274
|
+
--notificationColorBackgroundNegative: #FF4949;
|
|
275
|
+
--notificationColorBackgroundWarning: #FFCC3D;
|
|
276
|
+
--notificationColorBackgroundAlarm: #F68C54;
|
|
277
|
+
--notificationColorBackgroundInformation: #0097E0;
|
|
278
|
+
--notificationBorderPositive: 2px #13CE66;
|
|
279
|
+
--notificationBorderNegative: 2px #FF4949;
|
|
280
|
+
--notificationBorderWarning: 2px #FFCC3D;
|
|
281
|
+
--notificationBorderAlarm: 2px #F68C54;
|
|
282
|
+
--notificationBorderInformation: 2px #0097E0;
|
|
283
|
+
--iconColorBackground: #ffffff;
|
|
271
284
|
--containerColorBackground: #414141;
|
|
272
285
|
--containerColorTextHeader: #ffffff;
|
|
273
286
|
--containerColorTextBody: #FAFAFA;
|
|
274
287
|
--containerShadow: 0 -2px 19px 0 #ffffff1A;
|
|
275
|
-
--iconColorBackground: #ffffff;
|
|
276
288
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 29 Jul 2024 23:34:48 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -106,6 +106,8 @@
|
|
|
106
106
|
--colorFeedbackPositive: #13CE66; /* System status is positive */
|
|
107
107
|
--colorFeedbackWarning: #FFCC3D; /* System status has a warning */
|
|
108
108
|
--colorFeedbackNegative: #FF4949; /* System status is negative */
|
|
109
|
+
--colorFeedbackAlarm: #F68C54;
|
|
110
|
+
--colorFeedbackInformation: #0097E0;
|
|
109
111
|
--colorBrandPrimary: #C8102E; /* Primary brand blue */
|
|
110
112
|
--colorBrandSecondary: #DB4F66;
|
|
111
113
|
--colorTextBrandPrimary: #C8102E;
|
|
@@ -268,9 +270,19 @@
|
|
|
268
270
|
--formBorderNegative: 1px solid #FF4949;
|
|
269
271
|
--tabBorderUnderline: 1px #CFDFDF;
|
|
270
272
|
--tabBorderSelected: 1px #0097E0;
|
|
273
|
+
--notificationColorBackgroundPositive: #13CE66;
|
|
274
|
+
--notificationColorBackgroundNegative: #FF4949;
|
|
275
|
+
--notificationColorBackgroundWarning: #FFCC3D;
|
|
276
|
+
--notificationColorBackgroundAlarm: #F68C54;
|
|
277
|
+
--notificationColorBackgroundInformation: #0097E0;
|
|
278
|
+
--notificationBorderPositive: 2px #13CE66;
|
|
279
|
+
--notificationBorderNegative: 2px #FF4949;
|
|
280
|
+
--notificationBorderWarning: 2px #FFCC3D;
|
|
281
|
+
--notificationBorderAlarm: 2px #F68C54;
|
|
282
|
+
--notificationBorderInformation: 2px #0097E0;
|
|
283
|
+
--iconColorBackground: #414141;
|
|
271
284
|
--containerColorBackground: #ffffff;
|
|
272
285
|
--containerColorTextHeader: #414141;
|
|
273
286
|
--containerColorTextBody: #828282;
|
|
274
287
|
--containerShadow: 0 -2px 19px 0 #0000001A;
|
|
275
|
-
--iconColorBackground: #414141;
|
|
276
288
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 29 Jul 2024 23:34:48 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -106,6 +106,8 @@
|
|
|
106
106
|
--colorFeedbackPositive: #13CE66; /* System status is positive */
|
|
107
107
|
--colorFeedbackWarning: #FFCC3D; /* System status has a warning */
|
|
108
108
|
--colorFeedbackNegative: #FF4949; /* System status is negative */
|
|
109
|
+
--colorFeedbackAlarm: #F68C54;
|
|
110
|
+
--colorFeedbackInformation: #0097E0;
|
|
109
111
|
--colorBrandPrimary: #54c3f1; /* Primary brand blue */
|
|
110
112
|
--colorBrandSecondary: #0097E0; /* Primary secondary brand blue */
|
|
111
113
|
--colorTextBrandPrimary: #54c3f1;
|
|
@@ -268,9 +270,29 @@
|
|
|
268
270
|
--formBorderNegative: 1px solid #FF4949;
|
|
269
271
|
--tabBorderUnderline: 1px #CFDFDF;
|
|
270
272
|
--tabBorderSelected: 1px #0097E0;
|
|
273
|
+
--tabColorLineActive: #54c3f1;
|
|
274
|
+
--tabColorLineHover: #0097E0;
|
|
275
|
+
--tabColorLinePress: #7CD5F7;
|
|
276
|
+
--tabColorLineFocus: #A6E4FB;
|
|
277
|
+
--tabColorLineDisabled: #616161;
|
|
278
|
+
--tabColorTextActive: #54c3f1;
|
|
279
|
+
--tabColorTextHover: #0097E0;
|
|
280
|
+
--tabColorTextPress: #7CD5F7;
|
|
281
|
+
--tabColorTextFocus: #A6E4FB;
|
|
282
|
+
--tabColorTextDisabled: #616161;
|
|
283
|
+
--notificationColorBackground: #212121;
|
|
284
|
+
--notificationColorText: #FAFAFA;
|
|
285
|
+
--notificationBorderPositive: 2px #13CE66;
|
|
286
|
+
--notificationBorderNegative: 2px #FF4949;
|
|
287
|
+
--notificationBorderWarning: 2px #FFCC3D;
|
|
288
|
+
--notificationBorderAlarm: 2px #F68C54;
|
|
289
|
+
--notificationBorderInformation: 2px #0097E0;
|
|
290
|
+
--notificationShadow: 0 -2px 19px 0 #ffffff1A;
|
|
291
|
+
--iconColorBackgroundNeutral: #A0A0A0;
|
|
292
|
+
--iconColorBackgroundDefault: #FAFAFA;
|
|
293
|
+
--iconColorBackgroundTheme: #000000;
|
|
271
294
|
--containerColorBackground: #212121;
|
|
272
295
|
--containerColorTextHeader: #FAFAFA;
|
|
273
296
|
--containerColorTextBody: #EBEBEB;
|
|
274
297
|
--containerShadow: 0 -2px 19px 0 #ffffff1A;
|
|
275
|
-
--iconColorBackground: #FAFAFA;
|
|
276
298
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 29 Jul 2024 23:34:48 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -106,6 +106,8 @@
|
|
|
106
106
|
--colorFeedbackPositive: #13CE66; /* System status is positive */
|
|
107
107
|
--colorFeedbackWarning: #FFCC3D; /* System status has a warning */
|
|
108
108
|
--colorFeedbackNegative: #FF4949; /* System status is negative */
|
|
109
|
+
--colorFeedbackAlarm: #F68C54;
|
|
110
|
+
--colorFeedbackInformation: #0097E0;
|
|
109
111
|
--colorBrandPrimary: #0097E0; /* Primary brand blue */
|
|
110
112
|
--colorBrandSecondary: #54c3f1; /* Primary secondary brand blue */
|
|
111
113
|
--colorTextBrandPrimary: #0097E0;
|
|
@@ -268,9 +270,29 @@
|
|
|
268
270
|
--formBorderNegative: 1px solid #FF4949;
|
|
269
271
|
--tabBorderUnderline: 1px #CFDFDF;
|
|
270
272
|
--tabBorderSelected: 1px #0097E0;
|
|
273
|
+
--tabColorLineActive: #0097E0;
|
|
274
|
+
--tabColorLineHover: #54c3f1;
|
|
275
|
+
--tabColorLinePress: #0674C1;
|
|
276
|
+
--tabColorLineFocus: #0D59A3;
|
|
277
|
+
--tabColorLineDisabled: #DCDCDC;
|
|
278
|
+
--tabColorTextActive: #0097E0;
|
|
279
|
+
--tabColorTextHover: #54c3f1;
|
|
280
|
+
--tabColorTextPress: #0674C1;
|
|
281
|
+
--tabColorTextFocus: #0D59A3;
|
|
282
|
+
--tabColorTextDisabled: #DCDCDC;
|
|
283
|
+
--notificationColorBackground: #ffffff;
|
|
284
|
+
--notificationColorText: #212121;
|
|
285
|
+
--notificationBorderPositive: 2px #13CE66;
|
|
286
|
+
--notificationBorderNegative: 2px #FF4949;
|
|
287
|
+
--notificationBorderWarning: 2px #FFCC3D;
|
|
288
|
+
--notificationBorderAlarm: 2px #F68C54;
|
|
289
|
+
--notificationBorderInformation: 2px #0097E0;
|
|
290
|
+
--notificationShadow: 0 -2px 19px 0 #0000001A;
|
|
291
|
+
--iconColorBackgroundNeutral: #A0A0A0;
|
|
292
|
+
--iconColorBackgroundDefault: #212121;
|
|
293
|
+
--iconColorBackgroundTheme: #ffffff;
|
|
271
294
|
--containerColorBackground: #ffffff;
|
|
272
295
|
--containerColorTextHeader: #212121;
|
|
273
296
|
--containerColorTextBody: #616161;
|
|
274
297
|
--containerShadow: 0 -2px 19px 0 #0000001A;
|
|
275
|
-
--iconColorBackground: #212121;
|
|
276
298
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 29 Jul 2024 23:34:49 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const colorBlue10 : string;
|
|
@@ -108,6 +108,8 @@ export const colorFeedbackPositive : string;
|
|
|
108
108
|
export const colorFeedbackWarning : string;
|
|
109
109
|
/** System status is negative */
|
|
110
110
|
export const colorFeedbackNegative : string;
|
|
111
|
+
export const colorFeedbackAlarm : string;
|
|
112
|
+
export const colorFeedbackInformation : string;
|
|
111
113
|
/** Primary brand blue */
|
|
112
114
|
export const colorBrandPrimary : string;
|
|
113
115
|
export const colorBrandSecondary : string;
|
|
@@ -298,8 +300,18 @@ export const formBorderActive : string;
|
|
|
298
300
|
export const formBorderNegative : string;
|
|
299
301
|
export const tabBorderUnderline : string;
|
|
300
302
|
export const tabBorderSelected : string;
|
|
303
|
+
export const notificationColorBackgroundPositive : string;
|
|
304
|
+
export const notificationColorBackgroundNegative : string;
|
|
305
|
+
export const notificationColorBackgroundWarning : string;
|
|
306
|
+
export const notificationColorBackgroundAlarm : string;
|
|
307
|
+
export const notificationColorBackgroundInformation : string;
|
|
308
|
+
export const notificationBorderPositive : string;
|
|
309
|
+
export const notificationBorderNegative : string;
|
|
310
|
+
export const notificationBorderWarning : string;
|
|
311
|
+
export const notificationBorderAlarm : string;
|
|
312
|
+
export const notificationBorderInformation : string;
|
|
313
|
+
export const iconColorBackground : string;
|
|
301
314
|
export const containerColorBackground : string;
|
|
302
315
|
export const containerColorTextHeader : string;
|
|
303
316
|
export const containerColorTextBody : string;
|
|
304
317
|
export const containerShadow : string;
|
|
305
|
-
export const iconColorBackground : string;
|
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Mon, 29 Jul 2024 23:34:49 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
module.exports = {
|
|
7
|
+
"colorBlue10": "#D1F3FF",
|
|
8
|
+
"colorBlue20": "#A6E4FB",
|
|
9
|
+
"colorBlue30": "#7CD5F7",
|
|
10
|
+
"colorBlue40": "#54c3f1",
|
|
11
|
+
"colorBlue50": "#2DB8F0",
|
|
12
|
+
"colorBlue60": "#0097E0",
|
|
13
|
+
"colorBlue70": "#0674C1",
|
|
14
|
+
"colorBlue80": "#0D59A3",
|
|
15
|
+
"colorBlue90": "#114484",
|
|
16
|
+
"colorBlue100": "#143466",
|
|
17
|
+
"colorBlue110": "#132547",
|
|
18
|
+
"colorBlue120": "#0E1629",
|
|
19
|
+
"colorBlue130": "#04060A",
|
|
20
|
+
"colorGreen10": "#F4FFE6",
|
|
21
|
+
"colorGreen20": "#D0F8B9",
|
|
22
|
+
"colorGreen30": "#9FF28F",
|
|
23
|
+
"colorGreen40": "#69EB6E",
|
|
24
|
+
"colorGreen50": "#45E46A",
|
|
25
|
+
"colorGreen60": "#13CE66",
|
|
26
|
+
"colorGreen70": "#04A632",
|
|
27
|
+
"colorGreen80": "#007F0E",
|
|
28
|
+
"colorGreen90": "#055700",
|
|
29
|
+
"colorGreen100": "#0B2F00",
|
|
30
|
+
"colorGreen110": "#030800",
|
|
31
|
+
"colorYellow10": "#FCFFE6",
|
|
32
|
+
"colorYellow20": "#FDFFBB",
|
|
33
|
+
"colorYellow30": "#FFF890",
|
|
34
|
+
"colorYellow40": "#FFE667",
|
|
35
|
+
"colorYellow50": "#FFCC3D",
|
|
36
|
+
"colorYellow60": "#D7B834",
|
|
37
|
+
"colorYellow70": "#AFA02E",
|
|
38
|
+
"colorYellow80": "#878429",
|
|
39
|
+
"colorYellow90": "#5C5F21",
|
|
40
|
+
"colorYellow100": "#333717",
|
|
41
|
+
"colorYellow110": "#0E0F07",
|
|
42
|
+
"colorOrange10": "#FFF4E6",
|
|
43
|
+
"colorOrange20": "#FFE7CD",
|
|
44
|
+
"colorOrange30": "#FFD8B5",
|
|
45
|
+
"colorOrange40": "#FFC69A",
|
|
46
|
+
"colorOrange50": "#FFB27F",
|
|
47
|
+
"colorOrange60": "#F68C54",
|
|
48
|
+
"colorOrange70": "#E86427",
|
|
49
|
+
"colorOrange80": "#B15C20",
|
|
50
|
+
"colorOrange90": "#7A4D14",
|
|
51
|
+
"colorOrange100": "#443809",
|
|
52
|
+
"colorOrange110": "#0C0D01",
|
|
53
|
+
"colorRed10": "#FAF2ED",
|
|
54
|
+
"colorRed20": "#FEE0D2",
|
|
55
|
+
"colorRed30": "#FFC7B5",
|
|
56
|
+
"colorRed40": "#FFAA98",
|
|
57
|
+
"colorRed50": "#FF867B",
|
|
58
|
+
"colorRed60": "#FF4949",
|
|
59
|
+
"colorRed70": "#CE3B2B",
|
|
60
|
+
"colorRed80": "#9C3219",
|
|
61
|
+
"colorRed90": "#6B290F",
|
|
62
|
+
"colorRed100": "#391A08",
|
|
63
|
+
"colorRed110": "#080401",
|
|
64
|
+
"colorRedAaf100": "#FCECEA",
|
|
65
|
+
"colorRedAaf200": "#F5C0B8",
|
|
66
|
+
"colorRedAaf300": "#F8AEBA",
|
|
67
|
+
"colorRedAaf400": "#DB4F66",
|
|
68
|
+
"colorRedAaf500": "#D2324C",
|
|
69
|
+
"colorRedAaf600": "#C8102E",
|
|
70
|
+
"colorMagenta10": "#F5F5FF",
|
|
71
|
+
"colorMagenta20": "#E4E0F8",
|
|
72
|
+
"colorMagenta30": "#D7CCF2",
|
|
73
|
+
"colorMagenta40": "#CDB8EB",
|
|
74
|
+
"colorMagenta50": "#C7A4E5",
|
|
75
|
+
"colorMagenta60": "#B981CF",
|
|
76
|
+
"colorMagenta70": "#B15FBA",
|
|
77
|
+
"colorMagenta80": "#A43D95",
|
|
78
|
+
"colorMagenta90": "#722B6D",
|
|
79
|
+
"colorMagenta100": "#3F183F",
|
|
80
|
+
"colorMagenta110": "#0C050D",
|
|
81
|
+
"colorGrey10": "#FAFAFA",
|
|
82
|
+
"colorGrey20": "#EBEBEB",
|
|
83
|
+
"colorGrey30": "#DCDCDC",
|
|
84
|
+
"colorGrey40": "#CECECE",
|
|
85
|
+
"colorGrey50": "#BFBFBF",
|
|
86
|
+
"colorGrey60": "#A0A0A0",
|
|
87
|
+
"colorGrey70": "#828282",
|
|
88
|
+
"colorGrey80": "#616161",
|
|
89
|
+
"colorGrey90": "#414141",
|
|
90
|
+
"colorGrey100": "#212121",
|
|
91
|
+
"colorCoolgrey10": "#EDFFFE",
|
|
92
|
+
"colorCoolgrey20": "#DEEFEF",
|
|
93
|
+
"colorCoolgrey30": "#CFDFDF",
|
|
94
|
+
"colorCoolgrey40": "#C0CED0",
|
|
95
|
+
"colorCoolgrey50": "#B1BEC0",
|
|
96
|
+
"colorCoolgrey60": "#8D9CA0",
|
|
97
|
+
"colorCoolgrey70": "#6C7A81",
|
|
98
|
+
"colorCoolgrey80": "#445762",
|
|
99
|
+
"colorCoolgrey90": "#253543",
|
|
100
|
+
"colorCoolgrey100": "#0F1724",
|
|
101
|
+
"colorCoolgrey110": "#010205",
|
|
102
|
+
"colorBlack": "#000000",
|
|
103
|
+
"colorWhite": "#ffffff",
|
|
104
|
+
"colorBlackShadow": "#0000001A",
|
|
105
|
+
"colorWhiteShadow": "#ffffff1A",
|
|
106
|
+
"colorFeedbackPositive": "#13CE66",
|
|
107
|
+
"colorFeedbackWarning": "#FFCC3D",
|
|
108
|
+
"colorFeedbackNegative": "#FF4949",
|
|
109
|
+
"colorFeedbackAlarm": "#F68C54",
|
|
110
|
+
"colorFeedbackInformation": "#0097E0",
|
|
111
|
+
"colorBrandPrimary": "#DB4F66",
|
|
112
|
+
"colorBrandSecondary": "#C8102E",
|
|
113
|
+
"colorTextBrandPrimary": "#DB4F66",
|
|
114
|
+
"colorTextTheme": "#414141",
|
|
115
|
+
"colorTextDefault": "#ffffff",
|
|
116
|
+
"colorTextDefaultSub": "#FAFAFA",
|
|
117
|
+
"colorBackgroundTheme": "#000000",
|
|
118
|
+
"colorBackgroundComponent": "#414141",
|
|
119
|
+
"colorBackgroundObject": "#ffffff",
|
|
120
|
+
"fontSize12": "12px",
|
|
121
|
+
"fontSize14": "14px",
|
|
122
|
+
"fontSize16": "16px",
|
|
123
|
+
"fontSize18": "18px",
|
|
124
|
+
"fontSize20": "20px",
|
|
125
|
+
"fontSize24": "24px",
|
|
126
|
+
"fontSize28": "28px",
|
|
127
|
+
"fontSize32": "32px",
|
|
128
|
+
"fontSize36": "36px",
|
|
129
|
+
"fontSize40": "40px",
|
|
130
|
+
"fontSize48": "48px",
|
|
131
|
+
"fontSizeXs": "12px",
|
|
132
|
+
"fontSizeS": "14px",
|
|
133
|
+
"fontSizeM": "16px",
|
|
134
|
+
"fontSizeL": "18px",
|
|
135
|
+
"fontSizeXl": "20px",
|
|
136
|
+
"fontSize2Xl": "24px",
|
|
137
|
+
"fontSize3Xl": "28px",
|
|
138
|
+
"fontSize4Xl": "32px",
|
|
139
|
+
"fontSize5Xl": "36px",
|
|
140
|
+
"fontSize6Xl": "40px",
|
|
141
|
+
"fontSize7Xl": "48px",
|
|
142
|
+
"lineHeight130": 1.3,
|
|
143
|
+
"lineHeight150": 1.5,
|
|
144
|
+
"lineHeightM": 1.3,
|
|
145
|
+
"lineHeightL": 1.5,
|
|
146
|
+
"fontWeightBold": 700,
|
|
147
|
+
"fontWeightRegular": 400,
|
|
148
|
+
"fontFamilyRoboto": "Roboto",
|
|
149
|
+
"fontFamilyBase": "Roboto",
|
|
150
|
+
"borderRadius2": "2px",
|
|
151
|
+
"borderRadius4": "4px",
|
|
152
|
+
"borderRadius6": "6px",
|
|
153
|
+
"borderRadius8": "8px",
|
|
154
|
+
"borderRadius10": "10px",
|
|
155
|
+
"borderRadius12": "12px",
|
|
156
|
+
"borderRadius16": "16px",
|
|
157
|
+
"borderRadius2Xs": "2px",
|
|
158
|
+
"borderRadiusXs": "4px",
|
|
159
|
+
"borderRadiusS": "6px",
|
|
160
|
+
"borderRadiusM": "8px",
|
|
161
|
+
"borderRadiusL": "10px",
|
|
162
|
+
"borderRadiusXl": "12px",
|
|
163
|
+
"borderRadius2Xl": "16px",
|
|
164
|
+
"borderWidth1": "1px",
|
|
165
|
+
"borderWidth2": "2px",
|
|
166
|
+
"borderWidth4": "4px",
|
|
167
|
+
"borderWidthS": "1px",
|
|
168
|
+
"borderWidthM": "2px",
|
|
169
|
+
"borderWidthL": "4px",
|
|
170
|
+
"space0": "0",
|
|
171
|
+
"space2": "2px",
|
|
172
|
+
"space4": "4px",
|
|
173
|
+
"space8": "8px",
|
|
174
|
+
"space12": "12px",
|
|
175
|
+
"space16": "16px",
|
|
176
|
+
"space20": "20px",
|
|
177
|
+
"space24": "24px",
|
|
178
|
+
"space32": "32px",
|
|
179
|
+
"space40": "40px",
|
|
180
|
+
"space48": "48px",
|
|
181
|
+
"space56": "56px",
|
|
182
|
+
"space64": "64px",
|
|
183
|
+
"space72": "72px",
|
|
184
|
+
"space80": "80px",
|
|
185
|
+
"space96": "96px",
|
|
186
|
+
"space4Xs": "0",
|
|
187
|
+
"space3Xs": "2px",
|
|
188
|
+
"space2Xs": "4px",
|
|
189
|
+
"spaceXs": "8px",
|
|
190
|
+
"spaceS": "12px",
|
|
191
|
+
"spaceM": "16px",
|
|
192
|
+
"spaceL": "20px",
|
|
193
|
+
"spaceXl": "24px",
|
|
194
|
+
"space2Xl": "32px",
|
|
195
|
+
"space3Xl": "40px",
|
|
196
|
+
"space4Xl": "48px",
|
|
197
|
+
"space5Xl": "56px",
|
|
198
|
+
"space6Xl": "64px",
|
|
199
|
+
"space7Xl": "72px",
|
|
200
|
+
"space8Xl": "80px",
|
|
201
|
+
"space9Xl": "96px",
|
|
202
|
+
"shadowBlack": "0 -2px 19px 0 #0000001A",
|
|
203
|
+
"shadowWhite": "0 -2px 19px 0 #ffffff1A",
|
|
204
|
+
"bodyXs": "400 12px/1.5 Roboto",
|
|
205
|
+
"bodyS": "400 14px/1.5 Roboto",
|
|
206
|
+
"bodyM": "400 16px/1.5 Roboto",
|
|
207
|
+
"bodyL": "400 18px/1.5 Roboto",
|
|
208
|
+
"bodyXl": "400 20px/1.5 Roboto",
|
|
209
|
+
"body2Xl": "400 24px/1.5 Roboto",
|
|
210
|
+
"body3Xl": "400 28px/1.5 Roboto",
|
|
211
|
+
"body4Xl": "400 32px/1.5 Roboto",
|
|
212
|
+
"body5Xl": "400 36px/1.5 Roboto",
|
|
213
|
+
"body6Xl": "400 40px/1.5 Roboto",
|
|
214
|
+
"body7Xl": "400 48px/1.5 Roboto",
|
|
215
|
+
"headerXs": "700 12px/1.3 Roboto",
|
|
216
|
+
"headerS": "700 14px/1.3 Roboto",
|
|
217
|
+
"headerM": "700 16px/1.3 Roboto",
|
|
218
|
+
"headerL": "700 18px/1.3 Roboto",
|
|
219
|
+
"headerXl": "700 20px/1.3 Roboto",
|
|
220
|
+
"header2Xl": "700 24px/1.3 Roboto",
|
|
221
|
+
"header3Xl": "700 28px/1.3 Roboto",
|
|
222
|
+
"header4Xl": "700 32px/1.3 Roboto",
|
|
223
|
+
"header5Xl": "700 36px/1.3 Roboto",
|
|
224
|
+
"header6Xl": "700 40px/1.3 Roboto",
|
|
225
|
+
"header7Xl": "700 48px/1.3 Roboto",
|
|
226
|
+
"buttonBorderSignInActive": "1px Inside #616161",
|
|
227
|
+
"buttonBorderSecondaryActive": "1px Solid #DB4F66",
|
|
228
|
+
"buttonBorderSecondaryHover": "1px Solid #C8102E",
|
|
229
|
+
"buttonBorderSecondaryPress": "1px Solid #F8AEBA",
|
|
230
|
+
"buttonBorderSecondaryFocus": "1px Solid #F5C0B8",
|
|
231
|
+
"buttonBorderSecondaryDisabled": "1px Solid #616161",
|
|
232
|
+
"buttonColorBackgroundPrimaryActive": "#DB4F66",
|
|
233
|
+
"buttonColorBackgroundPrimaryHover": "#C8102E",
|
|
234
|
+
"buttonColorBackgroundPrimaryPress": "#F8AEBA",
|
|
235
|
+
"buttonColorBackgroundPrimaryFocus": "#F5C0B8",
|
|
236
|
+
"buttonColorBackgroundPrimaryDisabled": "#616161",
|
|
237
|
+
"buttonColorBorderSecondaryActive": "#DB4F66",
|
|
238
|
+
"buttonColorBorderSecondaryHover": "#C8102E",
|
|
239
|
+
"buttonColorBorderSecondaryPress": "#F8AEBA",
|
|
240
|
+
"buttonColorBorderSecondaryFocus": "#F5C0B8",
|
|
241
|
+
"buttonColorBorderSecondaryDisabled": "#616161",
|
|
242
|
+
"buttonColorTextSecondaryActive": "#DB4F66",
|
|
243
|
+
"buttonColorTextSecondaryHover": "#C8102E",
|
|
244
|
+
"buttonColorTextSecondaryPress": "#F8AEBA",
|
|
245
|
+
"buttonColorTextSecondaryFocus": "#F5C0B8",
|
|
246
|
+
"buttonColorTextSecondaryDisabled": "#616161",
|
|
247
|
+
"buttonColorTextPrimary": "#414141",
|
|
248
|
+
"checkboxBorderUnselected": "2px solid #BFBFBF",
|
|
249
|
+
"checkboxColorBackground": "#0097E0",
|
|
250
|
+
"checkboxColorIcon": "#ffffff",
|
|
251
|
+
"dropdownColorBackground": "#ffffff",
|
|
252
|
+
"dropdownColorText": "#414141",
|
|
253
|
+
"dropdownTrayColorBackgroundSelected": "#EBEBEB",
|
|
254
|
+
"tableColorBackground": "#ffffff",
|
|
255
|
+
"tableColorText": "#414141",
|
|
256
|
+
"tableHeaderBorder": "1px #000000",
|
|
257
|
+
"tableCellBorder": "1px #EBEBEB",
|
|
258
|
+
"tablePageNumberColorBackgroundSelected": "#828282",
|
|
259
|
+
"tablePageNumberColorTextDefault": "#414141",
|
|
260
|
+
"tablePageNumberColorTextSelected": "#ffffff",
|
|
261
|
+
"tablePageNumberBorderHover": "1px #828282",
|
|
262
|
+
"loginSsoButtonBorder": "1px #616161",
|
|
263
|
+
"loginSsoButtonColorText": "#616161",
|
|
264
|
+
"formColorBackground": "#ffffff",
|
|
265
|
+
"formColorTextDefault": "#212121",
|
|
266
|
+
"formColorTextPlaceholder": "#828282",
|
|
267
|
+
"formColorTextPositive": "#13CE66",
|
|
268
|
+
"formColorTextNegative": "#FF4949",
|
|
269
|
+
"formBorderActive": "1px Solid #828282",
|
|
270
|
+
"formBorderNegative": "1px solid #FF4949",
|
|
271
|
+
"tabBorderUnderline": "1px #CFDFDF",
|
|
272
|
+
"tabBorderSelected": "1px #0097E0",
|
|
273
|
+
"notificationColorBackgroundPositive": "#13CE66",
|
|
274
|
+
"notificationColorBackgroundNegative": "#FF4949",
|
|
275
|
+
"notificationColorBackgroundWarning": "#FFCC3D",
|
|
276
|
+
"notificationColorBackgroundAlarm": "#F68C54",
|
|
277
|
+
"notificationColorBackgroundInformation": "#0097E0",
|
|
278
|
+
"notificationBorderPositive": "2px #13CE66",
|
|
279
|
+
"notificationBorderNegative": "2px #FF4949",
|
|
280
|
+
"notificationBorderWarning": "2px #FFCC3D",
|
|
281
|
+
"notificationBorderAlarm": "2px #F68C54",
|
|
282
|
+
"notificationBorderInformation": "2px #0097E0",
|
|
283
|
+
"iconColorBackground": "#ffffff",
|
|
284
|
+
"containerColorBackground": "#414141",
|
|
285
|
+
"containerColorTextHeader": "#ffffff",
|
|
286
|
+
"containerColorTextBody": "#FAFAFA",
|
|
287
|
+
"containerShadow": "0 -2px 19px 0 #ffffff1A"
|
|
288
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 29 Jul 2024 23:34:48 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const colorBlue10 : string;
|
|
@@ -108,9 +108,10 @@ export const colorFeedbackPositive : string;
|
|
|
108
108
|
export const colorFeedbackWarning : string;
|
|
109
109
|
/** System status is negative */
|
|
110
110
|
export const colorFeedbackNegative : string;
|
|
111
|
+
export const colorFeedbackAlarm : string;
|
|
112
|
+
export const colorFeedbackInformation : string;
|
|
111
113
|
/** Primary brand blue */
|
|
112
114
|
export const colorBrandPrimary : string;
|
|
113
|
-
/** Primary secondary brand blue */
|
|
114
115
|
export const colorBrandSecondary : string;
|
|
115
116
|
export const colorTextBrandPrimary : string;
|
|
116
117
|
export const colorTextTheme : string;
|
|
@@ -299,8 +300,18 @@ export const formBorderActive : string;
|
|
|
299
300
|
export const formBorderNegative : string;
|
|
300
301
|
export const tabBorderUnderline : string;
|
|
301
302
|
export const tabBorderSelected : string;
|
|
303
|
+
export const notificationColorBackgroundPositive : string;
|
|
304
|
+
export const notificationColorBackgroundNegative : string;
|
|
305
|
+
export const notificationColorBackgroundWarning : string;
|
|
306
|
+
export const notificationColorBackgroundAlarm : string;
|
|
307
|
+
export const notificationColorBackgroundInformation : string;
|
|
308
|
+
export const notificationBorderPositive : string;
|
|
309
|
+
export const notificationBorderNegative : string;
|
|
310
|
+
export const notificationBorderWarning : string;
|
|
311
|
+
export const notificationBorderAlarm : string;
|
|
312
|
+
export const notificationBorderInformation : string;
|
|
313
|
+
export const iconColorBackground : string;
|
|
302
314
|
export const containerColorBackground : string;
|
|
303
315
|
export const containerColorTextHeader : string;
|
|
304
316
|
export const containerColorTextBody : string;
|
|
305
317
|
export const containerShadow : string;
|
|
306
|
-
export const iconColorBackground : string;
|