@covalent/tokens 11.3.1 → 11.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.js +404 -372
  2. package/index.json +3945 -1315
  3. package/package.json +1 -1
package/index.js CHANGED
@@ -29,44 +29,44 @@ export const CvLightBackground = "#f8f9fb";
29
29
  export const CvLightSurface = "#f8f9fb";
30
30
  export const CvLightSurfaceCanvas = "#ffffff";
31
31
  export const CvLightSurfacePrimary = "#ececfe";
32
- export const CvLightSurfacePrimaryHighlight = "#3053f4";
33
- export const CvLightSurfacePrimaryHighlightHover = "#3053f4";
32
+ export const CvLightSurfacePrimaryHighlight = "rgba(48, 83, 244, 0.08)";
33
+ export const CvLightSurfacePrimaryHighlightHover = "rgba(48, 83, 244, 0.08)";
34
34
  export const CvLightSurfaceAccent = "#ececfe";
35
- export const CvLightSurfaceAccentHighlight = "#3053f4";
36
- export const CvLightSurfaceAccentHighlightHover = "#3053f4";
35
+ export const CvLightSurfaceAccentHighlight = "rgba(48, 83, 244, 0.08)";
36
+ export const CvLightSurfaceAccentHighlightHover = "rgba(48, 83, 244, 0.12)";
37
37
  export const CvLightSurfaceSecondary = "#deeafa";
38
- export const CvLightSurfaceSecondaryHighlight = "#00233c";
39
- export const CvLightSurfaceSecondaryHighlightHover = "#00233c";
38
+ export const CvLightSurfaceSecondaryHighlight = "rgba(0, 35, 60, 0.08)";
39
+ export const CvLightSurfaceSecondaryHighlightHover = "rgba(0, 35, 60, 0.08)";
40
40
  export const CvLightSurfacePositive = "#8fcc8e";
41
- export const CvLightSurfacePositiveHighlight = "#036600";
42
- export const CvLightSurfacePositiveHighlightHover = "#036600";
41
+ export const CvLightSurfacePositiveHighlight = "rgba(3, 102, 0, 0.08)";
42
+ export const CvLightSurfacePositiveHighlightHover = "rgba(3, 102, 0, 0.08)";
43
43
  export const CvLightSurfaceCaution = "#ffcc8c";
44
- export const CvLightSurfaceCautionHighlight = "#f38800";
45
- export const CvLightSurfaceCautionHighlightHover = "#f38800";
44
+ export const CvLightSurfaceCautionHighlight = "rgba(243, 136, 0, 0.08)";
45
+ export const CvLightSurfaceCautionHighlightHover = "rgba(243, 136, 0, 0.08)";
46
46
  export const CvLightSurfaceNegative = "#ffb2ae";
47
- export const CvLightSurfaceNegativeHighlight = "#ae1209";
48
- export const CvLightSurfaceNegativeHighlightHover = "#ae1209";
47
+ export const CvLightSurfaceNegativeHighlight = "rgba(174, 18, 9, 0.08)";
48
+ export const CvLightSurfaceNegativeHighlightHover = "rgba(174, 18, 9, 0.08)";
49
49
  export const CvLightSurfaceNeutral = "#f3f5f9";
50
50
  export const CvLightSurfaceNeutralHighlight = "rgba(#f3f5f9, 0.04)";
51
51
  export const CvLightSurfaceNeutralHighlightHover = "rgba(#f3f5f9, 0.08)";
52
52
  export const CvLightSurfaceEmphasis = "#e8b3c6";
53
- export const CvLightSurfaceEmphasisHighlight = "#b10142";
54
- export const CvLightSurfaceEmphasisHighlightHover = "#b10142";
53
+ export const CvLightSurfaceEmphasisHighlight = "rgba(177, 1, 66, 0.08)";
54
+ export const CvLightSurfaceEmphasisHighlightHover = "rgba(177, 1, 66, 0.08)";
55
55
  export const CvLightTextPrimaryOnBackground = "#00233c";
56
56
  export const CvLightTextSecondaryOnBackground = "#59627b";
57
57
  export const CvLightTextHintOnBackground = "#59627b";
58
- export const CvLightTextDisabledOnBackground = "#00233c";
58
+ export const CvLightTextDisabledOnBackground = "rgba(0, 35, 60, 0.38)";
59
59
  export const CvLightTextIconOnBackground = "#59627b";
60
60
  export const CvLightTextLogoOnBackground = "#ff5f02";
61
61
  export const CvLightTextPrimaryOnLight = "#00233c";
62
62
  export const CvLightTextSecondaryOnLight = "#59627b";
63
63
  export const CvLightTextHintOnLight = "#59627b";
64
- export const CvLightTextDisabledOnLight = "#00233c";
64
+ export const CvLightTextDisabledOnLight = "rgba(0, 35, 60, 0.38)";
65
65
  export const CvLightTextIconOnLight = "#59627b";
66
66
  export const CvLightTextPrimaryOnDark = "#ebe8ec";
67
67
  export const CvLightTextSecondaryOnDark = "#d5d3d8";
68
68
  export const CvLightTextHintOnDark = "#d5d3d8";
69
- export const CvLightTextDisabledOnDark = "#ebe8ec";
69
+ export const CvLightTextDisabledOnDark = "rgba(235, 232, 236, 0.38)";
70
70
  export const CvLightTextIconOnDark = "#d5d3d8";
71
71
  export const CvDarkCodeSnippetColor = "#abb2bf";
72
72
  export const CvDarkCodeSnippetComment = "#5c6370";
@@ -95,44 +95,44 @@ export const CvDarkBackground = "#1e1d1e";
95
95
  export const CvDarkSurface = "#1e1d1e";
96
96
  export const CvDarkSurfaceCanvas = "#38383b";
97
97
  export const CvDarkSurfacePrimary = "#1d2c43";
98
- export const CvDarkSurfacePrimaryHighlight = "#bac3ff";
99
- export const CvDarkSurfacePrimaryHighlightHover = "#bac3ff";
98
+ export const CvDarkSurfacePrimaryHighlight = "rgba(186, 195, 255, 0.08)";
99
+ export const CvDarkSurfacePrimaryHighlightHover = "rgba(186, 195, 255, 0.08)";
100
100
  export const CvDarkSurfaceAccent = "#1d2c43";
101
- export const CvDarkSurfaceAccentHighlight = "#bac3ff";
102
- export const CvDarkSurfaceAccentHighlightHover = "#bac3ff";
101
+ export const CvDarkSurfaceAccentHighlight = "rgba(186, 195, 255, 0.08)";
102
+ export const CvDarkSurfaceAccentHighlightHover = "rgba(186, 195, 255, 0.08)";
103
103
  export const CvDarkSurfaceSecondary = "#434659";
104
- export const CvDarkSurfaceSecondaryHighlight = "#c3c5dd";
105
- export const CvDarkSurfaceSecondaryHighlightHover = "#c3c5dd";
104
+ export const CvDarkSurfaceSecondaryHighlight = "rgba(195, 197, 221, 0.08)";
105
+ export const CvDarkSurfaceSecondaryHighlightHover = "rgba(195, 197, 221, 0.08)";
106
106
  export const CvDarkSurfacePositive = "#224b22";
107
- export const CvDarkSurfacePositiveHighlight = "#91d890";
108
- export const CvDarkSurfacePositiveHighlightHover = "#91d890";
107
+ export const CvDarkSurfacePositiveHighlight = "rgba(145, 216, 144, 0.08)";
108
+ export const CvDarkSurfacePositiveHighlightHover = "rgba(145, 216, 144, 0.08)";
109
109
  export const CvDarkSurfaceCaution = "#66492f";
110
- export const CvDarkSurfaceCautionHighlight = "#ffb775";
111
- export const CvDarkSurfaceCautionHighlightHover = "#ffb775";
110
+ export const CvDarkSurfaceCautionHighlight = "rgba(255, 183, 117, 0.08)";
111
+ export const CvDarkSurfaceCautionHighlightHover = "rgba(255, 183, 117, 0.08)";
112
112
  export const CvDarkSurfaceNegative = "#65322a";
113
- export const CvDarkSurfaceNegativeHighlight = "#fd7d69";
114
- export const CvDarkSurfaceNegativeHighlightHover = "#fd7d69";
113
+ export const CvDarkSurfaceNegativeHighlight = "rgba(253, 125, 105, 0.08)";
114
+ export const CvDarkSurfaceNegativeHighlightHover = "rgba(253, 125, 105, 0.08)";
115
115
  export const CvDarkSurfaceNeutral = "#f3f5f9";
116
116
  export const CvDarkSurfaceNeutralHighlight = "rgba(#f3f5f9, 0.04)";
117
117
  export const CvDarkSurfaceNeutralHighlightHover = "rgba(#f3f5f9, 0.08)";
118
118
  export const CvDarkSurfaceEmphasis = "#66404e";
119
- export const CvDarkSurfaceEmphasisHighlight = "#cc809c";
120
- export const CvDarkSurfaceEmphasisHighlightHover = "#cc809c";
119
+ export const CvDarkSurfaceEmphasisHighlight = "rgba(204, 128, 156, 0.08)";
120
+ export const CvDarkSurfaceEmphasisHighlightHover = "rgba(204, 128, 156, 0.08)";
121
121
  export const CvDarkTextPrimaryOnBackground = "#ebe8ec";
122
122
  export const CvDarkTextSecondaryOnBackground = "#d5d3d8";
123
123
  export const CvDarkTextHintOnBackground = "#d5d3d8";
124
- export const CvDarkTextDisabledOnBackground = "#ebe8ec";
124
+ export const CvDarkTextDisabledOnBackground = "rgba(235, 232, 236, 0.38)";
125
125
  export const CvDarkTextIconOnBackground = "#d5d3d8";
126
126
  export const CvDarkTextLogoOnBackground = "#ffffff";
127
127
  export const CvDarkTextPrimaryOnLight = "#00233c";
128
128
  export const CvDarkTextSecondaryOnLight = "#59627b";
129
129
  export const CvDarkTextHintOnLight = "#59627b";
