@daikin-oss/dds-tokens 0.0.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 +38 -0
- package/build/css/AAF/Dark/buttons.css +29 -0
- package/build/css/AAF/Dark/variables.css +276 -0
- package/build/css/AAF/Light/buttons.css +29 -0
- package/build/css/AAF/Light/variables.css +276 -0
- package/build/css/DKN/Dark/buttons.css +29 -0
- package/build/css/DKN/Dark/variables.css +276 -0
- package/build/css/DKN/Light/buttons.css +29 -0
- package/build/css/DKN/Light/variables.css +276 -0
- package/build/js/AAF/Dark/variables.d.ts +305 -0
- package/build/js/AAF/Dark/variables.js +274 -0
- package/build/js/AAF/Light/variables.d.ts +305 -0
- package/build/js/AAF/Light/variables.js +274 -0
- package/build/js/DKN/Dark/variables.d.ts +306 -0
- package/build/js/DKN/Dark/variables.js +274 -0
- package/build/js/DKN/Light/variables.d.ts +306 -0
- package/build/js/DKN/Light/variables.js +274 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# dds-tokens
|
|
2
|
+
|
|
3
|
+
This package outputs:
|
|
4
|
+
|
|
5
|
+
- Tokens as both `js` and `css` variables
|
|
6
|
+
- Brand-specific tokens (i.e. `Daikin` and `AAF`)
|
|
7
|
+
- `Light` and `Dark` mode
|
|
8
|
+
- General styles as `variables.(css|js)`
|
|
9
|
+
- Component-specific styles (i.e. `buttons.css`)
|
|
10
|
+
|
|
11
|
+
For a complete list of outputs, please check out the file outputs in the `build` folder.
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
npm install @daikin-oss/dds-tokens
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Import as js variables:
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
import {
|
|
23
|
+
buttonColorBackgroundPrimaryActive
|
|
24
|
+
} from '@daikin-oss/dds-tokens/js/daikin/Light/variables.js';
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Import the CSS:
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
import variables from '@daikin-oss/dds-tokens/css/daikin/Dark/variables.css'
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
The above includes all CSS classes - including core styles and components
|
|
34
|
+
There are also component-specific files if you don't need everything:
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
import buttonStyles from '@daikin-oss/dds-tokens/css/daikin/Dark/buttons.css'
|
|
38
|
+
```
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Fri, 31 May 2024 20:50:38 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
--buttonBorderSignInActive: 1px Inside #616161;
|
|
8
|
+
--buttonBorderSecondaryActive: 1px Solid #DB4F66;
|
|
9
|
+
--buttonBorderSecondaryHover: 1px Solid #C8102E;
|
|
10
|
+
--buttonBorderSecondaryPress: 1px Solid #F8AEBA;
|
|
11
|
+
--buttonBorderSecondaryFocus: 1px Solid #F5C0B8;
|
|
12
|
+
--buttonBorderSecondaryDisabled: 1px Solid #616161;
|
|
13
|
+
--buttonColorBackgroundPrimaryActive: #DB4F66; /* Color used for the default state of a secondary button */
|
|
14
|
+
--buttonColorBackgroundPrimaryHover: #C8102E;
|
|
15
|
+
--buttonColorBackgroundPrimaryPress: #F8AEBA;
|
|
16
|
+
--buttonColorBackgroundPrimaryFocus: #F5C0B8;
|
|
17
|
+
--buttonColorBackgroundPrimaryDisabled: #616161;
|
|
18
|
+
--buttonColorBorderSecondaryActive: #DB4F66;
|
|
19
|
+
--buttonColorBorderSecondaryHover: #C8102E;
|
|
20
|
+
--buttonColorBorderSecondaryPress: #F8AEBA;
|
|
21
|
+
--buttonColorBorderSecondaryFocus: #F5C0B8;
|
|
22
|
+
--buttonColorBorderSecondaryDisabled: #616161;
|
|
23
|
+
--buttonColorTextSecondaryActive: #DB4F66;
|
|
24
|
+
--buttonColorTextSecondaryHover: #C8102E;
|
|
25
|
+
--buttonColorTextSecondaryPress: #F8AEBA;
|
|
26
|
+
--buttonColorTextSecondaryFocus: #F5C0B8;
|
|
27
|
+
--buttonColorTextSecondaryDisabled: #616161;
|
|
28
|
+
--buttonColorTextPrimary: #414141;
|
|
29
|
+
}
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Fri, 31 May 2024 20:50:38 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root {
|
|
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; /* System status is positive */
|
|
107
|
+
--colorFeedbackWarning: #FFCC3D; /* System status has a warning */
|
|
108
|
+
--colorFeedbackNegative: #FF4949; /* System status is negative */
|
|
109
|
+
--colorBrandPrimary: #DB4F66; /* Primary brand blue */
|
|
110
|
+
--colorBrandSecondary: #C8102E;
|
|
111
|
+
--colorTextBrandPrimary: #DB4F66;
|
|
112
|
+
--colorTextTheme: #414141;
|
|
113
|
+
--colorTextDefault: #ffffff;
|
|
114
|
+
--colorTextDefaultSub: #FAFAFA;
|
|
115
|
+
--colorBackgroundTheme: #000000;
|
|
116
|
+
--colorBackgroundComponent: #414141;
|
|
117
|
+
--colorBackgroundObject: #ffffff;
|
|
118
|
+
--fontSize12: 12px;
|
|
119
|
+
--fontSize14: 14px;
|
|
120
|
+
--fontSize16: 16px;
|
|
121
|
+
--fontSize18: 18px;
|
|
122
|
+
--fontSize20: 20px;
|
|
123
|
+
--fontSize24: 24px;
|
|
124
|
+
--fontSize28: 28px;
|
|
125
|
+
--fontSize32: 32px;
|
|
126
|
+
--fontSize36: 36px;
|
|
127
|
+
--fontSize40: 40px;
|
|
128
|
+
--fontSize48: 48px;
|
|
129
|
+
--fontSizeXs: 12px;
|
|
130
|
+
--fontSizeS: 14px;
|
|
131
|
+
--fontSizeM: 16px;
|
|
132
|
+
--fontSizeL: 18px;
|
|
133
|
+
--fontSizeXl: 20px;
|
|
134
|
+
--fontSize2Xl: 24px;
|
|
135
|
+
--fontSize3Xl: 28px;
|
|
136
|
+
--fontSize4Xl: 32px;
|
|
137
|
+
--fontSize5Xl: 36px;
|
|
138
|
+
--fontSize6Xl: 40px;
|
|
139
|
+
--fontSize7Xl: 48px;
|
|
140
|
+
--lineHeight130: 1.3;
|
|
141
|
+
--lineHeight150: 1.5;
|
|
142
|
+
--lineHeightM: 1.3; /* Latin, Arabic, and Hebrew scripts */
|
|
143
|
+
--lineHeightL: 1.5; /* Latin, Arabic, and Hebrew scripts */
|
|
144
|
+
--fontWeightBold: 700;
|
|
145
|
+
--fontWeightRegular: 400;
|
|
146
|
+
--fontFamilyRoboto: Roboto; /* The primary font used in the DDS Design Kit is Roboto */
|
|
147
|
+
--fontFamilyBase: Roboto; /* The primary font used in the DDS Design Kit is Roboto */
|
|
148
|
+
--borderRadius2: 2px;
|
|
149
|
+
--borderRadius4: 4px;
|
|
150
|
+
--borderRadius6: 6px;
|
|
151
|
+
--borderRadius8: 8px;
|
|
152
|
+
--borderRadius10: 10px;
|
|
153
|
+
--borderRadius12: 12px;
|
|
154
|
+
--borderRadius16: 16px;
|
|
155
|
+
--borderRadius2Xs: 2px;
|
|
156
|
+
--borderRadiusXs: 4px;
|
|
157
|
+
--borderRadiusS: 6px;
|
|
158
|
+
--borderRadiusM: 8px;
|
|
159
|
+
--borderRadiusL: 10px;
|
|
160
|
+
--borderRadiusXl: 12px;
|
|
161
|
+
--borderRadius2Xl: 16px;
|
|
162
|
+
--borderWidth1: 1px;
|
|
163
|
+
--borderWidth2: 2px;
|
|
164
|
+
--borderWidth4: 4px;
|
|
165
|
+
--borderWidthS: 1px;
|
|
166
|
+
--borderWidthM: 2px;
|
|
167
|
+
--borderWidthL: 4px;
|
|
168
|
+
--space0: 0;
|
|
169
|
+
--space2: 2px;
|
|
170
|
+
--space4: 4px;
|
|
171
|
+
--space8: 8px;
|
|
172
|
+
--space12: 12px;
|
|
173
|
+
--space16: 16px;
|
|
174
|
+
--space20: 20px;
|
|
175
|
+
--space24: 24px;
|
|
176
|
+
--space32: 32px;
|
|
177
|
+
--space40: 40px;
|
|
178
|
+
--space48: 48px;
|
|
179
|
+
--space56: 56px;
|
|
180
|
+
--space64: 64px;
|
|
181
|
+
--space72: 72px;
|
|
182
|
+
--space80: 80px;
|
|
183
|
+
--space96: 96px;
|
|
184
|
+
--space4Xs: 0;
|
|
185
|
+
--space3Xs: 2px;
|
|
186
|
+
--space2Xs: 4px;
|
|
187
|
+
--spaceXs: 8px;
|
|
188
|
+
--spaceS: 12px;
|
|
189
|
+
--spaceM: 16px;
|
|
190
|
+
--spaceL: 20px;
|
|
191
|
+
--spaceXl: 24px;
|
|
192
|
+
--space2Xl: 32px;
|
|
193
|
+
--space3Xl: 40px;
|
|
194
|
+
--space4Xl: 48px;
|
|
195
|
+
--space5Xl: 56px;
|
|
196
|
+
--space6Xl: 64px;
|
|
197
|
+
--space7Xl: 72px;
|
|
198
|
+
--space8Xl: 80px;
|
|
199
|
+
--space9Xl: 96px;
|
|
200
|
+
--shadowBlack: 0 -2px 19px 0 #0000001A;
|
|
201
|
+
--shadowWhite: 0 -2px 19px 0 #ffffff1A;
|
|
202
|
+
--bodyXs: 400 12px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
203
|
+
--bodyS: 400 14px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
204
|
+
--bodyM: 400 16px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
205
|
+
--bodyL: 400 18px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
206
|
+
--bodyXl: 400 20px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
207
|
+
--body2Xl: 400 24px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
208
|
+
--body3Xl: 400 28px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
209
|
+
--body4Xl: 400 32px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
210
|
+
--body5Xl: 400 36px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
211
|
+
--body6Xl: 400 40px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
212
|
+
--body7Xl: 400 48px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
213
|
+
--headerXs: 700 12px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
214
|
+
--headerS: 700 14px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
215
|
+
--headerM: 700 16px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
216
|
+
--headerL: 700 18px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
217
|
+
--headerXl: 700 20px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
218
|
+
--header2Xl: 700 24px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
219
|
+
--header3Xl: 700 28px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
220
|
+
--header4Xl: 700 32px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
221
|
+
--header5Xl: 700 36px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
222
|
+
--header6Xl: 700 40px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
223
|
+
--header7Xl: 700 48px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
224
|
+
--buttonBorderSignInActive: 1px Inside #616161;
|
|
225
|
+
--buttonBorderSecondaryActive: 1px Solid #DB4F66;
|
|
226
|
+
--buttonBorderSecondaryHover: 1px Solid #C8102E;
|
|
227
|
+
--buttonBorderSecondaryPress: 1px Solid #F8AEBA;
|
|
228
|
+
--buttonBorderSecondaryFocus: 1px Solid #F5C0B8;
|
|
229
|
+
--buttonBorderSecondaryDisabled: 1px Solid #616161;
|
|
230
|
+
--buttonColorBackgroundPrimaryActive: #DB4F66; /* Color used for the default state of a secondary button */
|
|
231
|
+
--buttonColorBackgroundPrimaryHover: #C8102E;
|
|
232
|
+
--buttonColorBackgroundPrimaryPress: #F8AEBA;
|
|
233
|
+
--buttonColorBackgroundPrimaryFocus: #F5C0B8;
|
|
234
|
+
--buttonColorBackgroundPrimaryDisabled: #616161;
|
|
235
|
+
--buttonColorBorderSecondaryActive: #DB4F66;
|
|
236
|
+
--buttonColorBorderSecondaryHover: #C8102E;
|
|
237
|
+
--buttonColorBorderSecondaryPress: #F8AEBA;
|
|
238
|
+
--buttonColorBorderSecondaryFocus: #F5C0B8;
|
|
239
|
+
--buttonColorBorderSecondaryDisabled: #616161;
|
|
240
|
+
--buttonColorTextSecondaryActive: #DB4F66;
|
|
241
|
+
--buttonColorTextSecondaryHover: #C8102E;
|
|
242
|
+
--buttonColorTextSecondaryPress: #F8AEBA;
|
|
243
|
+
--buttonColorTextSecondaryFocus: #F5C0B8;
|
|
244
|
+
--buttonColorTextSecondaryDisabled: #616161;
|
|
245
|
+
--buttonColorTextPrimary: #414141;
|
|
246
|
+
--checkboxBorderUnselected: 2px solid #BFBFBF;
|
|
247
|
+
--checkboxColorBackground: #0097E0;
|
|
248
|
+
--checkboxColorIcon: #ffffff;
|
|
249
|
+
--dropdownColorBackground: #ffffff;
|
|
250
|
+
--dropdownColorText: #414141;
|
|
251
|
+
--dropdownTrayColorBackgroundSelected: #EBEBEB;
|
|
252
|
+
--tableColorBackground: #ffffff;
|
|
253
|
+
--tableColorText: #414141;
|
|
254
|
+
--tableHeaderBorder: 1px #000000;
|
|
255
|
+
--tableCellBorder: 1px #EBEBEB;
|
|
256
|
+
--tablePageNumberColorBackgroundSelected: #828282;
|
|
257
|
+
--tablePageNumberColorTextDefault: #414141;
|
|
258
|
+
--tablePageNumberColorTextSelected: #ffffff;
|
|
259
|
+
--tablePageNumberBorderHover: 1px #828282;
|
|
260
|
+
--loginSsoButtonBorder: 1px #616161;
|
|
261
|
+
--loginSsoButtonColorText: #616161;
|
|
262
|
+
--formColorBackground: #ffffff;
|
|
263
|
+
--formColorTextDefault: #212121;
|
|
264
|
+
--formColorTextPlaceholder: #828282;
|
|
265
|
+
--formColorTextPositive: #13CE66;
|
|
266
|
+
--formColorTextNegative: #FF4949;
|
|
267
|
+
--formBorderActive: 1px Solid #828282;
|
|
268
|
+
--formBorderNegative: 1px solid #FF4949;
|
|
269
|
+
--tabBorderUnderline: 1px #CFDFDF;
|
|
270
|
+
--tabBorderSelected: 1px #0097E0;
|
|
271
|
+
--containerColorBackground: #414141;
|
|
272
|
+
--containerColorTextHeader: #ffffff;
|
|
273
|
+
--containerColorTextBody: #FAFAFA;
|
|
274
|
+
--containerShadow: 0 -2px 19px 0 #ffffff1A;
|
|
275
|
+
--iconColorBackground: #ffffff;
|
|
276
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Fri, 31 May 2024 20:50:38 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
--buttonBorderSignInActive: 1px Inside #616161;
|
|
8
|
+
--buttonBorderSecondaryActive: 1px Solid #C8102E;
|
|
9
|
+
--buttonBorderSecondaryHover: 1px Solid #DB4F66;
|
|
10
|
+
--buttonBorderSecondaryPress: 1px Solid #D2324C;
|
|
11
|
+
--buttonBorderSecondaryFocus: 1px Solid #F8AEBA;
|
|
12
|
+
--buttonBorderSecondaryDisabled: 1px Solid #DCDCDC;
|
|
13
|
+
--buttonColorBackgroundPrimaryActive: #C8102E; /* Color used for the default state of a secondary button */
|
|
14
|
+
--buttonColorBackgroundPrimaryHover: #DB4F66;
|
|
15
|
+
--buttonColorBackgroundPrimaryPress: #D2324C;
|
|
16
|
+
--buttonColorBackgroundPrimaryFocus: #F8AEBA;
|
|
17
|
+
--buttonColorBackgroundPrimaryDisabled: #DCDCDC;
|
|
18
|
+
--buttonColorBorderSecondaryActive: #C8102E;
|
|
19
|
+
--buttonColorBorderSecondaryHover: #DB4F66;
|
|
20
|
+
--buttonColorBorderSecondaryPress: #D2324C;
|
|
21
|
+
--buttonColorBorderSecondaryFocus: #F8AEBA;
|
|
22
|
+
--buttonColorBorderSecondaryDisabled: #DCDCDC;
|
|
23
|
+
--buttonColorTextSecondaryActive: #C8102E;
|
|
24
|
+
--buttonColorTextSecondaryHover: #DB4F66;
|
|
25
|
+
--buttonColorTextSecondaryPress: #D2324C;
|
|
26
|
+
--buttonColorTextSecondaryFocus: #F8AEBA;
|
|
27
|
+
--buttonColorTextSecondaryDisabled: #DCDCDC;
|
|
28
|
+
--buttonColorTextPrimary: #ffffff;
|
|
29
|
+
}
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Fri, 31 May 2024 20:50:38 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root {
|
|
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; /* System status is positive */
|
|
107
|
+
--colorFeedbackWarning: #FFCC3D; /* System status has a warning */
|
|
108
|
+
--colorFeedbackNegative: #FF4949; /* System status is negative */
|
|
109
|
+
--colorBrandPrimary: #C8102E; /* Primary brand blue */
|
|
110
|
+
--colorBrandSecondary: #DB4F66;
|
|
111
|
+
--colorTextBrandPrimary: #C8102E;
|
|
112
|
+
--colorTextTheme: #ffffff;
|
|
113
|
+
--colorTextDefault: #414141;
|
|
114
|
+
--colorTextDefaultSub: #828282;
|
|
115
|
+
--colorBackgroundTheme: #ffffff;
|
|
116
|
+
--colorBackgroundComponent: #ffffff;
|
|
117
|
+
--colorBackgroundObject: #414141;
|
|
118
|
+
--fontSize12: 12px;
|
|
119
|
+
--fontSize14: 14px;
|
|
120
|
+
--fontSize16: 16px;
|
|
121
|
+
--fontSize18: 18px;
|
|
122
|
+
--fontSize20: 20px;
|
|
123
|
+
--fontSize24: 24px;
|
|
124
|
+
--fontSize28: 28px;
|
|
125
|
+
--fontSize32: 32px;
|
|
126
|
+
--fontSize36: 36px;
|
|
127
|
+
--fontSize40: 40px;
|
|
128
|
+
--fontSize48: 48px;
|
|
129
|
+
--fontSizeXs: 12px;
|
|
130
|
+
--fontSizeS: 14px;
|
|
131
|
+
--fontSizeM: 16px;
|
|
132
|
+
--fontSizeL: 18px;
|
|
133
|
+
--fontSizeXl: 20px;
|
|
134
|
+
--fontSize2Xl: 24px;
|
|
135
|
+
--fontSize3Xl: 28px;
|
|
136
|
+
--fontSize4Xl: 32px;
|
|
137
|
+
--fontSize5Xl: 36px;
|
|
138
|
+
--fontSize6Xl: 40px;
|
|
139
|
+
--fontSize7Xl: 48px;
|
|
140
|
+
--lineHeight130: 1.3;
|
|
141
|
+
--lineHeight150: 1.5;
|
|
142
|
+
--lineHeightM: 1.3; /* Latin, Arabic, and Hebrew scripts */
|
|
143
|
+
--lineHeightL: 1.5; /* Latin, Arabic, and Hebrew scripts */
|
|
144
|
+
--fontWeightBold: 700;
|
|
145
|
+
--fontWeightRegular: 400;
|
|
146
|
+
--fontFamilyRoboto: Roboto; /* The primary font used in the DDS Design Kit is Roboto */
|
|
147
|
+
--fontFamilyBase: Roboto; /* The primary font used in the DDS Design Kit is Roboto */
|
|
148
|
+
--borderRadius2: 2px;
|
|
149
|
+
--borderRadius4: 4px;
|
|
150
|
+
--borderRadius6: 6px;
|
|
151
|
+
--borderRadius8: 8px;
|
|
152
|
+
--borderRadius10: 10px;
|
|
153
|
+
--borderRadius12: 12px;
|
|
154
|
+
--borderRadius16: 16px;
|
|
155
|
+
--borderRadius2Xs: 2px;
|
|
156
|
+
--borderRadiusXs: 4px;
|
|
157
|
+
--borderRadiusS: 6px;
|
|
158
|
+
--borderRadiusM: 8px;
|
|
159
|
+
--borderRadiusL: 10px;
|
|
160
|
+
--borderRadiusXl: 12px;
|
|
161
|
+
--borderRadius2Xl: 16px;
|
|
162
|
+
--borderWidth1: 1px;
|
|
163
|
+
--borderWidth2: 2px;
|
|
164
|
+
--borderWidth4: 4px;
|
|
165
|
+
--borderWidthS: 1px;
|
|
166
|
+
--borderWidthM: 2px;
|
|
167
|
+
--borderWidthL: 4px;
|
|
168
|
+
--space0: 0;
|
|
169
|
+
--space2: 2px;
|
|
170
|
+
--space4: 4px;
|
|
171
|
+
--space8: 8px;
|
|
172
|
+
--space12: 12px;
|
|
173
|
+
--space16: 16px;
|
|
174
|
+
--space20: 20px;
|
|
175
|
+
--space24: 24px;
|
|
176
|
+
--space32: 32px;
|
|
177
|
+
--space40: 40px;
|
|
178
|
+
--space48: 48px;
|
|
179
|
+
--space56: 56px;
|
|
180
|
+
--space64: 64px;
|
|
181
|
+
--space72: 72px;
|
|
182
|
+
--space80: 80px;
|
|
183
|
+
--space96: 96px;
|
|
184
|
+
--space4Xs: 0;
|
|
185
|
+
--space3Xs: 2px;
|
|
186
|
+
--space2Xs: 4px;
|
|
187
|
+
--spaceXs: 8px;
|
|
188
|
+
--spaceS: 12px;
|
|
189
|
+
--spaceM: 16px;
|
|
190
|
+
--spaceL: 20px;
|
|
191
|
+
--spaceXl: 24px;
|
|
192
|
+
--space2Xl: 32px;
|
|
193
|
+
--space3Xl: 40px;
|
|
194
|
+
--space4Xl: 48px;
|
|
195
|
+
--space5Xl: 56px;
|
|
196
|
+
--space6Xl: 64px;
|
|
197
|
+
--space7Xl: 72px;
|
|
198
|
+
--space8Xl: 80px;
|
|
199
|
+
--space9Xl: 96px;
|
|
200
|
+
--shadowBlack: 0 -2px 19px 0 #0000001A;
|
|
201
|
+
--shadowWhite: 0 -2px 19px 0 #ffffff1A;
|
|
202
|
+
--bodyXs: 400 12px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
203
|
+
--bodyS: 400 14px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
204
|
+
--bodyM: 400 16px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
205
|
+
--bodyL: 400 18px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
206
|
+
--bodyXl: 400 20px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
207
|
+
--body2Xl: 400 24px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
208
|
+
--body3Xl: 400 28px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
209
|
+
--body4Xl: 400 32px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
210
|
+
--body5Xl: 400 36px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
211
|
+
--body6Xl: 400 40px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
212
|
+
--body7Xl: 400 48px/1.5 Roboto; /* Body is primarily used for components and for blocks of text. */
|
|
213
|
+
--headerXs: 700 12px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
214
|
+
--headerS: 700 14px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
215
|
+
--headerM: 700 16px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
216
|
+
--headerL: 700 18px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
217
|
+
--headerXl: 700 20px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
218
|
+
--header2Xl: 700 24px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
219
|
+
--header3Xl: 700 28px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
220
|
+
--header4Xl: 700 32px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
221
|
+
--header5Xl: 700 36px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
222
|
+
--header6Xl: 700 40px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
223
|
+
--header7Xl: 700 48px/1.3 Roboto; /* Header is used to create various levels of typographic hierarchies. */
|
|
224
|
+
--buttonBorderSignInActive: 1px Inside #616161;
|
|
225
|
+
--buttonBorderSecondaryActive: 1px Solid #C8102E;
|
|
226
|
+
--buttonBorderSecondaryHover: 1px Solid #DB4F66;
|
|
227
|
+
--buttonBorderSecondaryPress: 1px Solid #D2324C;
|
|
228
|
+
--buttonBorderSecondaryFocus: 1px Solid #F8AEBA;
|
|
229
|
+
--buttonBorderSecondaryDisabled: 1px Solid #DCDCDC;
|
|
230
|
+
--buttonColorBackgroundPrimaryActive: #C8102E; /* Color used for the default state of a secondary button */
|
|
231
|
+
--buttonColorBackgroundPrimaryHover: #DB4F66;
|
|
232
|
+
--buttonColorBackgroundPrimaryPress: #D2324C;
|
|
233
|
+
--buttonColorBackgroundPrimaryFocus: #F8AEBA;
|
|
234
|
+
--buttonColorBackgroundPrimaryDisabled: #DCDCDC;
|
|
235
|
+
--buttonColorBorderSecondaryActive: #C8102E;
|
|
236
|
+
--buttonColorBorderSecondaryHover: #DB4F66;
|
|
237
|
+
--buttonColorBorderSecondaryPress: #D2324C;
|
|
238
|
+
--buttonColorBorderSecondaryFocus: #F8AEBA;
|
|
239
|
+
--buttonColorBorderSecondaryDisabled: #DCDCDC;
|
|
240
|
+
--buttonColorTextSecondaryActive: #C8102E;
|
|
241
|
+
--buttonColorTextSecondaryHover: #DB4F66;
|
|
242
|
+
--buttonColorTextSecondaryPress: #D2324C;
|
|
243
|
+
--buttonColorTextSecondaryFocus: #F8AEBA;
|
|
244
|
+
--buttonColorTextSecondaryDisabled: #DCDCDC;
|
|
245
|
+
--buttonColorTextPrimary: #ffffff;
|
|
246
|
+
--checkboxBorderUnselected: 2px solid #BFBFBF;
|
|
247
|
+
--checkboxColorBackground: #0097E0;
|
|
248
|
+
--checkboxColorIcon: #ffffff;
|
|
249
|
+
--dropdownColorBackground: #ffffff;
|
|
250
|
+
--dropdownColorText: #414141;
|
|
251
|
+
--dropdownTrayColorBackgroundSelected: #EBEBEB;
|
|
252
|
+
--tableColorBackground: #ffffff;
|
|
253
|
+
--tableColorText: #414141;
|
|
254
|
+
--tableHeaderBorder: 1px #000000;
|
|
255
|
+
--tableCellBorder: 1px #EBEBEB;
|
|
256
|
+
--tablePageNumberColorBackgroundSelected: #828282;
|
|
257
|
+
--tablePageNumberColorTextDefault: #414141;
|
|
258
|
+
--tablePageNumberColorTextSelected: #ffffff;
|
|
259
|
+
--tablePageNumberBorderHover: 1px #828282;
|
|
260
|
+
--loginSsoButtonBorder: 1px #616161;
|
|
261
|
+
--loginSsoButtonColorText: #616161;
|
|
262
|
+
--formColorBackground: #ffffff;
|
|
263
|
+
--formColorTextDefault: #212121;
|
|
264
|
+
--formColorTextPlaceholder: #828282;
|
|
265
|
+
--formColorTextPositive: #13CE66;
|
|
266
|
+
--formColorTextNegative: #FF4949;
|
|
267
|
+
--formBorderActive: 1px Solid #828282;
|
|
268
|
+
--formBorderNegative: 1px solid #FF4949;
|
|
269
|
+
--tabBorderUnderline: 1px #CFDFDF;
|
|
270
|
+
--tabBorderSelected: 1px #0097E0;
|
|
271
|
+
--containerColorBackground: #ffffff;
|
|
272
|
+
--containerColorTextHeader: #414141;
|
|
273
|
+
--containerColorTextBody: #828282;
|
|
274
|
+
--containerShadow: 0 -2px 19px 0 #0000001A;
|
|
275
|
+
--iconColorBackground: #414141;
|
|
276
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Fri, 31 May 2024 20:50:38 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
--buttonBorderSignInActive: 1px Inside #616161;
|
|
8
|
+
--buttonBorderSecondaryActive: 1px Solid #54c3f1;
|
|
9
|
+
--buttonBorderSecondaryHover: 1px Solid #0097E0;
|
|
10
|
+
--buttonBorderSecondaryPress: 1px Solid #7CD5F7;
|
|
11
|
+
--buttonBorderSecondaryFocus: 1px Solid #A6E4FB;
|
|
12
|
+
--buttonBorderSecondaryDisabled: 1px Solid #616161;
|
|
13
|
+
--buttonColorBackgroundPrimaryActive: #54c3f1; /* Color used for the default state of a secondary button */
|
|
14
|
+
--buttonColorBackgroundPrimaryHover: #0097E0;
|
|
15
|
+
--buttonColorBackgroundPrimaryPress: #7CD5F7;
|
|
16
|
+
--buttonColorBackgroundPrimaryFocus: #A6E4FB;
|
|
17
|
+
--buttonColorBackgroundPrimaryDisabled: #616161;
|
|
18
|
+
--buttonColorBorderSecondaryActive: #54c3f1;
|
|
19
|
+
--buttonColorBorderSecondaryHover: #0097E0;
|
|
20
|
+
--buttonColorBorderSecondaryPress: #7CD5F7;
|
|
21
|
+
--buttonColorBorderSecondaryFocus: #A6E4FB;
|
|
22
|
+
--buttonColorBorderSecondaryDisabled: #616161;
|
|
23
|
+
--buttonColorTextSecondaryActive: #54c3f1;
|
|
24
|
+
--buttonColorTextSecondaryHover: #0097E0;
|
|
25
|
+
--buttonColorTextSecondaryPress: #7CD5F7;
|
|
26
|
+
--buttonColorTextSecondaryFocus: #A6E4FB;
|
|
27
|
+
--buttonColorTextSecondaryDisabled: #616161;
|
|
28
|
+
--buttonColorTextPrimary: #212121;
|
|
29
|
+
}
|