@ornikar/kitt-universal 3.7.0 → 3.8.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.
@@ -0,0 +1,2 @@
1
+ export { theme as defaultThemeLinaria } from './themes/default';
2
+ //# sourceMappingURL=linaria-themes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"linaria-themes.d.ts","sourceRoot":"","sources":["../../src/linaria-themes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,IAAI,mBAAmB,EAAE,MAAM,kBAAkB,CAAC"}
@@ -0,0 +1,461 @@
1
+ import { Platform } from 'react-native';
2
+
3
+ var lateOceanColorPalette = {
4
+ lateOcean: '#4C34E0',
5
+ lateOceanLight1: '#705DE6',
6
+ lateOceanLight2: '#9485EC',
7
+ lateOceanLight3: '#D6BAF9',
8
+ warmEmbrace: '#F4D3CE',
9
+ warmEmbraceLight1: '#FFEDE6',
10
+ black1000: '#000000',
11
+ black555: '#737373',
12
+ black200: '#CCCCCC',
13
+ black100: '#E5E5E5',
14
+ black50: '#F2F2F2',
15
+ black25: '#F9F9F9',
16
+ white: '#FFFFFF',
17
+ viride: '#38836D',
18
+ englishVermillon: '#D44148',
19
+ goldCrayola: '#F8C583',
20
+ aero: '#89BDDD',
21
+ transparent: 'transparent',
22
+ moonPurple: '#DBD6F9',
23
+ moonPurpleLight1: '#EDEBFC'
24
+ };
25
+
26
+ var colorsLateOceanTheme = {
27
+ primary: lateOceanColorPalette.lateOcean,
28
+ primaryLight: lateOceanColorPalette.lateOceanLight1,
29
+ accent: lateOceanColorPalette.warmEmbrace,
30
+ accentLight: lateOceanColorPalette.warmEmbraceLight1,
31
+ success: lateOceanColorPalette.viride,
32
+ correct: lateOceanColorPalette.viride,
33
+ danger: lateOceanColorPalette.englishVermillon,
34
+ separator: lateOceanColorPalette.black100,
35
+ hover: lateOceanColorPalette.black100,
36
+ black: lateOceanColorPalette.black1000,
37
+ uiBackground: lateOceanColorPalette.black25,
38
+ uiBackgroundLight: lateOceanColorPalette.white,
39
+ transparent: lateOceanColorPalette.transparent,
40
+ disabled: lateOceanColorPalette.black50,
41
+ overlay: {
42
+ dark: 'rgba(41, 48, 51, 0.25)',
43
+ light: 'rgba(255, 255, 255, 0.90)',
44
+ fullscreenLoader: 'rgba(0, 0, 0, 0.25)'
45
+ }
46
+ };
47
+
48
+ var avatar = {
49
+ borderRadius: '10px',
50
+ "default": {
51
+ backgroundColor: colorsLateOceanTheme.primary
52
+ },
53
+ light: {
54
+ backgroundColor: lateOceanColorPalette.black100
55
+ }
56
+ };
57
+
58
+ var buttonLateOceanTheme = {
59
+ borderRadius: '30px',
60
+ borderWidth: {
61
+ disabled: '2px',
62
+ focus: '3px'
63
+ },
64
+ minHeight: '40px',
65
+ minWidth: '40px',
66
+ maxWidth: '335px',
67
+ scale: {
68
+ base: {
69
+ "default": 1,
70
+ hover: 0.95,
71
+ active: 0.95
72
+ },
73
+ medium: {
74
+ hover: 1.05
75
+ }
76
+ },
77
+ contentPadding: {
78
+ "default": '8px 16px 7px',
79
+ large: '12px 24px 11px',
80
+ disabled: '6px 14px 5px'
81
+ },
82
+ transition: {
83
+ duration: '200ms',
84
+ timingFunction: 'cubic-bezier(0.645, 0.045, 0.355, 1)'
85
+ },
86
+ "default": {
87
+ backgroundColor: 'rgba(0, 0, 0, 0.05)',
88
+ pressedBackgroundColor: 'rgba(0, 0, 0, 0.1)',
89
+ hoverBackgroundColor: 'rgba(0, 0, 0, 0.1)',
90
+ focusBorderColor: 'rgba(0, 0, 0, 0.1)'
91
+ },
92
+ primary: {
93
+ backgroundColor: colorsLateOceanTheme.primary,
94
+ pressedBackgroundColor: colorsLateOceanTheme.primaryLight,
95
+ hoverBackgroundColor: colorsLateOceanTheme.primaryLight,
96
+ focusBorderColor: 'rgba(76, 52, 224, 0.2)'
97
+ },
98
+ white: {
99
+ backgroundColor: 'rgba(255, 255, 255, 0.05)',
100
+ pressedBackgroundColor: 'rgba(255, 255, 255, 0.1)',
101
+ hoverBackgroundColor: 'rgba(255, 255, 255, 0.1)',
102
+ focusBorderColor: 'rgba(255, 255, 255, 0.1)'
103
+ },
104
+ subtle: {
105
+ backgroundColor: colorsLateOceanTheme.transparent,
106
+ pressedBackgroundColor: colorsLateOceanTheme.transparent,
107
+ hoverBackgroundColor: colorsLateOceanTheme.transparent,
108
+ focusBorderColor: 'rgba(76, 52, 224, 0.2)',
109
+ color: colorsLateOceanTheme.primary,
110
+ hoverColor: 'rgba(76, 52, 224, 0.8)',
111
+ activeColor: 'rgba(76, 52, 224, 0.8)'
112
+ },
113
+ 'subtle-dark': {
114
+ backgroundColor: colorsLateOceanTheme.transparent,
115
+ pressedBackgroundColor: colorsLateOceanTheme.transparent,
116
+ hoverBackgroundColor: colorsLateOceanTheme.transparent,
117
+ focusBorderColor: 'rgba(0, 0, 0, 0.1)',
118
+ color: colorsLateOceanTheme.black,
119
+ hoverColor: 'rgba(0, 0, 0, 0.8)',
120
+ activeColor: 'rgba(0, 0, 0, 0.8)'
121
+ },
122
+ disabled: {
123
+ backgroundColor: colorsLateOceanTheme.disabled,
124
+ pressedBackgroundColor: colorsLateOceanTheme.disabled,
125
+ hoverBackgroundColor: colorsLateOceanTheme.disabled,
126
+ focusBorderColor: lateOceanColorPalette.black100,
127
+ borderColor: lateOceanColorPalette.black100
128
+ }
129
+ };
130
+
131
+ var cardLateOceanTheme = {
132
+ borderRadius: '20px',
133
+ borderWidth: '2px',
134
+ padding: '16px',
135
+ primary: {
136
+ backgroundColor: lateOceanColorPalette.white,
137
+ borderColor: lateOceanColorPalette.lateOcean
138
+ },
139
+ secondary: {
140
+ backgroundColor: lateOceanColorPalette.white,
141
+ borderColor: lateOceanColorPalette.black100
142
+ },
143
+ subtle: {
144
+ backgroundColor: lateOceanColorPalette.black50,
145
+ borderColor: lateOceanColorPalette.black100
146
+ }
147
+ };
148
+
149
+ var feedbackMessageLateOceanTheme = {
150
+ backgroundColors: {
151
+ success: lateOceanColorPalette.viride,
152
+ danger: lateOceanColorPalette.englishVermillon,
153
+ warning: lateOceanColorPalette.goldCrayola,
154
+ info: lateOceanColorPalette.aero
155
+ }
156
+ };
157
+
158
+ var inputFieldLateOceanTheme = {
159
+ labelContainerPaddingBottom: 5,
160
+ iconMarginLeft: 6
161
+ };
162
+
163
+ var inputStatesStyle = {
164
+ "default": {
165
+ backgroundColor: lateOceanColorPalette.white,
166
+ borderColor: lateOceanColorPalette.black100,
167
+ color: 'black',
168
+ passwordButtonIconColor: 'black'
169
+ },
170
+ hover: {
171
+ borderColor: lateOceanColorPalette.black200,
172
+ color: 'black',
173
+ passwordButtonIconColor: 'black'
174
+ },
175
+ focus: {
176
+ borderColor: lateOceanColorPalette.lateOcean,
177
+ color: 'black',
178
+ passwordButtonIconColor: 'black'
179
+ },
180
+ disabled: {
181
+ backgroundColor: lateOceanColorPalette.black50,
182
+ borderColor: lateOceanColorPalette.black100,
183
+ color: 'black-light',
184
+ passwordButtonIconColor: 'black-light'
185
+ },
186
+ invalid: {
187
+ borderColor: lateOceanColorPalette.englishVermillon,
188
+ color: 'black',
189
+ passwordButtonIconColor: 'black'
190
+ }
191
+ };
192
+ var inputLateOceanTheme = {
193
+ marginTop: '2px',
194
+ marginBottom: '4px',
195
+ borderWidth: '2px',
196
+ borderRadius: '10px',
197
+ passwordButtonIconSize: 20,
198
+ padding: '7px 16px',
199
+ paddingSingleLineIOS: '12px 16px',
200
+ selectionColor: lateOceanColorPalette.lateOcean,
201
+ placeholderColor: 'black-light',
202
+ textAreaMinHeight: 120,
203
+ states: inputStatesStyle
204
+ };
205
+
206
+ var radioLateOceanTheme = {
207
+ size: 18,
208
+ unchecked: {
209
+ backgroundColor: lateOceanColorPalette.white,
210
+ borderWidth: '2px',
211
+ borderColor: lateOceanColorPalette.black200
212
+ },
213
+ checked: {
214
+ backgroundColor: lateOceanColorPalette.lateOcean,
215
+ innerSize: 5,
216
+ innerBackgroundColor: lateOceanColorPalette.white
217
+ },
218
+ disabled: {
219
+ backgroundColor: lateOceanColorPalette.black50,
220
+ borderColor: lateOceanColorPalette.black100
221
+ }
222
+ };
223
+
224
+ var formsLateOceanTheme = {
225
+ input: inputLateOceanTheme,
226
+ radio: radioLateOceanTheme,
227
+ inputField: inputFieldLateOceanTheme
228
+ };
229
+
230
+ var fullScreenModalLateOceanTheme = {
231
+ header: {
232
+ paddingVertical: 12,
233
+ paddingHorizontal: 16,
234
+ borderColor: lateOceanColorPalette.black100
235
+ }
236
+ };
237
+
238
+ var iconButton = {
239
+ backgroundColor: 'transparent',
240
+ width: 40,
241
+ height: 40,
242
+ borderRadius: 20,
243
+ borderWidth: 2,
244
+ borderColor: 'transparent',
245
+ transition: {
246
+ property: 'all',
247
+ duration: '200ms',
248
+ timingFunction: 'cubic-bezier(0.645, 0.045, 0.355, 1);'
249
+ },
250
+ scale: {
251
+ base: {
252
+ "default": 1,
253
+ hover: 0.95,
254
+ active: 0.95
255
+ },
256
+ medium: {
257
+ hover: 1.05
258
+ }
259
+ },
260
+ disabled: {
261
+ scale: 1,
262
+ backgroundColor: buttonLateOceanTheme.disabled.backgroundColor,
263
+ borderColor: buttonLateOceanTheme.disabled.borderColor
264
+ },
265
+ "default": {
266
+ pressedBackgroundColor: buttonLateOceanTheme["default"].pressedBackgroundColor
267
+ },
268
+ white: {
269
+ pressedBackgroundColor: buttonLateOceanTheme.white.hoverBackgroundColor
270
+ }
271
+ };
272
+
273
+ var listItemLateOceanTheme = {
274
+ padding: '12px 16px',
275
+ borderColor: colorsLateOceanTheme.separator,
276
+ borderWidth: '1px',
277
+ innerMargin: '8px'
278
+ };
279
+
280
+ var shadowsLateOceanTheme = {
281
+ medium: '0px 10px 20px rgba(41, 48, 51, 0.25)'
282
+ };
283
+
284
+ var skeletonTheme = {
285
+ backgroundColor: lateOceanColorPalette.black100,
286
+ flareColor: lateOceanColorPalette.black200,
287
+ animationDuration: 1000
288
+ };
289
+
290
+ var tagLateOceanTheme = {
291
+ borderRadius: '10px',
292
+ padding: '2px 12px',
293
+ primary: {
294
+ fill: {
295
+ backgroundColor: lateOceanColorPalette.moonPurpleLight1,
296
+ borderWidth: '0',
297
+ borderColor: lateOceanColorPalette.transparent
298
+ },
299
+ outline: {
300
+ backgroundColor: lateOceanColorPalette.transparent,
301
+ borderWidth: '1px',
302
+ borderColor: lateOceanColorPalette.lateOcean
303
+ }
304
+ },
305
+ "default": {
306
+ fill: {
307
+ backgroundColor: lateOceanColorPalette.black50,
308
+ borderWidth: '0',
309
+ borderColor: lateOceanColorPalette.transparent
310
+ },
311
+ outline: {
312
+ backgroundColor: lateOceanColorPalette.transparent,
313
+ borderWidth: '1px',
314
+ borderColor: lateOceanColorPalette.black1000
315
+ }
316
+ },
317
+ danger: {
318
+ fill: {
319
+ backgroundColor: lateOceanColorPalette.warmEmbrace,
320
+ borderWidth: '0',
321
+ borderColor: lateOceanColorPalette.transparent
322
+ },
323
+ outline: {
324
+ backgroundColor: lateOceanColorPalette.transparent,
325
+ borderWidth: '1px',
326
+ borderColor: colorsLateOceanTheme.danger
327
+ }
328
+ }
329
+ };
330
+
331
+ var tooltip = {
332
+ backgroundColor: colorsLateOceanTheme.black,
333
+ borderRadius: 10,
334
+ opacity: 0.95,
335
+ horizontalPadding: 16,
336
+ verticalPadding: 4,
337
+ floatingPadding: 8
338
+ };
339
+
340
+ var calcLineHeight = function (fontSize, lineHeightMultiplier) {
341
+ return Math.round(fontSize * lineHeightMultiplier);
342
+ };
343
+ var createTypographyTypeConfig = function (lineHeightMultiplier, baseAndSmallFontSize, mediumAndWideFontSize) {
344
+ return {
345
+ baseAndSmall: {
346
+ fontSize: "".concat(baseAndSmallFontSize, "px"),
347
+ lineHeight: "".concat(calcLineHeight(baseAndSmallFontSize, lineHeightMultiplier), "px")
348
+ },
349
+ mediumAndWide: {
350
+ fontSize: "".concat(mediumAndWideFontSize, "px"),
351
+ lineHeight: "".concat(calcLineHeight(mediumAndWideFontSize, lineHeightMultiplier), "px")
352
+ }
353
+ };
354
+ };
355
+ var typographyLateOceanTheme = {
356
+ colors: {
357
+ black: lateOceanColorPalette.black1000,
358
+ 'black-light': lateOceanColorPalette.black555,
359
+ white: lateOceanColorPalette.white,
360
+ 'white-light': lateOceanColorPalette.white,
361
+ primary: lateOceanColorPalette.lateOcean,
362
+ 'primary-light': lateOceanColorPalette.lateOceanLight1,
363
+ accent: lateOceanColorPalette.warmEmbrace,
364
+ success: lateOceanColorPalette.viride,
365
+ danger: lateOceanColorPalette.englishVermillon
366
+ },
367
+ types: {
368
+ headers: {
369
+ fontFamily: {
370
+ regular: Platform.OS === 'web' ? 'Moderat' : 'Moderat-Extended-Bold',
371
+ bold: Platform.OS === 'web' ? 'Moderat' : 'Moderat-Extended-Bold'
372
+ },
373
+ fontWeight: 400,
374
+ fontStyle: 'normal',
375
+ configs: {
376
+ // also known as xxlarge
377
+ header1: createTypographyTypeConfig(1.3, 38, 62),
378
+ // also known as xlarge
379
+ header2: createTypographyTypeConfig(1.3, 32, 48),
380
+ // also known as medium
381
+ header3: createTypographyTypeConfig(1.3, 24, 36),
382
+ // also known as xsmall
383
+ header4: createTypographyTypeConfig(1.3, 18, 24),
384
+ // also known as xxsmall
385
+ header5: createTypographyTypeConfig(1.3, 18, 18)
386
+ }
387
+ },
388
+ bodies: {
389
+ fontFamily: {
390
+ regular: Platform.OS === 'web' ? 'Noto Sans' : 'NotoSans',
391
+ bold: Platform.OS === 'web' ? 'Noto Sans' : 'NotoSans-Bold'
392
+ },
393
+ fontWeight: {
394
+ regular: 400,
395
+ bold: 700
396
+ },
397
+ fontStyle: {
398
+ regular: 'normal',
399
+ bold: 'normal'
400
+ },
401
+ configs: {
402
+ 'body-large': createTypographyTypeConfig(1.6, 18, 24),
403
+ 'body-medium': createTypographyTypeConfig(1.6, 18, 18),
404
+ body: createTypographyTypeConfig(1.6, 16, 16),
405
+ 'body-small': createTypographyTypeConfig(1.6, 14, 14),
406
+ 'body-xsmall': createTypographyTypeConfig(1.6, 12, 12)
407
+ }
408
+ }
409
+ },
410
+ link: {
411
+ disabledColor: lateOceanColorPalette.black200
412
+ }
413
+ };
414
+
415
+ var breakpoints = {
416
+ values: {
417
+ base: 0,
418
+ small: 480,
419
+ medium: 768,
420
+ large: 1024,
421
+ wide: 1280
422
+ },
423
+ min: {
424
+ smallBreakpoint: 'min-width: 480px',
425
+ mediumBreakpoint: 'min-width: 768px',
426
+ largeBreakpoint: 'min-width: 1024px',
427
+ wideBreakpoint: 'min-width: 1280px'
428
+ },
429
+ max: {
430
+ smallBreakpoint: 'max-width: 479px',
431
+ mediumBreakpoint: 'max-width: 767px',
432
+ largeBreakpoint: 'max-width: 1023px',
433
+ wideBreakpoint: 'max-width: 1279px'
434
+ }
435
+ }; // eslint-disable-next-line unicorn/expiring-todo-comments
436
+ // TODO : seperate brand color usage definition from proper theme definition and add typings - https://ornikar.atlassian.net/browse/CME-156
437
+
438
+ var theme = {
439
+ spacing: 4,
440
+ colors: colorsLateOceanTheme,
441
+ palettes: {
442
+ lateOcean: lateOceanColorPalette
443
+ },
444
+ avatar: avatar,
445
+ button: buttonLateOceanTheme,
446
+ card: cardLateOceanTheme,
447
+ feedbackMessage: feedbackMessageLateOceanTheme,
448
+ forms: formsLateOceanTheme,
449
+ typography: typographyLateOceanTheme,
450
+ tag: tagLateOceanTheme,
451
+ shadows: shadowsLateOceanTheme,
452
+ fullScreenModal: fullScreenModalLateOceanTheme,
453
+ iconButton: iconButton,
454
+ listItem: listItemLateOceanTheme,
455
+ tooltip: tooltip,
456
+ skeleton: skeletonTheme,
457
+ breakpoints: breakpoints
458
+ };
459
+
460
+ export { theme as defaultThemeLinaria };
461
+ //# sourceMappingURL=linaria-themes-browser-all.es.android.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"linaria-themes-browser-all.es.android.js","sources":["../src/themes/palettes/lateOceanColorPalette.ts","../src/themes/late-ocean/colorsLateOceanTheme.ts","../src/themes/late-ocean/avatarLateOceanTheme.ts","../src/themes/late-ocean/buttonLateOceanTheme.ts","../src/themes/late-ocean/cardLateOceanTheme.ts","../src/themes/late-ocean/feedbackMessageLateOceanTheme.ts","../src/themes/late-ocean/inputFieldLateOceanTheme.ts","../src/themes/late-ocean/inputLateOceanTheme.ts","../src/themes/late-ocean/radioLateOceanTheme.ts","../src/themes/late-ocean/formLateOceanTheme.ts","../src/themes/late-ocean/fullScreenModalLateOceanTheme.ts","../src/themes/late-ocean/iconButton.ts","../src/themes/late-ocean/listItemLateOceanTheme.ts","../src/themes/late-ocean/shadowsLateOceanTheme.ts","../src/themes/late-ocean/skeletonTheme.ts","../src/themes/late-ocean/tagLateOceanTheme.ts","../src/themes/late-ocean/tooltip.ts","../src/themes/late-ocean/typographyLateOceanTheme.ts","../src/themes/default.ts"],"sourcesContent":["export const lateOceanColorPalette = {\n lateOcean: '#4C34E0',\n lateOceanLight1: '#705DE6',\n lateOceanLight2: '#9485EC',\n lateOceanLight3: '#D6BAF9',\n\n warmEmbrace: '#F4D3CE',\n warmEmbraceLight1: '#FFEDE6',\n\n black1000: '#000000',\n black555: '#737373',\n black200: '#CCCCCC',\n black100: '#E5E5E5',\n black50: '#F2F2F2',\n black25: '#F9F9F9',\n white: '#FFFFFF',\n\n viride: '#38836D',\n englishVermillon: '#D44148',\n goldCrayola: '#F8C583',\n aero: '#89BDDD',\n\n transparent: 'transparent',\n\n moonPurple: '#DBD6F9',\n moonPurpleLight1: '#EDEBFC',\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport const colorsLateOceanTheme = {\n primary: lateOceanColorPalette.lateOcean,\n primaryLight: lateOceanColorPalette.lateOceanLight1,\n accent: lateOceanColorPalette.warmEmbrace,\n accentLight: lateOceanColorPalette.warmEmbraceLight1,\n success: lateOceanColorPalette.viride,\n correct: lateOceanColorPalette.viride,\n danger: lateOceanColorPalette.englishVermillon,\n separator: lateOceanColorPalette.black100,\n hover: lateOceanColorPalette.black100,\n black: lateOceanColorPalette.black1000,\n uiBackground: lateOceanColorPalette.black25,\n uiBackgroundLight: lateOceanColorPalette.white,\n transparent: lateOceanColorPalette.transparent,\n disabled: lateOceanColorPalette.black50,\n overlay: {\n dark: 'rgba(41, 48, 51, 0.25)',\n light: 'rgba(255, 255, 255, 0.90)',\n fullscreenLoader: 'rgba(0, 0, 0, 0.25)',\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colorsLateOceanTheme } from './colorsLateOceanTheme';\n\nexport interface AvatarThemeVariant {\n backgroundColor: string;\n}\n\nexport interface AvatarTheme {\n borderRadius: string;\n default: AvatarThemeVariant;\n light: AvatarThemeVariant;\n}\n\nexport const avatar: AvatarTheme = {\n borderRadius: '10px',\n default: {\n backgroundColor: colorsLateOceanTheme.primary,\n },\n light: {\n backgroundColor: lateOceanColorPalette.black100,\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colorsLateOceanTheme } from './colorsLateOceanTheme';\n\nexport interface ButtonVariantTheme {\n // handled by typography ?\n // color: string;\n backgroundColor: string;\n pressedBackgroundColor: string;\n hoverBackgroundColor: string;\n focusBorderColor: string;\n}\n\nexport interface SubtleButtonVariantTheme extends ButtonVariantTheme {\n color: string;\n hoverColor: string;\n activeColor: string;\n}\n\nexport interface DisabledButtonVariantTheme extends ButtonVariantTheme {\n borderColor: string;\n}\n\nexport interface ButtonTheme {\n borderRadius: string;\n borderWidth: {\n disabled: string;\n focus: string;\n };\n minHeight: string;\n minWidth: string;\n maxWidth: string;\n scale: {\n base: {\n default: number;\n hover: number;\n active: number;\n };\n medium: {\n hover: number;\n };\n };\n contentPadding: {\n default: string;\n large: string;\n disabled: string;\n };\n transition: {\n duration: string;\n timingFunction: string;\n };\n default: ButtonVariantTheme;\n primary: ButtonVariantTheme;\n white: ButtonVariantTheme;\n subtle: SubtleButtonVariantTheme;\n 'subtle-dark': SubtleButtonVariantTheme;\n disabled: DisabledButtonVariantTheme;\n}\n\nexport const buttonLateOceanTheme: ButtonTheme = {\n borderRadius: '30px',\n borderWidth: {\n disabled: '2px',\n focus: '3px',\n },\n minHeight: '40px',\n minWidth: '40px',\n maxWidth: '335px',\n scale: {\n base: {\n default: 1,\n hover: 0.95,\n active: 0.95,\n },\n medium: {\n hover: 1.05,\n },\n },\n contentPadding: {\n default: '8px 16px 7px',\n large: '12px 24px 11px',\n disabled: '6px 14px 5px',\n },\n transition: {\n duration: '200ms',\n timingFunction: 'cubic-bezier(0.645, 0.045, 0.355, 1)',\n },\n default: {\n backgroundColor: 'rgba(0, 0, 0, 0.05)',\n pressedBackgroundColor: 'rgba(0, 0, 0, 0.1)',\n hoverBackgroundColor: 'rgba(0, 0, 0, 0.1)',\n focusBorderColor: 'rgba(0, 0, 0, 0.1)',\n },\n primary: {\n backgroundColor: colorsLateOceanTheme.primary,\n pressedBackgroundColor: colorsLateOceanTheme.primaryLight,\n hoverBackgroundColor: colorsLateOceanTheme.primaryLight,\n focusBorderColor: 'rgba(76, 52, 224, 0.2)',\n },\n white: {\n backgroundColor: 'rgba(255, 255, 255, 0.05)',\n pressedBackgroundColor: 'rgba(255, 255, 255, 0.1)',\n hoverBackgroundColor: 'rgba(255, 255, 255, 0.1)',\n focusBorderColor: 'rgba(255, 255, 255, 0.1)',\n },\n subtle: {\n backgroundColor: colorsLateOceanTheme.transparent,\n pressedBackgroundColor: colorsLateOceanTheme.transparent,\n hoverBackgroundColor: colorsLateOceanTheme.transparent,\n focusBorderColor: 'rgba(76, 52, 224, 0.2)',\n color: colorsLateOceanTheme.primary,\n hoverColor: 'rgba(76, 52, 224, 0.8)',\n activeColor: 'rgba(76, 52, 224, 0.8)',\n },\n 'subtle-dark': {\n backgroundColor: colorsLateOceanTheme.transparent,\n pressedBackgroundColor: colorsLateOceanTheme.transparent,\n hoverBackgroundColor: colorsLateOceanTheme.transparent,\n focusBorderColor: 'rgba(0, 0, 0, 0.1)',\n color: colorsLateOceanTheme.black,\n hoverColor: 'rgba(0, 0, 0, 0.8)',\n activeColor: 'rgba(0, 0, 0, 0.8)',\n },\n disabled: {\n backgroundColor: colorsLateOceanTheme.disabled,\n pressedBackgroundColor: colorsLateOceanTheme.disabled,\n hoverBackgroundColor: colorsLateOceanTheme.disabled,\n focusBorderColor: lateOceanColorPalette.black100,\n borderColor: lateOceanColorPalette.black100,\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport const cardLateOceanTheme = {\n borderRadius: '20px',\n borderWidth: '2px',\n padding: '16px',\n primary: {\n backgroundColor: lateOceanColorPalette.white,\n borderColor: lateOceanColorPalette.lateOcean,\n },\n secondary: {\n backgroundColor: lateOceanColorPalette.white,\n borderColor: lateOceanColorPalette.black100,\n },\n subtle: {\n backgroundColor: lateOceanColorPalette.black50,\n borderColor: lateOceanColorPalette.black100,\n },\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport const feedbackMessageLateOceanTheme = {\n backgroundColors: {\n success: lateOceanColorPalette.viride,\n danger: lateOceanColorPalette.englishVermillon,\n warning: lateOceanColorPalette.goldCrayola,\n info: lateOceanColorPalette.aero,\n },\n};\n","export const inputFieldLateOceanTheme = {\n labelContainerPaddingBottom: 5,\n iconMarginLeft: 6,\n};\n","import type { InputTextState } from '../../forms/InputText/InputText';\nimport { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport type { typographyLateOceanTheme } from './typographyLateOceanTheme';\n\nexport type TypographyColor = keyof typeof typographyLateOceanTheme.colors;\nexport interface InputStateStyle {\n backgroundColor?: string;\n borderColor: string;\n color: TypographyColor;\n passwordButtonIconColor: TypographyColor;\n}\n\nconst inputStatesStyle: Record<InputTextState, InputStateStyle> = {\n default: {\n backgroundColor: lateOceanColorPalette.white,\n borderColor: lateOceanColorPalette.black100,\n color: 'black',\n passwordButtonIconColor: 'black',\n },\n hover: {\n borderColor: lateOceanColorPalette.black200,\n color: 'black',\n passwordButtonIconColor: 'black',\n },\n focus: {\n borderColor: lateOceanColorPalette.lateOcean,\n color: 'black',\n passwordButtonIconColor: 'black',\n },\n disabled: {\n backgroundColor: lateOceanColorPalette.black50,\n borderColor: lateOceanColorPalette.black100,\n color: 'black-light',\n passwordButtonIconColor: 'black-light',\n },\n invalid: {\n borderColor: lateOceanColorPalette.englishVermillon,\n color: 'black',\n passwordButtonIconColor: 'black',\n },\n};\n\nexport const inputLateOceanTheme = {\n marginTop: '2px',\n marginBottom: '4px',\n borderWidth: '2px',\n borderRadius: '10px',\n passwordButtonIconSize: 20,\n padding: '7px 16px',\n paddingSingleLineIOS: '12px 16px',\n selectionColor: lateOceanColorPalette.lateOcean,\n placeholderColor: 'black-light' as const,\n textAreaMinHeight: 120,\n states: inputStatesStyle,\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport const radioLateOceanTheme = {\n size: 18,\n unchecked: {\n backgroundColor: lateOceanColorPalette.white,\n borderWidth: '2px',\n borderColor: lateOceanColorPalette.black200,\n },\n checked: {\n backgroundColor: lateOceanColorPalette.lateOcean,\n innerSize: 5,\n innerBackgroundColor: lateOceanColorPalette.white,\n },\n disabled: {\n backgroundColor: lateOceanColorPalette.black50,\n borderColor: lateOceanColorPalette.black100,\n },\n};\n","import { inputFieldLateOceanTheme } from './inputFieldLateOceanTheme';\nimport { inputLateOceanTheme } from './inputLateOceanTheme';\nimport { radioLateOceanTheme } from './radioLateOceanTheme';\n\nexport const formsLateOceanTheme = {\n input: inputLateOceanTheme,\n radio: radioLateOceanTheme,\n inputField: inputFieldLateOceanTheme,\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport const fullScreenModalLateOceanTheme = {\n header: {\n paddingVertical: 12,\n paddingHorizontal: 16,\n borderColor: lateOceanColorPalette.black100,\n },\n};\n","import { buttonLateOceanTheme } from './buttonLateOceanTheme';\n\ninterface IconButtonVariationValues {\n pressedBackgroundColor: string;\n}\n\nexport interface IconButtonTheme {\n backgroundColor: string;\n width: number;\n height: number;\n borderRadius: number;\n borderWidth: number;\n borderColor: string;\n transition: {\n property: string;\n duration: string;\n timingFunction: string;\n };\n scale: {\n base: {\n default: number;\n hover: number;\n active: number;\n };\n medium: {\n hover: number;\n };\n };\n disabled: {\n scale: number;\n backgroundColor: string;\n borderColor: string;\n };\n default: IconButtonVariationValues;\n white: IconButtonVariationValues;\n}\n\nexport const iconButton: IconButtonTheme = {\n backgroundColor: 'transparent',\n width: 40,\n height: 40,\n borderRadius: 20,\n borderWidth: 2,\n borderColor: 'transparent',\n transition: {\n property: 'all',\n duration: '200ms',\n timingFunction: 'cubic-bezier(0.645, 0.045, 0.355, 1);',\n },\n scale: {\n base: {\n default: 1,\n hover: 0.95,\n active: 0.95,\n },\n medium: {\n hover: 1.05,\n },\n },\n disabled: {\n scale: 1,\n backgroundColor: buttonLateOceanTheme.disabled.backgroundColor,\n borderColor: buttonLateOceanTheme.disabled.borderColor,\n },\n default: {\n pressedBackgroundColor: buttonLateOceanTheme.default.pressedBackgroundColor,\n },\n white: {\n pressedBackgroundColor: buttonLateOceanTheme.white.hoverBackgroundColor,\n },\n};\n","import { colorsLateOceanTheme } from './colorsLateOceanTheme';\n\nexport const listItemLateOceanTheme = {\n padding: '12px 16px',\n borderColor: colorsLateOceanTheme.separator,\n borderWidth: '1px',\n innerMargin: '8px',\n};\n","export const shadowsLateOceanTheme = {\n medium: '0px 10px 20px rgba(41, 48, 51, 0.25)',\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport interface SkeletonTheme {\n backgroundColor: string;\n flareColor: string;\n animationDuration: number;\n}\n\nexport const skeletonTheme: SkeletonTheme = {\n backgroundColor: lateOceanColorPalette.black100,\n flareColor: lateOceanColorPalette.black200,\n animationDuration: 1000,\n};\n","import { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\nimport { colorsLateOceanTheme } from './colorsLateOceanTheme';\n\nexport const tagLateOceanTheme = {\n borderRadius: '10px',\n padding: '2px 12px',\n primary: {\n fill: {\n backgroundColor: lateOceanColorPalette.moonPurpleLight1,\n borderWidth: '0',\n borderColor: lateOceanColorPalette.transparent,\n },\n outline: {\n backgroundColor: lateOceanColorPalette.transparent,\n borderWidth: '1px',\n borderColor: lateOceanColorPalette.lateOcean,\n },\n },\n default: {\n fill: {\n backgroundColor: lateOceanColorPalette.black50,\n borderWidth: '0',\n borderColor: lateOceanColorPalette.transparent,\n },\n outline: {\n backgroundColor: lateOceanColorPalette.transparent,\n borderWidth: '1px',\n borderColor: lateOceanColorPalette.black1000,\n },\n },\n danger: {\n fill: {\n backgroundColor: lateOceanColorPalette.warmEmbrace,\n borderWidth: '0',\n borderColor: lateOceanColorPalette.transparent,\n },\n outline: {\n backgroundColor: lateOceanColorPalette.transparent,\n borderWidth: '1px',\n borderColor: colorsLateOceanTheme.danger,\n },\n },\n};\n","import { colorsLateOceanTheme } from './colorsLateOceanTheme';\n\nexport interface TooltipTheme {\n backgroundColor: string;\n borderRadius: number;\n opacity: number;\n horizontalPadding: number;\n verticalPadding: number;\n floatingPadding: number;\n}\n\nexport const tooltip: TooltipTheme = {\n backgroundColor: colorsLateOceanTheme.black,\n borderRadius: 10,\n opacity: 0.95,\n horizontalPadding: 16,\n verticalPadding: 4,\n floatingPadding: 8,\n};\n","import { Platform } from 'react-native';\nimport { lateOceanColorPalette } from '../palettes/lateOceanColorPalette';\n\nexport const calcLineHeight = (fontSize: number, lineHeightMultiplier: number): number =>\n Math.round(fontSize * lineHeightMultiplier);\n\nexport interface TypographyTypeBreakpointRangeConfig {\n fontSize: string;\n lineHeight: string;\n}\n\nexport interface TypographyTypeConfig {\n baseAndSmall: TypographyTypeBreakpointRangeConfig;\n mediumAndWide: TypographyTypeBreakpointRangeConfig;\n}\n\nexport const createTypographyTypeConfig = (\n lineHeightMultiplier: number,\n baseAndSmallFontSize: number,\n mediumAndWideFontSize: number,\n): TypographyTypeConfig => ({\n baseAndSmall: {\n fontSize: `${baseAndSmallFontSize}px`,\n lineHeight: `${calcLineHeight(baseAndSmallFontSize, lineHeightMultiplier)}px`,\n },\n mediumAndWide: {\n fontSize: `${mediumAndWideFontSize}px`,\n lineHeight: `${calcLineHeight(mediumAndWideFontSize, lineHeightMultiplier)}px`,\n },\n});\n\nexport const typographyLateOceanTheme = {\n colors: {\n black: lateOceanColorPalette.black1000,\n 'black-light': lateOceanColorPalette.black555,\n white: lateOceanColorPalette.white,\n 'white-light': lateOceanColorPalette.white,\n primary: lateOceanColorPalette.lateOcean,\n 'primary-light': lateOceanColorPalette.lateOceanLight1,\n accent: lateOceanColorPalette.warmEmbrace,\n success: lateOceanColorPalette.viride,\n danger: lateOceanColorPalette.englishVermillon,\n },\n types: {\n headers: {\n fontFamily: {\n regular: Platform.OS === 'web' ? 'Moderat' : 'Moderat-Extended-Bold',\n bold: Platform.OS === 'web' ? 'Moderat' : 'Moderat-Extended-Bold',\n },\n fontWeight: 400,\n fontStyle: 'normal',\n configs: {\n // also known as xxlarge\n header1: createTypographyTypeConfig(1.3, 38, 62),\n // also known as xlarge\n header2: createTypographyTypeConfig(1.3, 32, 48),\n // also known as medium\n header3: createTypographyTypeConfig(1.3, 24, 36),\n // also known as xsmall\n header4: createTypographyTypeConfig(1.3, 18, 24),\n // also known as xxsmall\n header5: createTypographyTypeConfig(1.3, 18, 18),\n },\n },\n bodies: {\n fontFamily: {\n regular: Platform.OS === 'web' ? 'Noto Sans' : 'NotoSans',\n bold: Platform.OS === 'web' ? 'Noto Sans' : 'NotoSans-Bold',\n },\n fontWeight: {\n regular: 400,\n bold: 700,\n },\n fontStyle: {\n regular: 'normal',\n bold: 'normal',\n },\n configs: {\n 'body-large': createTypographyTypeConfig(1.6, 18, 24),\n 'body-medium': createTypographyTypeConfig(1.6, 18, 18),\n body: createTypographyTypeConfig(1.6, 16, 16),\n 'body-small': createTypographyTypeConfig(1.6, 14, 14),\n 'body-xsmall': createTypographyTypeConfig(1.6, 12, 12),\n },\n },\n },\n link: {\n disabledColor: lateOceanColorPalette.black200,\n },\n};\n","import { avatar } from './late-ocean/avatarLateOceanTheme';\nimport { buttonLateOceanTheme } from './late-ocean/buttonLateOceanTheme';\nimport { cardLateOceanTheme } from './late-ocean/cardLateOceanTheme';\nimport { colorsLateOceanTheme } from './late-ocean/colorsLateOceanTheme';\nimport { feedbackMessageLateOceanTheme } from './late-ocean/feedbackMessageLateOceanTheme';\nimport { formsLateOceanTheme } from './late-ocean/formLateOceanTheme';\nimport { fullScreenModalLateOceanTheme } from './late-ocean/fullScreenModalLateOceanTheme';\nimport { iconButton } from './late-ocean/iconButton';\nimport { listItemLateOceanTheme } from './late-ocean/listItemLateOceanTheme';\nimport { shadowsLateOceanTheme } from './late-ocean/shadowsLateOceanTheme';\nimport { skeletonTheme } from './late-ocean/skeletonTheme';\nimport { tagLateOceanTheme } from './late-ocean/tagLateOceanTheme';\nimport { tooltip } from './late-ocean/tooltip';\nimport { typographyLateOceanTheme } from './late-ocean/typographyLateOceanTheme';\nimport { lateOceanColorPalette } from './palettes/lateOceanColorPalette';\n\nconst breakpoints = {\n values: {\n base: 0,\n small: 480,\n medium: 768,\n large: 1024,\n wide: 1280,\n },\n min: {\n smallBreakpoint: 'min-width: 480px',\n mediumBreakpoint: 'min-width: 768px',\n largeBreakpoint: 'min-width: 1024px',\n wideBreakpoint: 'min-width: 1280px',\n },\n max: {\n smallBreakpoint: 'max-width: 479px',\n mediumBreakpoint: 'max-width: 767px',\n largeBreakpoint: 'max-width: 1023px',\n wideBreakpoint: 'max-width: 1279px',\n },\n};\n\n// eslint-disable-next-line unicorn/expiring-todo-comments\n// TODO : seperate brand color usage definition from proper theme definition and add typings - https://ornikar.atlassian.net/browse/CME-156\nexport const theme = {\n spacing: 4,\n colors: colorsLateOceanTheme,\n palettes: { lateOcean: lateOceanColorPalette },\n avatar,\n button: buttonLateOceanTheme,\n card: cardLateOceanTheme,\n feedbackMessage: feedbackMessageLateOceanTheme,\n forms: formsLateOceanTheme,\n typography: typographyLateOceanTheme,\n tag: tagLateOceanTheme,\n shadows: shadowsLateOceanTheme,\n fullScreenModal: fullScreenModalLateOceanTheme,\n iconButton,\n listItem: listItemLateOceanTheme,\n tooltip,\n skeleton: skeletonTheme,\n breakpoints,\n};\n\nexport type Theme = typeof theme;\n"],"names":["lateOceanColorPalette","lateOcean","lateOceanLight1","lateOceanLight2","lateOceanLight3","warmEmbrace","warmEmbraceLight1","black1000","black555","black200","black100","black50","black25","white","viride","englishVermillon","goldCrayola","aero","transparent","moonPurple","moonPurpleLight1","colorsLateOceanTheme","primary","primaryLight","accent","accentLight","success","correct","danger","separator","hover","black","uiBackground","uiBackgroundLight","disabled","overlay","dark","light","fullscreenLoader","avatar","borderRadius","backgroundColor","buttonLateOceanTheme","borderWidth","focus","minHeight","minWidth","maxWidth","scale","base","active","medium","contentPadding","large","transition","duration","timingFunction","pressedBackgroundColor","hoverBackgroundColor","focusBorderColor","subtle","color","hoverColor","activeColor","borderColor","cardLateOceanTheme","padding","secondary","feedbackMessageLateOceanTheme","backgroundColors","warning","info","inputFieldLateOceanTheme","labelContainerPaddingBottom","iconMarginLeft","inputStatesStyle","passwordButtonIconColor","invalid","inputLateOceanTheme","marginTop","marginBottom","passwordButtonIconSize","paddingSingleLineIOS","selectionColor","placeholderColor","textAreaMinHeight","states","radioLateOceanTheme","size","unchecked","checked","innerSize","innerBackgroundColor","formsLateOceanTheme","input","radio","inputField","fullScreenModalLateOceanTheme","header","paddingVertical","paddingHorizontal","iconButton","width","height","property","listItemLateOceanTheme","innerMargin","shadowsLateOceanTheme","skeletonTheme","flareColor","animationDuration","tagLateOceanTheme","fill","outline","tooltip","opacity","horizontalPadding","verticalPadding","floatingPadding","calcLineHeight","fontSize","lineHeightMultiplier","Math","round","createTypographyTypeConfig","baseAndSmallFontSize","mediumAndWideFontSize","baseAndSmall","lineHeight","mediumAndWide","typographyLateOceanTheme","colors","types","headers","fontFamily","regular","Platform","OS","bold","fontWeight","fontStyle","configs","header1","header2","header3","header4","header5","bodies","body","link","disabledColor","breakpoints","values","small","wide","min","smallBreakpoint","mediumBreakpoint","largeBreakpoint","wideBreakpoint","max","theme","spacing","palettes","button","card","feedbackMessage","forms","typography","tag","shadows","fullScreenModal","listItem","skeleton"],"mappings":"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"}