130
- export const CvDarkTextDisabledOnLight = "#00233c";
130
+ export const CvDarkTextDisabledOnLight = "rgba(0, 35, 60, 0.38)";
131
131
  export const CvDarkTextIconOnLight = "#59627b";
132
132
  export const CvDarkTextPrimaryOnDark = "#ebe8ec";
133
133
  export const CvDarkTextSecondaryOnDark = "#d5d3d8";
134
134
  export const CvDarkTextHintOnDark = "#d5d3d8";
135
- export const CvDarkTextDisabledOnDark = "#ebe8ec";
135
+ export const CvDarkTextDisabledOnDark = "rgba(235, 232, 236, 0.38)";
136
136
  export const CvDarkTextIconOnDark = "#d5d3d8";
137
137
  export const CvThemeLightPalettesDigitalBlue98 = "#fbf8ff";
138
138
  export const CvThemeLightPalettesDigitalBlue100 = "#ffffff";
@@ -352,192 +352,192 @@ export const CvThemeLightColorsOnCautionContainer = "#180e00";
352
352
  export const CvThemeLightColorsOutline = "#727d9c";
353
353
  export const CvThemeLightColorsOutlineVariant = "#d1d5e7";
354
354
  export const CvThemeLightColorsShadow = "#000000";
355
- export const CvThemeLightColorsScrim = "#000000";
355
+ export const CvThemeLightColorsScrim = "rgba(0, 0, 0, 0.32)";
356
356
  export const CvThemeLightColorsPrimaryFixed = "#dee0ff";
357
357
  export const CvThemeLightColorsPrimaryFixedDim = "#bac3ff";
358
358
  export const CvThemeLightColorsSecondaryFixed = "#deeafa";
359
359
  export const CvThemeLightColorsSecondaryFixedDim = "#bcd5f6";
360
360
  export const CvThemeLightColorsTertiaryFixed = "#ffdbce";
361
361
  export const CvThemeLightColorsTertiaryFixedDim = "#ffc0a8";
362
- export const CvThemeLightColorsPrimary8 = "#3053f4";
363
- export const CvThemeLightColorsPrimary12 = "#3053f4";
364
- export const CvThemeLightColorsOnSurface8 = "#00233c";
365
- export const CvThemeLightColorsOnSurface12 = "#00233c";
362
+ export const CvThemeLightColorsPrimary8 = "rgba(48, 83, 244, 0.08)";
363
+ export const CvThemeLightColorsPrimary12 = "rgba(48, 83, 244, 0.12)";
364
+ export const CvThemeLightColorsOnSurface8 = "rgba(0, 35, 60, 0.08)";
365
+ export const CvThemeLightColorsOnSurface12 = "rgba(0, 35, 60, 0.12)";
366
366
  export const CvThemeLightColorsOnPrimaryContainer = "#00115a";
367
367
  export const CvThemeLightColorsInversePrimary = "#bac3ff";
368
- export const CvThemeLightColorsOnSurface38 = "#00233c";
369
- export const CvThemeLightColorsOnSurface16 = "#00233c";
370
- export const CvThemeLightColorsOnPrimary12 = "#ffffff";
371
- export const CvThemeLightColorsOnPrimary8 = "#ffffff";
372
- export const CvThemeLightColorsPrimary16 = "#3053f4";
373
- export const CvThemeLightColorsOnSurfaceVariant8 = "#59627b";
374
- export const CvThemeLightColorsOnTertiaryContainer8 = "#481300";
375
- export const CvThemeLightColorsOnTertiaryContainer12 = "#481300";
376
- export const CvThemeLightColorsOnPrimaryContainer12 = "#00115a";
377
- export const CvThemeLightColorsOnSurfaceVariant12 = "#59627b";
378
- export const CvThemeLightColorsOnSecondaryContainer8 = "#001d33";
379
- export const CvThemeLightColorsOnSecondaryContainer16 = "#001d33";
380
- export const CvThemeLightColorsOutline8 = "#727d9c";
381
- export const CvThemeLightColorsOutline12 = "#727d9c";
382
- export const CvThemeLightColorsOutline16 = "#727d9c";
368
+ export const CvThemeLightColorsOnSurface38 = "rgba(0, 35, 60, 0.38)";
369
+ export const CvThemeLightColorsOnSurface16 = "rgba(0, 35, 60, 0.16)";
370
+ export const CvThemeLightColorsOnPrimary12 = "rgba(255, 255, 255, 0.12)";
371
+ export const CvThemeLightColorsOnPrimary8 = "rgba(255, 255, 255, 0.08)";
372
+ export const CvThemeLightColorsPrimary16 = "rgba(48, 83, 244, 0.16)";
373
+ export const CvThemeLightColorsOnSurfaceVariant8 = "rgba(89, 98, 123, 0.08)";
374
+ export const CvThemeLightColorsOnTertiaryContainer8 = "rgba(72, 19, 0, 0.08)";
375
+ export const CvThemeLightColorsOnTertiaryContainer12 = "rgba(72, 19, 0, 0.12)";
376
+ export const CvThemeLightColorsOnPrimaryContainer12 = "rgba(0, 17, 90, 0.12)";
377
+ export const CvThemeLightColorsOnSurfaceVariant12 = "rgba(89, 98, 123, 0.12)";
378
+ export const CvThemeLightColorsOnSecondaryContainer8 = "rgba(0, 29, 51, 0.08)";
379
+ export const CvThemeLightColorsOnSecondaryContainer16 = "rgba(0, 29, 51, 0.16)";
380
+ export const CvThemeLightColorsOutline8 = "rgba(114, 125, 156, 0.08)";
381
+ export const CvThemeLightColorsOutline12 = "rgba(114, 125, 156, 0.12)";
382
+ export const CvThemeLightColorsOutline16 = "rgba(114, 125, 156, 0.16)";
383
383
  export const CvThemeLightColorsSurfaceVariant = "#f8f9fb";
384
384
  export const CvThemeLightColorsEmphasis = "#b10142";
385
385
  export const CvThemeLightColorsEmphasisContainer = "#e8b3c6";
386
386
  export const CvThemeLightColorsOnEmphasis = "#ffffff";
387
387
  export const CvThemeLightColorsOnEmphasisContainer = "#120007";
388
- export const CvThemeLightColorsPositive16 = "#036600";
389
- export const CvThemeLightColorsCaution16 = "#f38800";
390
- export const CvThemeLightColorsNegative12 = "#ae1209";
391
- export const CvThemeLightColorsOnSecondaryContainer12 = "#001d33";
392
- export const CvThemeLightColorsOnPrimary16 = "#ffffff";
393
- export const CvThemeLightColorsOnPrimaryContainer8 = "#00115a";
394
- export const CvThemeLightColorsOnPrimaryContainer16 = "#00115a";
395
- export const CvThemeLightColorsOnSecondary8 = "#ffffff";
396
- export const CvThemeLightColorsOnSecondary12 = "#ffffff";
397
- export const CvThemeLightColorsOnSecondary16 = "#ffffff";
398
- export const CvThemeLightColorsOnTertiary8 = "#ffffff";
399
- export const CvThemeLightColorsOnTertiary12 = "#ffffff";
400
- export const CvThemeLightColorsOnTertiary16 = "#ffffff";
401
- export const CvThemeLightColorsOnTertiaryContainer16 = "#481300";
402
- export const CvThemeLightColorsOnSurfaceVariant16 = "#59627b";
403
- export const CvThemeLightColorsNegative8 = "#ae1209";
404
- export const CvThemeLightColorsNegative16 = "#ae1209";
405
- export const CvThemeLightColorsPositive12 = "#036600";
406
- export const CvThemeLightColorsPositive8 = "#036600";
407
- export const CvThemeLightColorsOnPositive8 = "#ffffff";
408
- export const CvThemeLightColorsOnPositive12 = "#ffffff";
409
- export const CvThemeLightColorsOnPositive16 = "#ffffff";
410
- export const CvThemeLightColorsOnPositiveContainer8 = "#000a00";
411
- export const CvThemeLightColorsOnPositiveContainer12 = "#000a00";
412
- export const CvThemeLightColorsOnPositiveContainer16 = "#000a00";
413
- export const CvThemeLightColorsCaution12 = "#f38800";
414
- export const CvThemeLightColorsCaution8 = "#f38800";
415
- export const CvThemeLightColorsOnCaution8 = "#ffffff";
416
- export const CvThemeLightColorsOnCaution12 = "#ffffff";
417
- export const CvThemeLightColorsOnCaution16 = "#ffffff";
418
- export const CvThemeLightColorsOnNegative8 = "#ffffff";
419
- export const CvThemeLightColorsOnNegative12 = "#ffffff";
420
- export const CvThemeLightColorsOnNegative16 = "#ffffff";
421
- export const CvThemeLightColorsOnCautionContainer8 = "#180e00";
422
- export const CvThemeLightColorsOnCautionContainer12 = "#180e00";
423
- export const CvThemeLightColorsOnCautionContainer16 = "#180e00";
424
- export const CvThemeLightColorsEmphasis8 = "#b10142";
425
- export const CvThemeLightColorsEmphasis12 = "#b10142";
426
- export const CvThemeLightColorsEmphasis16 = "#b10142";
427
- export const CvThemeLightColorsOnEmphasis8 = "#ffffff";
428
- export const CvThemeLightColorsOnEmphasis12 = "#ffffff";
429
- export const CvThemeLightColorsOnEmphasis16 = "#ffffff";
430
- export const CvThemeLightColorsOnEmphasisContainer8 = "#120007";
431
- export const CvThemeLightColorsOnEmphasisContainer12 = "#120007";
432
- export const CvThemeLightColorsOnEmphasisContainer16 = "#180e00";
433
- export const CvThemeLightColorsInverseOnSurface12 = "#f6f3f6";
434
- export const CvThemeLightColorsInversePrimary12 = "#bac3ff";
435
- export const CvThemeLightColorsInverseOnSurface8 = "#f6f3f6";
436
- export const CvThemeLightColorsInversePrimary8 = "#bac3ff";
437
- export const CvThemeLightColorsInversePrimary16 = "#bac3ff";
438
- export const CvThemeLightColorsInverseOnSurface16 = "#f6f3f6";
439
- export const CvThemeLightColorsOnPrimary74 = "#ffffff";
440
- export const CvThemeLightColorsOnSurface74 = "#00233c";
441
- export const CvThemeLightColorsTertiary8 = "#ff5f02";
442
- export const CvThemeLightColorsTertiary12 = "#ff5f02";
443
- export const CvThemeLightColorsTertiary16 = "#ff5f02";
444
- export const CvThemeLightColorsSecondary8 = "#00233c";
445
- export const CvThemeLightColorsSecondary12 = "#00233c";
446
- export const CvThemeLightColorsSecondary16 = "#00233c";
447
- export const CvThemeLightColorsOnSecondary74 = "#ffffff";
388
+ export const CvThemeLightColorsPositive16 = "rgba(3, 102, 0, 0.16)";
389
+ export const CvThemeLightColorsCaution16 = "rgba(243, 136, 0, 0.16)";
390
+ export const CvThemeLightColorsNegative12 = "rgba(174, 18, 9, 0.12)";
391
+ export const CvThemeLightColorsOnSecondaryContainer12 = "rgba(0, 29, 51, 0.12)";
392
+ export const CvThemeLightColorsOnPrimary16 = "rgba(255, 255, 255, 0.16)";
393
+ export const CvThemeLightColorsOnPrimaryContainer8 = "rgba(0, 17, 90, 0.08)";
394
+ export const CvThemeLightColorsOnPrimaryContainer16 = "rgba(0, 17, 90, 0.16)";
395
+ export const CvThemeLightColorsOnSecondary8 = "rgba(255, 255, 255, 0.08)";
396
+ export const CvThemeLightColorsOnSecondary12 = "rgba(255, 255, 255, 0.12)";
397
+ export const CvThemeLightColorsOnSecondary16 = "rgba(255, 255, 255, 0.16)";
398
+ export const CvThemeLightColorsOnTertiary8 = "rgba(255, 255, 255, 0.08)";
399
+ export const CvThemeLightColorsOnTertiary12 = "rgba(255, 255, 255, 0.12)";
400
+ export const CvThemeLightColorsOnTertiary16 = "rgba(255, 255, 255, 0.16)";
401
+ export const CvThemeLightColorsOnTertiaryContainer16 = "rgba(72, 19, 0, 0.16)";
402
+ export const CvThemeLightColorsOnSurfaceVariant16 = "rgba(89, 98, 123, 0.16)";
403
+ export const CvThemeLightColorsNegative8 = "rgba(174, 18, 9, 0.08)";
404
+ export const CvThemeLightColorsNegative16 = "rgba(174, 18, 9, 0.16)";
405
+ export const CvThemeLightColorsPositive12 = "rgba(3, 102, 0, 0.12)";
406
+ export const CvThemeLightColorsPositive8 = "rgba(3, 102, 0, 0.08)";
407
+ export const CvThemeLightColorsOnPositive8 = "rgba(255, 255, 255, 0.08)";
408
+ export const CvThemeLightColorsOnPositive12 = "rgba(255, 255, 255, 0.12)";
409
+ export const CvThemeLightColorsOnPositive16 = "rgba(255, 255, 255, 0.16)";
410
+ export const CvThemeLightColorsOnPositiveContainer8 = "rgba(0, 10, 0, 0.08)";
411
+ export const CvThemeLightColorsOnPositiveContainer12 = "rgba(0, 10, 0, 0.12)";
412
+ export const CvThemeLightColorsOnPositiveContainer16 = "rgba(0, 10, 0, 0.16)";
413
+ export const CvThemeLightColorsCaution12 = "rgba(243, 136, 0, 0.12)";
414
+ export const CvThemeLightColorsCaution8 = "rgba(243, 136, 0, 0.08)";
415
+ export const CvThemeLightColorsOnCaution8 = "rgba(255, 255, 255, 0.08)";
416
+ export const CvThemeLightColorsOnCaution12 = "rgba(255, 255, 255, 0.12)";
417
+ export const CvThemeLightColorsOnCaution16 = "rgba(255, 255, 255, 0.16)";
418
+ export const CvThemeLightColorsOnNegative8 = "rgba(255, 255, 255, 0.08)";
419
+ export const CvThemeLightColorsOnNegative12 = "rgba(255, 255, 255, 0.12)";
420
+ export const CvThemeLightColorsOnNegative16 = "rgba(255, 255, 255, 0.16)";
421
+ export const CvThemeLightColorsOnCautionContainer8 = "rgba(24, 14, 0, 0.08)";
422
+ export const CvThemeLightColorsOnCautionContainer12 = "rgba(24, 14, 0, 0.12)";
423
+ export const CvThemeLightColorsOnCautionContainer16 = "rgba(24, 14, 0, 0.16)";
424
+ export const CvThemeLightColorsEmphasis8 = "rgba(177, 1, 66, 0.08)";
425
+ export const CvThemeLightColorsEmphasis12 = "rgba(177, 1, 66, 0.12)";
426
+ export const CvThemeLightColorsEmphasis16 = "rgba(177, 1, 66, 0.16)";
427
+ export const CvThemeLightColorsOnEmphasis8 = "rgba(255, 255, 255, 0.08)";
428
+ export const CvThemeLightColorsOnEmphasis12 = "rgba(255, 255, 255, 0.12)";
429
+ export const CvThemeLightColorsOnEmphasis16 = "rgba(255, 255, 255, 0.16)";
430
+ export const CvThemeLightColorsOnEmphasisContainer8 = "rgba(18, 0, 7, 0.08)";
431
+ export const CvThemeLightColorsOnEmphasisContainer12 = "rgba(18, 0, 7, 0.12)";
432
+ export const CvThemeLightColorsOnEmphasisContainer16 = "rgba(24, 14, 0, 0.16)";
433
+ export const CvThemeLightColorsInverseOnSurface12 = "rgba(246, 243, 246, 0.12)";
434
+ export const CvThemeLightColorsInversePrimary12 = "rgba(186, 195, 255, 0.12)";
435
+ export const CvThemeLightColorsInverseOnSurface8 = "rgba(246, 243, 246, 0.08)";
436
+ export const CvThemeLightColorsInversePrimary8 = "rgba(186, 195, 255, 0.08)";
437
+ export const CvThemeLightColorsInversePrimary16 = "rgba(186, 195, 255, 0.16)";
438
+ export const CvThemeLightColorsInverseOnSurface16 = "rgba(246, 243, 246, 0.12)";
439
+ export const CvThemeLightColorsOnPrimary74 = "rgba(255, 255, 255, 0.74)";
440
+ export const CvThemeLightColorsOnSurface74 = "rgba(0, 35, 60, 0.74)";
441
+ export const CvThemeLightColorsTertiary8 = "rgba(255, 95, 2, 0.08)";
442
+ export const CvThemeLightColorsTertiary12 = "rgba(255, 95, 2, 0.12)";
443
+ export const CvThemeLightColorsTertiary16 = "rgba(255, 95, 2, 0.16)";
444
+ export const CvThemeLightColorsSecondary8 = "rgba(0, 35, 60, 0.08)";
445
+ export const CvThemeLightColorsSecondary12 = "rgba(0, 35, 60, 0.12)";
446
+ export const CvThemeLightColorsSecondary16 = "rgba(0, 35, 60, 0.16)";
447
+ export const CvThemeLightColorsOnSecondary74 = "rgba(255, 255, 255, 0.74)";
448
448
  export const CvThemeLightColorsInverseSecondary = "#bcd5f6";
449
- export const CvThemeLightColorsInverseSecondary8 = "#bcd5f6";
450
- export const CvThemeLightColorsInverseSecondary12 = "#bcd5f6";
451
- export const CvThemeLightColorsInverseSecondary16 = "#c3c5dd";
452
- export const CvThemeLightColorsOnTertiary74 = "#ffffff";
449
+ export const CvThemeLightColorsInverseSecondary8 = "rgba(188, 213, 246, 0.08)";
450
+ export const CvThemeLightColorsInverseSecondary12 = "rgba(188, 213, 246, 0.12)";
451
+ export const CvThemeLightColorsInverseSecondary16 = "rgba(195, 197, 221, 0.16)";
452
+ export const CvThemeLightColorsOnTertiary74 = "rgba(255, 255, 255, 0.74)";
453
453
  export const CvThemeLightColorsInverseTertiary = "#ff5f02";
454
- export const CvThemeLightColorsInverseTertiary8 = "#ff5f02";
455
- export const CvThemeLightColorsInverseTertiary12 = "#ff5f02";
456
- export const CvThemeLightColorsInverseTertiary16 = "#ff5f02";
457
- export const CvThemeLightColorsOnNegativeContainer8 = "#110201";
458
- export const CvThemeLightColorsOnNegativeContainer12 = "#110201";
459
- export const CvThemeLightColorsOnNegativeContainer16 = "#110201";
460
- export const CvThemeLightColorsOnSurface4 = "#00233c";
461
- export const CvThemeLightColorsOnSurfaceVariant4 = "#59627b";
462
- export const CvThemeLightColorsInverseOnSurface4 = "#f6f3f6";
463
- export const CvThemeLightColorsPrimary4 = "#3053f4";
464
- export const CvThemeLightColorsOnPrimary4 = "#ffffff";
465
- export const CvThemeLightColorsOnPrimaryContainer4 = "#00115a";
466
- export const CvThemeLightColorsInversePrimary4 = "#bac3ff";
467
- export const CvThemeLightColorsSecondary4 = "#00233c";
468
- export const CvThemeLightColorsOnSecondary4 = "#ffffff";
469
- export const CvThemeLightColorsOnSecondaryContainer4 = "#001d33";
470
- export const CvThemeLightColorsInverseSecondary4 = "#bcd5f6";
471
- export const CvThemeLightColorsTertiary4 = "#ff5f02";
472
- export const CvThemeLightColorsOnTertiary4 = "#ffffff";
473
- export const CvThemeLightColorsOnTertiaryContainer4 = "#481300";
474
- export const CvThemeLightColorsInverseTertiary4 = "#ff5f02";
475
- export const CvThemeLightColorsNegative4 = "#ae1209";
476
- export const CvThemeLightColorsOnNegative4 = "#ffffff";
477
- export const CvThemeLightColorsOnNegativeContainer4 = "#110201";
478
- export const CvThemeLightColorsPositive4 = "#036600";
479
- export const CvThemeLightColorsOnPositive4 = "#ffffff";
480
- export const CvThemeLightColorsOnPositiveContainer4 = "#000a00";
481
- export const CvThemeLightColorsCaution4 = "#f38800";
482
- export const CvThemeLightColorsOnCaution4 = "#ffffff";
483
- export const CvThemeLightColorsOnCautionContainer4 = "#180e00";
484
- export const CvThemeLightColorsEmphasis4 = "#b10142";
485
- export const CvThemeLightColorsOnEmphasis4 = "#ffffff";
486
- export const CvThemeLightColorsOnEmphasisContainer4 = "#120007";
487
- export const CvThemeLightColorsOnSurface20 = "#00233c";
488
- export const CvThemeLightColorsPrimary20 = "#3053f4";
489
- export const CvThemeLightColorsNegative20 = "#ae1209";
490
- export const CvThemeLightColorsPositive20 = "#036600";
491
- export const CvThemeLightColorsCaution20 = "#f38800";
492
- export const CvThemeLightColorsEmphasis20 = "#b10142";
493
- export const CvThemeLightColorsPrimary24 = "#3053f4";
494
- export const CvThemeLightColorsNegative24 = "#ae1209";
495
- export const CvThemeLightColorsPositive24 = "#036600";
496
- export const CvThemeLightColorsCaution24 = "#f38800";
497
- export const CvThemeLightColorsEmphasis24 = "#b10142";
454
+ export const CvThemeLightColorsInverseTertiary8 = "rgba(255, 95, 2, 0.08)";
455
+ export const CvThemeLightColorsInverseTertiary12 = "rgba(255, 95, 2, 0.12)";
456
+ export const CvThemeLightColorsInverseTertiary16 = "rgba(255, 95, 2, 0.16)";
457
+ export const CvThemeLightColorsOnNegativeContainer8 = "rgba(17, 2, 1, 0.08)";
458
+ export const CvThemeLightColorsOnNegativeContainer12 = "rgba(17, 2, 1, 0.12)";
459
+ export const CvThemeLightColorsOnNegativeContainer16 = "rgba(17, 2, 1, 0.16)";
460
+ export const CvThemeLightColorsOnSurface4 = "rgba(0, 35, 60, 0.04)";
461
+ export const CvThemeLightColorsOnSurfaceVariant4 = "rgba(89, 98, 123, 0.04)";
462
+ export const CvThemeLightColorsInverseOnSurface4 = "rgba(246, 243, 246, 0.04)";
463
+ export const CvThemeLightColorsPrimary4 = "rgba(48, 83, 244, 0.04)";
464
+ export const CvThemeLightColorsOnPrimary4 = "rgba(255, 255, 255, 0.04)";
465
+ export const CvThemeLightColorsOnPrimaryContainer4 = "rgba(0, 17, 90, 0.04)";
466
+ export const CvThemeLightColorsInversePrimary4 = "rgba(186, 195, 255, 0.04)";
467
+ export const CvThemeLightColorsSecondary4 = "rgba(0, 35, 60, 0.04)";
468
+ export const CvThemeLightColorsOnSecondary4 = "rgba(255, 255, 255, 0.04)";
469
+ export const CvThemeLightColorsOnSecondaryContainer4 = "rgba(0, 29, 51, 0.04)";
470
+ export const CvThemeLightColorsInverseSecondary4 = "rgba(188, 213, 246, 0.04)";
471
+ export const CvThemeLightColorsTertiary4 = "rgba(255, 95, 2, 0.04)";
472
+ export const CvThemeLightColorsOnTertiary4 = "rgba(255, 255, 255, 0.04)";
473
+ export const CvThemeLightColorsOnTertiaryContainer4 = "rgba(72, 19, 0, 0.04)";
474
+ export const CvThemeLightColorsInverseTertiary4 = "rgba(255, 95, 2, 0.04)";
475
+ export const CvThemeLightColorsNegative4 = "rgba(174, 18, 9, 0.04)";
476
+ export const CvThemeLightColorsOnNegative4 = "rgba(255, 255, 255, 0.04)";
477
+ export const CvThemeLightColorsOnNegativeContainer4 = "rgba(17, 2, 1, 0.04)";
478
+ export const CvThemeLightColorsPositive4 = "rgba(3, 102, 0, 0.04)";
479
+ export const CvThemeLightColorsOnPositive4 = "rgba(255, 255, 255, 0.04)";
480
+ export const CvThemeLightColorsOnPositiveContainer4 = "rgba(0, 10, 0, 0.04)";
481
+ export const CvThemeLightColorsCaution4 = "rgba(243, 136, 0, 0.04)";
482
+ export const CvThemeLightColorsOnCaution4 = "rgba(255, 255, 255, 0.04)";
483
+ export const CvThemeLightColorsOnCautionContainer4 = "rgba(24, 14, 0, 0.04)";
484
+ export const CvThemeLightColorsEmphasis4 = "rgba(177, 1, 66, 0.04)";
485
+ export const CvThemeLightColorsOnEmphasis4 = "rgba(255, 255, 255, 0.04)";
486
+ export const CvThemeLightColorsOnEmphasisContainer4 = "rgba(18, 0, 7, 0.04)";
487
+ export const CvThemeLightColorsOnSurface20 = "rgba(0, 35, 60, 0.2)";
488
+ export const CvThemeLightColorsPrimary20 = "rgba(48, 83, 244, 0.2)";
489
+ export const CvThemeLightColorsNegative20 = "rgba(174, 18, 9, 0.2)";
490
+ export const CvThemeLightColorsPositive20 = "rgba(3, 102, 0, 0.2)";
491
+ export const CvThemeLightColorsCaution20 = "rgba(243, 136, 0, 0.2)";
492
+ export const CvThemeLightColorsEmphasis20 = "rgba(177, 1, 66, 0.2)";
493
+ export const CvThemeLightColorsPrimary24 = "rgba(48, 83, 244, 0.24)";
494
+ export const CvThemeLightColorsNegative24 = "rgba(174, 18, 9, 0.24)";
495
+ export const CvThemeLightColorsPositive24 = "rgba(3, 102, 0, 0.24)";
496
+ export const CvThemeLightColorsCaution24 = "rgba(243, 136, 0, 0.24)";
497
+ export const CvThemeLightColorsEmphasis24 = "rgba(177, 1, 66, 0.24)";
498
498
  export const CvThemeLightColorsBackground = "#f8f9fb";
499
- export const CvThemeLightColorsSurfaceVariant8 = "#f8f9fb";
500
- export const CvThemeLightColorsSurfaceVariant12 = "#f8f9fb";
501
- export const CvThemeLightColorsSurfaceVariant16 = "#fdf9fc";
499
+ export const CvThemeLightColorsSurfaceVariant8 = "rgba(248, 249, 251, 0.08)";
500
+ export const CvThemeLightColorsSurfaceVariant12 = "rgba(248, 249, 251, 0.12)";
501
+ export const CvThemeLightColorsSurfaceVariant16 = "rgba(253, 249, 252, 0.16)";
502
502
  export const CvThemeLightColorsLogo = "#ff5f02";
503
- export const CvThemeLightColorsOnSurfaceVariant38 = "#59627b";
504
- export const CvThemeLightColorsOnPrimary38 = "#ffffff";
505
- export const CvThemeLightColorsOnSecondary38 = "#ffffff";
506
- export const CvThemeLightColorsOnSecondaryContainer38 = "#001d33";
507
- export const CvThemeLightColorsOnSecondaryContainer74 = "#001d33";
508
- export const CvThemeLightColorsOnTertiary38 = "#ffffff";
509
- export const CvThemeLightColorsOnTertiaryContainer38 = "#481300";
510
- export const CvThemeLightColorsOnTertiaryContainer74 = "#481300";
511
- export const CvThemeLightColorsInverseTertiary38 = "#ff5f02";
512
- export const CvThemeLightColorsInverseTertiary74 = "#ff5f02";
513
- export const CvThemeLightColorsNegative38 = "#ae1209";
514
- export const CvThemeLightColorsNegative74 = "#ae1209";
515
- export const CvThemeLightColorsOnNegative38 = "#ffffff";
516
- export const CvThemeLightColorsOnNegative74 = "#ffffff";
517
- export const CvThemeLightColorsOnNegativeContainer38 = "#110201";
518
- export const CvThemeLightColorsOnNegativeContainer74 = "#110201";
519
- export const CvThemeLightColorsPositive38 = "#036600";
520
- export const CvThemeLightColorsPositive74 = "#036600";
521
- export const CvThemeLightColorsOnPositive38 = "#ffffff";
522
- export const CvThemeLightColorsOnPositive74 = "#ffffff";
523
- export const CvThemeLightColorsOnPositiveContainer38 = "#000a00";
524
- export const CvThemeLightColorsOnPositiveContainer74 = "#000a00";
525
- export const CvThemeLightColorsCaution38 = "#f38800";
526
- export const CvThemeLightColorsCaution74 = "#f38800";
527
- export const CvThemeLightColorsOnCaution38 = "#ffffff";
528
- export const CvThemeLightColorsOnCaution74 = "#ffffff";
529
- export const CvThemeLightColorsOnCautionContainer38 = "#180e00";
530
- export const CvThemeLightColorsOnCautionContainer74 = "#180e00";
531
- export const CvThemeLightColorsEmphasis38 = "#b10142";
532
- export const CvThemeLightColorsEmphasis74 = "#b10142";
533
- export const CvThemeLightColorsOnEmphasis38 = "#ffffff";
534
- export const CvThemeLightColorsOnEmphasis74 = "#ffffff";
535
- export const CvThemeLightColorsOnEmphasisContainer38 = "#180e00";
536
- export const CvThemeLightColorsOnEmphasisContainer74 = "#180e00";
537
- export const CvThemeLightColorsOnPrimaryContainer38 = "#00115a";
538
- export const CvThemeLightColorsOnPrimaryContainer74 = "#00115a";
539
- export const CvThemeLightColorsPrimary38 = "#3053f4";
540
- export const CvThemeLightColorsPrimary74 = "#3053f4";
503
+ export const CvThemeLightColorsOnSurfaceVariant38 = "rgba(89, 98, 123, 0.38)";
504
+ export const CvThemeLightColorsOnPrimary38 = "rgba(255, 255, 255, 0.38)";
505
+ export const CvThemeLightColorsOnSecondary38 = "rgba(255, 255, 255, 0.38)";
506
+ export const CvThemeLightColorsOnSecondaryContainer38 = "rgba(0, 29, 51, 0.38)";
507
+ export const CvThemeLightColorsOnSecondaryContainer74 = "rgba(0, 29, 51, 0.74)";
508
+ export const CvThemeLightColorsOnTertiary38 = "rgba(255, 255, 255, 0.38)";
509
+ export const CvThemeLightColorsOnTertiaryContainer38 = "rgba(72, 19, 0, 0.38)";
510
+ export const CvThemeLightColorsOnTertiaryContainer74 = "rgba(72, 19, 0, 0.74)";
511
+ export const CvThemeLightColorsInverseTertiary38 = "rgba(255, 95, 2, 0.38)";
512
+ export const CvThemeLightColorsInverseTertiary74 = "rgba(255, 95, 2, 0.74)";
513
+ export const CvThemeLightColorsNegative38 = "rgba(174, 18, 9, 0.38)";
514
+ export const CvThemeLightColorsNegative74 = "rgba(174, 18, 9, 0.74)";
515
+ export const CvThemeLightColorsOnNegative38 = "rgba(255, 255, 255, 0.38)";
516
+ export const CvThemeLightColorsOnNegative74 = "rgba(255, 255, 255, 0.74)";
517
+ export const CvThemeLightColorsOnNegativeContainer38 = "rgba(17, 2, 1, 0.38)";
518
+ export const CvThemeLightColorsOnNegativeContainer74 = "rgba(17, 2, 1, 0.74)";
519
+ export const CvThemeLightColorsPositive38 = "rgba(3, 102, 0, 0.38)";
520
+ export const CvThemeLightColorsPositive74 = "rgba(3, 102, 0, 0.74)";
521
+ export const CvThemeLightColorsOnPositive38 = "rgba(255, 255, 255, 0.38)";
522
+ export const CvThemeLightColorsOnPositive74 = "rgba(255, 255, 255, 0.74)";
523
+ export const CvThemeLightColorsOnPositiveContainer38 = "rgba(0, 10, 0, 0.38)";
524
+ export const CvThemeLightColorsOnPositiveContainer74 = "rgba(0, 10, 0, 0.74)";
525
+ export const CvThemeLightColorsCaution38 = "rgba(243, 136, 0, 0.38)";
526
+ export const CvThemeLightColorsCaution74 = "rgba(243, 136, 0, 0.74)";
527
+ export const CvThemeLightColorsOnCaution38 = "rgba(255, 255, 255, 0.38)";
528
+ export const CvThemeLightColorsOnCaution74 = "rgba(255, 255, 255, 0.74)";
529
+ export const CvThemeLightColorsOnCautionContainer38 = "rgba(24, 14, 0, 0.38)";
530
+ export const CvThemeLightColorsOnCautionContainer74 = "rgba(24, 14, 0, 0.74)";
531
+ export const CvThemeLightColorsEmphasis38 = "rgba(177, 1, 66, 0.38)";
532
+ export const CvThemeLightColorsEmphasis74 = "rgba(177, 1, 66, 0.74)";
533
+ export const CvThemeLightColorsOnEmphasis38 = "rgba(255, 255, 255, 0.38)";
534
+ export const CvThemeLightColorsOnEmphasis74 = "rgba(255, 255, 255, 0.74)";
535
+ export const CvThemeLightColorsOnEmphasisContainer38 = "rgba(24, 14, 0, 0.38)";
536
+ export const CvThemeLightColorsOnEmphasisContainer74 = "rgba(24, 14, 0, 0.74)";
537
+ export const CvThemeLightColorsOnPrimaryContainer38 = "rgba(0, 17, 90, 0.38)";
538
+ export const CvThemeLightColorsOnPrimaryContainer74 = "rgba(0, 17, 90, 0.74)";
539
+ export const CvThemeLightColorsPrimary38 = "rgba(48, 83, 244, 0.38)";
540
+ export const CvThemeLightColorsPrimary74 = "rgba(48, 83, 244, 0.74)";
541
541
  export const CvThemeLightColorsBrand = "#ff5f02";
542
542
  export const CvThemeDarkPalettesDigitalBlue98 = "#efefff";
543
543
  export const CvThemeDarkPalettesDigitalBlue100 = "#ffffff";
@@ -757,192 +757,224 @@ export const CvThemeDarkColorsOnCautionContainer = "#ffcd9e";
757
757
  export const CvThemeDarkColorsOutline = "#8f8e97";
758
758
  export const CvThemeDarkColorsOutlineVariant = "#3e3e41";
759
759
  export const CvThemeDarkColorsShadow = "#000000";
760
- export const CvThemeDarkColorsScrim = "#000000";
760
+ export const CvThemeDarkColorsScrim = "rgba(0, 0, 0, 0.32)";
761
761
  export const CvThemeDarkColorsPrimaryFixed = "#dde1ff";
762
762
  export const CvThemeDarkColorsPrimaryFixedDim = "#bac3ff";
763
763
  export const CvThemeDarkColorsSecondaryFixed = "#dfe1f9";
764
764
  export const CvThemeDarkColorsSecondaryFixedDim = "#c3c5dd";
765
765
  export const CvThemeDarkColorsTertiaryFixed = "#f79e79";
766
766
  export const CvThemeDarkColorsTertiaryFixedDim = "#f37440";
767
- export const CvThemeDarkColorsPrimary8 = "#bac3ff";
768
- export const CvThemeDarkColorsPrimary12 = "#bac3ff";
769
- export const CvThemeDarkColorsOnSurface8 = "#ebe8ec";
770
- export const CvThemeDarkColorsOnSurface12 = "#ebe8ec";
767
+ export const CvThemeDarkColorsPrimary8 = "rgba(186, 195, 255, 0.08)";
768
+ export const CvThemeDarkColorsPrimary12 = "rgba(186, 195, 255, 0.12)";
769
+ export const CvThemeDarkColorsOnSurface8 = "rgba(235, 232, 236, 0.08)";
770
+ export const CvThemeDarkColorsOnSurface12 = "rgba(235, 232, 236, 0.12)";
771
771
  export const CvThemeDarkColorsOnPrimaryContainer = "#dde1ff";
772
772
  export const CvThemeDarkColorsInversePrimary = "#3053f4";
773
- export const CvThemeDarkColorsOnSurface38 = "#ebe8ec";
774
- export const CvThemeDarkColorsOnSurface16 = "#ebe8ec";
775
- export const CvThemeDarkColorsOnPrimary12 = "#111a28";
776
- export const CvThemeDarkColorsOnPrimary8 = "#111a28";
777
- export const CvThemeDarkColorsPrimary16 = "#bac3ff";
778
- export const CvThemeDarkColorsOnSurfaceVariant8 = "#d5d3d8";
779
- export const CvThemeDarkColorsOnTertiaryContainer8 = "#fef1ec";
780
- export const CvThemeDarkColorsOnTertiaryContainer12 = "#fef1ec";
781
- export const CvThemeDarkColorsOnPrimaryContainer12 = "#dde1ff";
782
- export const CvThemeDarkColorsOnSurfaceVariant12 = "#d5d3d8";
783
- export const CvThemeDarkColorsOnSecondaryContainer8 = "#5b5d72";
784
- export const CvThemeDarkColorsOnSecondaryContainer16 = "#616378";
785
- export const CvThemeDarkColorsOutline8 = "#8f8e97";
786
- export const CvThemeDarkColorsOutline12 = "#8f8e97";
787
- export const CvThemeDarkColorsOutline16 = "#8f8e97";
773
+ export const CvThemeDarkColorsOnSurface38 = "rgba(235, 232, 236, 0.38)";
774
+ export const CvThemeDarkColorsOnSurface16 = "rgba(235, 232, 236, 0.16)";
775
+ export const CvThemeDarkColorsOnPrimary12 = "rgba(17, 26, 40, 0.12)";
776
+ export const CvThemeDarkColorsOnPrimary8 = "rgba(17, 26, 40, 0.08)";
777
+ export const CvThemeDarkColorsPrimary16 = "rgba(186, 195, 255, 0.16)";
778
+ export const CvThemeDarkColorsOnSurfaceVariant8 = "rgba(213, 211, 216, 0.08)";
779
+ export const CvThemeDarkColorsOnTertiaryContainer8 =
780
+ "rgba(254, 241, 236, 0.08)";
781
+ export const CvThemeDarkColorsOnTertiaryContainer12 =
782
+ "rgba(254, 241, 236, 0.12)";
783
+ export const CvThemeDarkColorsOnPrimaryContainer12 =
784
+ "rgba(221, 225, 255, 0.12)";
785
+ export const CvThemeDarkColorsOnSurfaceVariant12 = "rgba(213, 211, 216, 0.12)";
786
+ export const CvThemeDarkColorsOnSecondaryContainer8 = "rgba(91, 93, 114, 0.08)";
787
+ export const CvThemeDarkColorsOnSecondaryContainer16 =
788
+ "rgba(97, 99, 120, 0.16)";
789
+ export const CvThemeDarkColorsOutline8 = "rgba(143, 142, 151, 0.08)";
790
+ export const CvThemeDarkColorsOutline12 = "rgba(143, 142, 151, 0.12)";
791
+ export const CvThemeDarkColorsOutline16 = "rgba(143, 142, 151, 0.16)";
788
792
  export const CvThemeDarkColorsSurfaceVariant = "#000000";
789
793
  export const CvThemeDarkColorsEmphasis = "#cc809c";
790
794
  export const CvThemeDarkColorsEmphasisContainer = "#66404e";
791
795
  export const CvThemeDarkColorsOnEmphasis = "#191013";
792
796
  export const CvThemeDarkColorsOnEmphasisContainer = "#ffd9e7";
793
- export const CvThemeDarkColorsPositive16 = "#91d890";
794
- export const CvThemeDarkColorsCaution16 = "#ffb775";
795
- export const CvThemeDarkColorsNegative12 = "#fd7d69";
796
- export const CvThemeDarkColorsOnSecondaryContainer12 = "#5b5d72";
797
- export const CvThemeDarkColorsOnPrimary16 = "#111a28";
798
- export const CvThemeDarkColorsOnPrimaryContainer8 = "#dde1ff";
799
- export const CvThemeDarkColorsOnPrimaryContainer16 = "#dde1ff";
800
- export const CvThemeDarkColorsOnSecondary8 = "#171a2c";
801
- export const CvThemeDarkColorsOnSecondary12 = "#171a2c";
802
- export const CvThemeDarkColorsOnSecondary16 = "#171a2c";
803
- export const CvThemeDarkColorsOnTertiary8 = "#612e1a";
804
- export const CvThemeDarkColorsOnTertiary12 = "#612e1a";
805
- export const CvThemeDarkColorsOnTertiary16 = "#612e1a";
806
- export const CvThemeDarkColorsOnTertiaryContainer16 = "#fef1ec";
807
- export const CvThemeDarkColorsOnSurfaceVariant16 = "#d5d3d8";
808
- export const CvThemeDarkColorsNegative8 = "#fd7d69";
809
- export const CvThemeDarkColorsNegative16 = "#fd7d69";
810
- export const CvThemeDarkColorsPositive12 = "#91d890";
811
- export const CvThemeDarkColorsPositive8 = "#91d890";
812
- export const CvThemeDarkColorsOnPositive8 = "#112611";
813
- export const CvThemeDarkColorsOnPositive12 = "#112611";
814
- export const CvThemeDarkColorsOnPositive16 = "#112611";
815
- export const CvThemeDarkColorsOnPositiveContainer8 = "#91d890";
816
- export const CvThemeDarkColorsOnPositiveContainer12 = "#91d890";
817
- export const CvThemeDarkColorsOnPositiveContainer16 = "#91d890";
818
- export const CvThemeDarkColorsCaution12 = "#ffb775";
819
- export const CvThemeDarkColorsCaution8 = "#ffb775";
820
- export const CvThemeDarkColorsOnCaution8 = "#66492f";
821
- export const CvThemeDarkColorsOnCaution12 = "#66492f";
822
- export const CvThemeDarkColorsOnCaution16 = "#66492f";
823
- export const CvThemeDarkColorsOnNegative8 = "#331915";
824
- export const CvThemeDarkColorsOnNegative12 = "#331915";
825
- export const CvThemeDarkColorsOnNegative16 = "#331915";
826
- export const CvThemeDarkColorsOnCautionContainer8 = "#19120c";
827
- export const CvThemeDarkColorsOnCautionContainer12 = "#19120c";
828
- export const CvThemeDarkColorsOnCautionContainer16 = "#19120c";
829
- export const CvThemeDarkColorsEmphasis8 = "#cc809c";
830
- export const CvThemeDarkColorsEmphasis12 = "#cc809c";
831
- export const CvThemeDarkColorsEmphasis16 = "#cc809c";
832
- export const CvThemeDarkColorsOnEmphasis8 = "#191013";
833
- export const CvThemeDarkColorsOnEmphasis12 = "#191013";
834
- export const CvThemeDarkColorsOnEmphasis16 = "#191013";
835
- export const CvThemeDarkColorsOnEmphasisContainer8 = "#ffd9e7";
836
- export const CvThemeDarkColorsOnEmphasisContainer12 = "#ffd9e7";
837
- export const CvThemeDarkColorsOnEmphasisContainer16 = "#ffd9e7";
838
- export const CvThemeDarkColorsInverseOnSurface12 = "#3e3e41";
839
- export const CvThemeDarkColorsInversePrimary12 = "#3053f4";
840
- export const CvThemeDarkColorsInverseOnSurface8 = "#3e3e41";
841
- export const CvThemeDarkColorsInversePrimary8 = "#3053f4";
842
- export const CvThemeDarkColorsInversePrimary16 = "#3053f4";
843
- export const CvThemeDarkColorsInverseOnSurface16 = "#3e3e41";
844
- export const CvThemeDarkColorsOnPrimary74 = "#111a28";
845
- export const CvThemeDarkColorsOnSurface74 = "#ebe8ec";
846
- export const CvThemeDarkColorsTertiary8 = "#ff5f02";
847
- export const CvThemeDarkColorsTertiary12 = "#ff5f02";
848
- export const CvThemeDarkColorsTertiary16 = "#ff5f02";
849
- export const CvThemeDarkColorsSecondary8 = "#c3c5dd";
850
- export const CvThemeDarkColorsSecondary12 = "#c3c5dd";
851
- export const CvThemeDarkColorsSecondary16 = "#c3c5dd";
852
- export const CvThemeDarkColorsOnSecondary74 = "#171a2c";
797
+ export const CvThemeDarkColorsPositive16 = "rgba(145, 216, 144, 0.16)";
798
+ export const CvThemeDarkColorsCaution16 = "rgba(255, 183, 117, 0.16)";
799
+ export const CvThemeDarkColorsNegative12 = "rgba(253, 125, 105, 0.12)";
800
+ export const CvThemeDarkColorsOnSecondaryContainer12 =
801
+ "rgba(91, 93, 114, 0.12)";
802
+ export const CvThemeDarkColorsOnPrimary16 = "rgba(17, 26, 40, 0.16)";
803
+ export const CvThemeDarkColorsOnPrimaryContainer8 = "rgba(221, 225, 255, 0.08)";
804
+ export const CvThemeDarkColorsOnPrimaryContainer16 =
805
+ "rgba(221, 225, 255, 0.16)";
806
+ export const CvThemeDarkColorsOnSecondary8 = "rgba(23, 26, 44, 0.08)";
807
+ export const CvThemeDarkColorsOnSecondary12 = "rgba(23, 26, 44, 0.12)";
808
+ export const CvThemeDarkColorsOnSecondary16 = "rgba(23, 26, 44, 0.16)";
809
+ export const CvThemeDarkColorsOnTertiary8 = "rgba(97, 46, 26, 0.08)";
810
+ export const CvThemeDarkColorsOnTertiary12 = "rgba(97, 46, 26, 0.12)";
811
+ export const CvThemeDarkColorsOnTertiary16 = "rgba(97, 46, 26, 0.16)";
812
+ export const CvThemeDarkColorsOnTertiaryContainer16 =
813
+ "rgba(254, 241, 236, 0.16)";
814
+ export const CvThemeDarkColorsOnSurfaceVariant16 = "rgba(213, 211, 216, 0.16)";
815
+ export const CvThemeDarkColorsNegative8 = "rgba(253, 125, 105, 0.08)";
816
+ export const CvThemeDarkColorsNegative16 = "rgba(253, 125, 105, 0.16)";
817
+ export const CvThemeDarkColorsPositive12 = "rgba(145, 216, 144, 0.12)";
818
+ export const CvThemeDarkColorsPositive8 = "rgba(145, 216, 144, 0.08)";
819
+ export const CvThemeDarkColorsOnPositive8 = "rgba(17, 38, 17, 0.08)";
820
+ export const CvThemeDarkColorsOnPositive12 = "rgba(17, 38, 17, 0.12)";
821
+ export const CvThemeDarkColorsOnPositive16 = "rgba(17, 38, 17, 0.16)";
822
+ export const CvThemeDarkColorsOnPositiveContainer8 =
823
+ "rgba(145, 216, 144, 0.08)";
824
+ export const CvThemeDarkColorsOnPositiveContainer12 =
825
+ "rgba(145, 216, 144, 0.12)";
826
+ export const CvThemeDarkColorsOnPositiveContainer16 =
827
+ "rgba(145, 216, 144, 0.16)";
828
+ export const CvThemeDarkColorsCaution12 = "rgba(255, 183, 117, 0.12)";
829
+ export const CvThemeDarkColorsCaution8 = "rgba(255, 183, 117, 0.08)";
830
+ export const CvThemeDarkColorsOnCaution8 = "rgba(102, 73, 47, 0.08)";
831
+ export const CvThemeDarkColorsOnCaution12 = "rgba(102, 73, 47, 0.12)";
832
+ export const CvThemeDarkColorsOnCaution16 = "rgba(102, 73, 47, 0.16)";
833
+ export const CvThemeDarkColorsOnNegative8 = "rgba(51, 25, 21, 0.08)";
834
+ export const CvThemeDarkColorsOnNegative12 = "rgba(51, 25, 21, 0.12)";
835
+ export const CvThemeDarkColorsOnNegative16 = "rgba(51, 25, 21, 0.16)";
836
+ export const CvThemeDarkColorsOnCautionContainer8 = "rgba(25, 18, 12, 0.08)";
837
+ export const CvThemeDarkColorsOnCautionContainer12 = "rgba(25, 18, 12, 0.12)";
838
+ export const CvThemeDarkColorsOnCautionContainer16 = "rgba(25, 18, 12, 0.16)";
839
+ export const CvThemeDarkColorsEmphasis8 = "rgba(204, 128, 156, 0.08)";
840
+ export const CvThemeDarkColorsEmphasis12 = "rgba(204, 128, 156, 0.12)";
841
+ export const CvThemeDarkColorsEmphasis16 = "rgba(204, 128, 156, 0.16)";
842
+ export const CvThemeDarkColorsOnEmphasis8 = "rgba(25, 16, 19, 0.08)";
843
+ export const CvThemeDarkColorsOnEmphasis12 = "rgba(25, 16, 19, 0.12)";
844
+ export const CvThemeDarkColorsOnEmphasis16 = "rgba(25, 16, 19, 0.16)";
845
+ export const CvThemeDarkColorsOnEmphasisContainer8 =
846
+ "rgba(255, 217, 231, 0.08)";
847
+ export const CvThemeDarkColorsOnEmphasisContainer12 =
848
+ "rgba(255, 217, 231, 0.12)";
849
+ export const CvThemeDarkColorsOnEmphasisContainer16 =
850
+ "rgba(255, 217, 231, 0.16)";
851
+ export const CvThemeDarkColorsInverseOnSurface12 = "rgba(62, 62, 65, 0.12)";
852
+ export const CvThemeDarkColorsInversePrimary12 = "rgba(48, 83, 244, 0.12)";
853
+ export const CvThemeDarkColorsInverseOnSurface8 = "rgba(62, 62, 65, 0.08)";
854
+ export const CvThemeDarkColorsInversePrimary8 = "rgba(48, 83, 244, 0.08)";
855
+ export const CvThemeDarkColorsInversePrimary16 = "rgba(48, 83, 244, 0.16)";
856
+ export const CvThemeDarkColorsInverseOnSurface16 = "rgba(62, 62, 65, 0.16)";
857
+ export const CvThemeDarkColorsOnPrimary74 = "rgba(17, 26, 40, 0.74)";
858
+ export const CvThemeDarkColorsOnSurface74 = "rgba(235, 232, 236, 0.74)";
859
+ export const CvThemeDarkColorsTertiary8 = "rgba(255, 95, 2, 0.08)";
860
+ export const CvThemeDarkColorsTertiary12 = "rgba(255, 95, 2, 0.12)";
861
+ export const CvThemeDarkColorsTertiary16 = "rgba(255, 95, 2, 0.16)";
862
+ export const CvThemeDarkColorsSecondary8 = "rgba(195, 197, 221, 0.08)";
863
+ export const CvThemeDarkColorsSecondary12 = "rgba(195, 197, 221, 0.12)";
864
+ export const CvThemeDarkColorsSecondary16 = "rgba(195, 197, 221, 0.16)";
865
+ export const CvThemeDarkColorsOnSecondary74 = "rgba(23, 26, 44, 0.74)";
853
866
  export const CvThemeDarkColorsInverseSecondary = "#5b5d72";
854
- export const CvThemeDarkColorsInverseSecondary8 = "#616378";
855
- export const CvThemeDarkColorsInverseSecondary12 = "#616378";
856
- export const CvThemeDarkColorsInverseSecondary16 = "#616378";
857
- export const CvThemeDarkColorsOnTertiary74 = "#612e1a";
867
+ export const CvThemeDarkColorsInverseSecondary8 = "rgba(97, 99, 120, 0.08)";
868
+ export const CvThemeDarkColorsInverseSecondary12 = "rgba(97, 99, 120, 0.12)";
869
+ export const CvThemeDarkColorsInverseSecondary16 = "rgba(97, 99, 120, 0.16)";
870
+ export const CvThemeDarkColorsOnTertiary74 = "rgba(97, 46, 26, 0.74)";
858
871
  export const CvThemeDarkColorsInverseTertiary = "#612e1a";
859
- export const CvThemeDarkColorsInverseTertiary8 = "#ff5f02";
860
- export const CvThemeDarkColorsInverseTertiary12 = "#ff5f02";
861
- export const CvThemeDarkColorsInverseTertiary16 = "#ff5f02";
862
- export const CvThemeDarkColorsOnNegativeContainer8 = "#ffac9f";
863
- export const CvThemeDarkColorsOnNegativeContainer12 = "#ffac9f";
864
- export const CvThemeDarkColorsOnNegativeContainer16 = "#ffac9f";
865
- export const CvThemeDarkColorsOnSurface4 = "#ebe8ec";
866
- export const CvThemeDarkColorsOnSurfaceVariant4 = "#d5d3d8";
867
- export const CvThemeDarkColorsInverseOnSurface4 = "#3e3e41";
868
- export const CvThemeDarkColorsPrimary4 = "#bac3ff";
869
- export const CvThemeDarkColorsOnPrimary4 = "#111a28";
870
- export const CvThemeDarkColorsOnPrimaryContainer4 = "#dde1ff";
871
- export const CvThemeDarkColorsInversePrimary4 = "#3053f4";
872
- export const CvThemeDarkColorsSecondary4 = "#c3c5dd";
873
- export const CvThemeDarkColorsOnSecondary4 = "#171a2c";
874
- export const CvThemeDarkColorsOnSecondaryContainer4 = "#5b5d72";
875
- export const CvThemeDarkColorsInverseSecondary4 = "#616378";
876
- export const CvThemeDarkColorsTertiary4 = "#ff5f02";
877
- export const CvThemeDarkColorsOnTertiary4 = "#612e1a";
878
- export const CvThemeDarkColorsOnTertiaryContainer4 = "#fef1ec";
879
- export const CvThemeDarkColorsInverseTertiary4 = "#ff5f02";
880
- export const CvThemeDarkColorsNegative4 = "#fd7d69";
881
- export const CvThemeDarkColorsOnNegative4 = "#331915";
882
- export const CvThemeDarkColorsOnNegativeContainer4 = "#ffac9f";
883
- export const CvThemeDarkColorsPositive4 = "#91d890";
884
- export const CvThemeDarkColorsOnPositive4 = "#112611";
885
- export const CvThemeDarkColorsOnPositiveContainer4 = "#91d890";
886
- export const CvThemeDarkColorsCaution4 = "#ffb775";
887
- export const CvThemeDarkColorsOnCaution4 = "#66492f";
888
- export const CvThemeDarkColorsOnCautionContainer4 = "#19120c";
889
- export const CvThemeDarkColorsEmphasis4 = "#cc809c";
890
- export const CvThemeDarkColorsOnEmphasis4 = "#191013";
891
- export const CvThemeDarkColorsOnEmphasisContainer4 = "#ffd9e7";
892
- export const CvThemeDarkColorsOnSurface20 = "#ebe8ec";
893
- export const CvThemeDarkColorsPrimary20 = "#bac3ff";
894
- export const CvThemeDarkColorsNegative20 = "#fd7d69";
895
- export const CvThemeDarkColorsPositive20 = "#91d890";
896
- export const CvThemeDarkColorsCaution20 = "#ffb775";
897
- export const CvThemeDarkColorsEmphasis20 = "#cc809c";
898
- export const CvThemeDarkColorsPrimary24 = "#bac3ff";
899
- export const CvThemeDarkColorsNegative24 = "#fd7d69";
900
- export const CvThemeDarkColorsPositive24 = "#91d890";
901
- export const CvThemeDarkColorsCaution24 = "#ffb775";
902
- export const CvThemeDarkColorsEmphasis24 = "#cc809c";
872
+ export const CvThemeDarkColorsInverseTertiary8 = "rgba(255, 95, 2, 0.08)";
873
+ export const CvThemeDarkColorsInverseTertiary12 = "rgba(255, 95, 2, 0.12)";
874
+ export const CvThemeDarkColorsInverseTertiary16 = "rgba(255, 95, 2, 0.16)";
875
+ export const CvThemeDarkColorsOnNegativeContainer8 =
876
+ "rgba(255, 172, 159, 0.08)";
877
+ export const CvThemeDarkColorsOnNegativeContainer12 =
878
+ "rgba(255, 172, 159, 0.12)";
879
+ export const CvThemeDarkColorsOnNegativeContainer16 =
880
+ "rgba(255, 172, 159, 0.16)";
881
+ export const CvThemeDarkColorsOnSurface4 = "rgba(235, 232, 236, 0.04)";
882
+ export const CvThemeDarkColorsOnSurfaceVariant4 = "rgba(213, 211, 216, 0.04)";
883
+ export const CvThemeDarkColorsInverseOnSurface4 = "rgba(62, 62, 65, 0.04)";
884
+ export const CvThemeDarkColorsPrimary4 = "rgba(186, 195, 255, 0.04)";
885
+ export const CvThemeDarkColorsOnPrimary4 = "rgba(17, 26, 40, 0.04)";
886
+ export const CvThemeDarkColorsOnPrimaryContainer4 = "rgba(221, 225, 255, 0.04)";
887
+ export const CvThemeDarkColorsInversePrimary4 = "rgba(48, 83, 244, 0.04)";
888
+ export const CvThemeDarkColorsSecondary4 = "rgba(195, 197, 221, 0.04)";
889
+ export const CvThemeDarkColorsOnSecondary4 = "rgba(23, 26, 44, 0.04)";
890
+ export const CvThemeDarkColorsOnSecondaryContainer4 = "rgba(91, 93, 114, 0.04)";
891
+ export const CvThemeDarkColorsInverseSecondary4 = "rgba(97, 99, 120, 0.04)";
892
+ export const CvThemeDarkColorsTertiary4 = "rgba(255, 95, 2, 0.04)";
893
+ export const CvThemeDarkColorsOnTertiary4 = "rgba(97, 46, 26, 0.04)";
894
+ export const CvThemeDarkColorsOnTertiaryContainer4 =
895
+ "rgba(254, 241, 236, 0.04)";
896
+ export const CvThemeDarkColorsInverseTertiary4 = "rgba(255, 95, 2, 0.04)";
897
+ export const CvThemeDarkColorsNegative4 = "rgba(253, 125, 105, 0.04)";
898
+ export const CvThemeDarkColorsOnNegative4 = "rgba(51, 25, 21, 0.04)";
899
+ export const CvThemeDarkColorsOnNegativeContainer4 =
900
+ "rgba(255, 172, 159, 0.04)";
901
+ export const CvThemeDarkColorsPositive4 = "rgba(145, 216, 144, 0.04)";
902
+ export const CvThemeDarkColorsOnPositive4 = "rgba(17, 38, 17, 0.04)";
903
+ export const CvThemeDarkColorsOnPositiveContainer4 =
904
+ "rgba(145, 216, 144, 0.04)";
905
+ export const CvThemeDarkColorsCaution4 = "rgba(255, 183, 117, 0.04)";
906
+ export const CvThemeDarkColorsOnCaution4 = "rgba(102, 73, 47, 0.04)";
907
+ export const CvThemeDarkColorsOnCautionContainer4 = "rgba(25, 18, 12, 0.04)";
908
+ export const CvThemeDarkColorsEmphasis4 = "rgba(204, 128, 156, 0.04)";
909
+ export const CvThemeDarkColorsOnEmphasis4 = "rgba(25, 16, 19, 0.04)";
910
+ export const CvThemeDarkColorsOnEmphasisContainer4 =
911
+ "rgba(255, 217, 231, 0.04)";
912
+ export const CvThemeDarkColorsOnSurface20 = "rgba(235, 232, 236, 0.2)";
913
+ export const CvThemeDarkColorsPrimary20 = "rgba(186, 195, 255, 0.2)";
914
+ export const CvThemeDarkColorsNegative20 = "rgba(253, 125, 105, 0.2)";
915
+ export const CvThemeDarkColorsPositive20 = "rgba(145, 216, 144, 0.2)";
916
+ export const CvThemeDarkColorsCaution20 = "rgba(255, 183, 117, 0.2)";
917
+ export const CvThemeDarkColorsEmphasis20 = "rgba(204, 128, 156, 0.2)";
918
+ export const CvThemeDarkColorsPrimary24 = "rgba(186, 195, 255, 0.24)";
919
+ export const CvThemeDarkColorsNegative24 = "rgba(253, 125, 105, 0.24)";
920
+ export const CvThemeDarkColorsPositive24 = "rgba(145, 216, 144, 0.24)";
921
+ export const CvThemeDarkColorsCaution24 = "rgba(255, 183, 117, 0.24)";
922
+ export const CvThemeDarkColorsEmphasis24 = "rgba(204, 128, 156, 0.24)";
903
923
  export const CvThemeDarkColorsBackground = "#000000";
904
- export const CvThemeDarkColorsSurfaceVariant8 = "#000000";
905
- export const CvThemeDarkColorsSurfaceVariant12 = "#000000";
906
- export const CvThemeDarkColorsSurfaceVariant16 = "#000000";
924
+ export const CvThemeDarkColorsSurfaceVariant8 = "rgba(0, 0, 0, 0.08)";
925
+ export const CvThemeDarkColorsSurfaceVariant12 = "rgba(0, 0, 0, 0.12)";
926
+ export const CvThemeDarkColorsSurfaceVariant16 = "rgba(0, 0, 0, 0.16)";
907
927
  export const CvThemeDarkColorsLogo = "#ffffff";
908
- export const CvThemeDarkColorsOnSurfaceVariant38 = "#d5d3d8";
909
- export const CvThemeDarkColorsOnPrimary38 = "#111a28";
910
- export const CvThemeDarkColorsOnSecondary38 = "#171a2c";
911
- export const CvThemeDarkColorsOnSecondaryContainer38 = "#616378";
912
- export const CvThemeDarkColorsOnSecondaryContainer74 = "#616378";
913
- export const CvThemeDarkColorsOnTertiary38 = "#612e1a";
914
- export const CvThemeDarkColorsOnTertiaryContainer38 = "#fef1ec";
915
- export const CvThemeDarkColorsOnTertiaryContainer74 = "#fef1ec";
916
- export const CvThemeDarkColorsInverseTertiary38 = "#ff5f02";
917
- export const CvThemeDarkColorsInverseTertiary74 = "#ff5f02";
918
- export const CvThemeDarkColorsNegative38 = "#fd7d69";
919
- export const CvThemeDarkColorsNegative74 = "#fd7d69";
920
- export const CvThemeDarkColorsOnNegative38 = "#331915";
921
- export const CvThemeDarkColorsOnNegative74 = "#331915";
922
- export const CvThemeDarkColorsOnNegativeContainer38 = "#ffac9f";
923
- export const CvThemeDarkColorsOnNegativeContainer74 = "#ffac9f";
924
- export const CvThemeDarkColorsPositive38 = "#91d890";
925
- export const CvThemeDarkColorsPositive74 = "#91d890";
926
- export const CvThemeDarkColorsOnPositive38 = "#112611";
927
- export const CvThemeDarkColorsOnPositive74 = "#112611";
928
- export const CvThemeDarkColorsOnPositiveContainer38 = "#91d890";
929
- export const CvThemeDarkColorsOnPositiveContainer74 = "#91d890";
930
- export const CvThemeDarkColorsCaution38 = "#ffb775";
931
- export const CvThemeDarkColorsCaution74 = "#ffb775";
932
- export const CvThemeDarkColorsOnCaution38 = "#66492f";
933
- export const CvThemeDarkColorsOnCaution74 = "#66492f";
934
- export const CvThemeDarkColorsOnCautionContainer38 = "#19120c";
935
- export const CvThemeDarkColorsOnCautionContainer74 = "#19120c";
936
- export const CvThemeDarkColorsEmphasis38 = "#cc809c";
937
- export const CvThemeDarkColorsEmphasis74 = "#cc809c";
938
- export const CvThemeDarkColorsOnEmphasis38 = "#191013";
939
- export const CvThemeDarkColorsOnEmphasis74 = "#191013";
940
- export const CvThemeDarkColorsOnEmphasisContainer38 = "#ffd9e7";
941
- export const CvThemeDarkColorsOnEmphasisContainer74 = "#ffd9e7";
942
- export const CvThemeDarkColorsOnPrimaryContainer38 = "#dde1ff";
943
- export const CvThemeDarkColorsOnPrimaryContainer74 = "#dde1ff";
944
- export const CvThemeDarkColorsPrimary38 = "#bac3ff";
945
- export const CvThemeDarkColorsPrimary74 = "#bac3ff";
928
+ export const CvThemeDarkColorsOnSurfaceVariant38 = "rgba(213, 211, 216, 0.38)";
929
+ export const CvThemeDarkColorsOnPrimary38 = "rgba(17, 26, 40, 0.38)";
930
+ export const CvThemeDarkColorsOnSecondary38 = "rgba(23, 26, 44, 0.38)";
931
+ export const CvThemeDarkColorsOnSecondaryContainer38 =
932
+ "rgba(97, 99, 120, 0.38)";
933
+ export const CvThemeDarkColorsOnSecondaryContainer74 =
934
+ "rgba(97, 99, 120, 0.74)";
935
+ export const CvThemeDarkColorsOnTertiary38 = "rgba(97, 46, 26, 0.38)";
936
+ export const CvThemeDarkColorsOnTertiaryContainer38 =
937
+ "rgba(254, 241, 236, 0.38)";
938
+ export const CvThemeDarkColorsOnTertiaryContainer74 =
939
+ "rgba(254, 241, 236, 0.74)";
940
+ export const CvThemeDarkColorsInverseTertiary38 = "rgba(255, 95, 2, 0.38)";
941
+ export const CvThemeDarkColorsInverseTertiary74 = "rgba(255, 95, 2, 0.74)";
942
+ export const CvThemeDarkColorsNegative38 = "rgba(253, 125, 105, 0.38)";
943
+ export const CvThemeDarkColorsNegative74 = "rgba(253, 125, 105, 0.74)";
944
+ export const CvThemeDarkColorsOnNegative38 = "rgba(51, 25, 21, 0.38)";
945
+ export const CvThemeDarkColorsOnNegative74 = "rgba(51, 25, 21, 0.74)";
946
+ export const CvThemeDarkColorsOnNegativeContainer38 =
947
+ "rgba(255, 172, 159, 0.38)";
948
+ export const CvThemeDarkColorsOnNegativeContainer74 =
949
+ "rgba(255, 172, 159, 0.74)";
950
+ export const CvThemeDarkColorsPositive38 = "rgba(145, 216, 144, 0.38)";
951
+ export const CvThemeDarkColorsPositive74 = "rgba(145, 216, 144, 0.74)";
952
+ export const CvThemeDarkColorsOnPositive38 = "rgba(17, 38, 17, 0.38)";
953
+ export const CvThemeDarkColorsOnPositive74 = "rgba(17, 38, 17, 0.74)";
954
+ export const CvThemeDarkColorsOnPositiveContainer38 =
955
+ "rgba(145, 216, 144, 0.38)";
956
+ export const CvThemeDarkColorsOnPositiveContainer74 =
957
+ "rgba(145, 216, 144, 0.74)";
958
+ export const CvThemeDarkColorsCaution38 = "rgba(255, 183, 117, 0.38)";
959
+ export const CvThemeDarkColorsCaution74 = "rgba(255, 183, 117, 0.74)";
960
+ export const CvThemeDarkColorsOnCaution38 = "rgba(102, 73, 47, 0.38)";
961
+ export const CvThemeDarkColorsOnCaution74 = "rgba(102, 73, 47, 0.74)";
962
+ export const CvThemeDarkColorsOnCautionContainer38 = "rgba(25, 18, 12, 0.38)";
963
+ export const CvThemeDarkColorsOnCautionContainer74 = "rgba(25, 18, 12, 0.74)";
964
+ export const CvThemeDarkColorsEmphasis38 = "rgba(204, 128, 156, 0.38)";
965
+ export const CvThemeDarkColorsEmphasis74 = "rgba(204, 128, 156, 0.74)";
966
+ export const CvThemeDarkColorsOnEmphasis38 = "rgba(25, 16, 19, 0.38)";
967
+ export const CvThemeDarkColorsOnEmphasis74 = "rgba(25, 16, 19, 0.74)";
968
+ export const CvThemeDarkColorsOnEmphasisContainer38 =
969
+ "rgba(255, 217, 231, 0.38)";
970
+ export const CvThemeDarkColorsOnEmphasisContainer74 =
971
+ "rgba(255, 217, 231, 0.74)";
972
+ export const CvThemeDarkColorsOnPrimaryContainer38 =
973
+ "rgba(221, 225, 255, 0.38)";
974
+ export const CvThemeDarkColorsOnPrimaryContainer74 =
975
+ "rgba(221, 225, 255, 0.74)";
976
+ export const CvThemeDarkColorsPrimary38 = "rgba(186, 195, 255, 0.38)";
977
+ export const CvThemeDarkColorsPrimary74 = "rgba(186, 195, 255, 0.74)";
946
978
  export const CvThemeDarkColorsBrand = "#ff5f02";
947
979
  export const CvTeradataTeal50 = "#def9f8";
948
980
  export const CvTeradataTeal100 = "#b2ebea";