@covalent/components 8.6.0-beta.1 → 8.7.0-beta.1

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,316 @@
1
+ @mixin css-variable-theme-tokens($theme, $prefix: 'cv') {
2
+ @each $key, $value in $theme {
3
+ --#{$prefix}-theme-#{$key}: #{map-get($theme, $key)};
4
+ }
5
+ }
6
+
7
+ @mixin components-theme($theme, $typography) {
8
+ // Covalent theme tokens as css variables
9
+ @include css-variable-theme-tokens($theme);
10
+
11
+ // Foreground colors
12
+ --mdc-theme-primary: #{map-get($theme, primary)};
13
+ --mdc-theme-secondary: #{map-get($theme, secondary)};
14
+ --mdc-theme-error: #{map-get($theme, error)};
15
+ --mdc-theme-negative: #{map-get($theme, error)};
16
+ --mdc-theme-positive: #{map-get($theme, positive)};
17
+ --mdc-theme-caution: #{map-get($theme, caution)};
18
+ --mdc-theme-emphasis: #{map-get($theme, emphasis)};
19
+
20
+ // Alias for primary
21
+ --mdc-theme-accent: #{map-get($theme, accent)};
22
+
23
+ // Background colors
24
+ --mdc-theme-background: #{map-get($theme, background)};
25
+ --mdc-ripple-color: #{map-get($theme, on-surface)};
26
+ --mdc-theme-surface: #{map-get($theme, surface)};
27
+ --mdc-theme-surface-canvas: #{map-get($theme, surface-canvas)};
28
+ --mdc-theme-surface-primary: #{map-get($theme, surface-primary)};
29
+ --mdc-theme-surface-primary-highlight: #{map-get(
30
+ $theme,
31
+ surface-primary-highlight
32
+ )};
33
+ --mdc-theme-surface-primary-highlight-hover: #{map-get(
34
+ $theme,
35
+ surface-primary-highlight-hover
36
+ )};
37
+ --mdc-theme-surface-secondary: #{map-get($theme, surface-secondary)};
38
+ --mdc-theme-surface-secondary-highlight: #{map-get(
39
+ $theme,
40
+ surface-secondary-highlight
41
+ )};
42
+ --mdc-theme-surface-secondary-highlight-hover: #{map-get(
43
+ $theme,
44
+ surface-secondary-highlight-hover
45
+ )};
46
+ --mdc-theme-surface-caution: #{map-get($theme, surface-caution)};
47
+ --mdc-theme-surface-caution-highlight: #{map-get(
48
+ $theme,
49
+ surface-caution-highlight
50
+ )};
51
+ --mdc-theme-surface-caution-highlight-hover: #{map-get(
52
+ $theme,
53
+ surface-caution-highlight-hover
54
+ )};
55
+ --mdc-theme-surface-negative: #{map-get($theme, surface-negative)};
56
+ --mdc-theme-surface-negative-highlight: #{map-get(
57
+ $theme,
58
+ surface-negative-highlight
59
+ )};
60
+ --mdc-theme-surface-negative-highlight-hover: #{map-get(
61
+ $theme,
62
+ surface-negative-highlight-hover
63
+ )};
64
+ --mdc-theme-surface-positive: #{map-get($theme, surface-positive)};
65
+ --mdc-theme-surface-positive-highlight: #{map-get(
66
+ $theme,
67
+ surface-positive-highlight
68
+ )};
69
+ --mdc-theme-surface-positive-highlight-hover: #{map-get(
70
+ $theme,
71
+ surface-positive-highlight-hover
72
+ )};
73
+ --mdc-theme-surface-neutral: #{map-get($theme, surface-neutral)};
74
+ --mdc-theme-surface-neutral-highlight: #{map-get(
75
+ $theme,
76
+ surface-neutral-highlight
77
+ )};
78
+ --mdc-theme-surface-neutral-highlight-hover: #{map-get(
79
+ $theme,
80
+ surface-neutral-highlight-hover
81
+ )};
82
+ --mdc-theme-surface-emphasis: #{map-get($theme, surface-emphasis)};
83
+ --mdc-theme-surface-emphasis-highlight: #{map-get(
84
+ $theme,
85
+ surface-emphasis-highlight
86
+ )};
87
+ --mdc-theme-surface-emphasis-highlight-hover: #{map-get(
88
+ $theme,
89
+ surface-emphasis-highlight-hover
90
+ )};
91
+ --mdc-theme-on-primary: #{map-get($theme, on-primary)};
92
+ --mdc-theme-on-secondary: #{map-get($theme, on-secondary)};
93
+ --mdc-theme-on-surface: #{map-get($theme, on-surface)};
94
+ --mdc-theme-border: #{map-get($theme, divider)};
95
+
96
+ // Alias for primary
97
+ --mdc-theme-surface-accent: #{map-get($theme, surface-primary)};
98
+ --mdc-theme-surface-accent-highlight: #{map-get(
99
+ $theme,
100
+ surface-primary-highlight
101
+ )};
102
+ --mdc-theme-surface-accent-highlight-hover: #{map-get(
103
+ $theme,
104
+ surface-primary-highlight-hover
105
+ )};
106
+
107
+ // Tooltip
108
+ --mdc-plain-tooltip-container-color: #{map-get($theme, inverse-surface)};
109
+ --mdc-plain-tooltip-supporting-text-color: #{map-get(
110
+ $theme,
111
+ inverse-on-surface
112
+ )};
113
+
114
+ // Typography
115
+ --mdc-typography-font-family: #{map-get($typography, font-family)};
116
+ --mdc-typography-headline1-font-family: #{map-get(
117
+ $typography,
118
+ headline1-font-family
119
+ )};
120
+ --mdc-typography-headline1-font-size: #{map-get(
121
+ $typography,
122
+ headline1-font-size
123
+ )};
124
+ --mdc-typography-headline1-font-weight: #{map-get(
125
+ $typography,
126
+ headline1-font-weight
127
+ )};
128
+ --mdc-typography-headline1-line-height: #{map-get(
129
+ $typography,
130
+ headline1-line-height
131
+ )};
132
+ --mdc-typography-headline2-font-family: #{map-get(
133
+ $typography,
134
+ headline2-font-family
135
+ )};
136
+ --mdc-typography-headline2-font-size: #{map-get(
137
+ $typography,
138
+ headline2-font-size
139
+ )};
140
+ --mdc-typography-headline2-font-weight: #{map-get(
141
+ $typography,
142
+ headline2-font-weight
143
+ )};
144
+ --mdc-typography-headline2-line-height: #{map-get(
145
+ $typography,
146
+ headline2-line-height
147
+ )};
148
+ --mdc-typography-headline3-font-family: #{map-get(
149
+ $typography,
150
+ headline3-font-family
151
+ )};
152
+ --mdc-typography-headline3-font-size: #{map-get(
153
+ $typography,
154
+ headline3-font-size
155
+ )};
156
+ --mdc-typography-headline3-font-weight: #{map-get(
157
+ $typography,
158
+ headline3-font-weight
159
+ )};
160
+ --mdc-typography-headline3-line-height: #{map-get(
161
+ $typography,
162
+ headline3-line-height
163
+ )};
164
+ --mdc-typography-headline4-font-family: #{map-get(
165
+ $typography,
166
+ headline4-font-family
167
+ )};
168
+ --mdc-typography-headline4-font-size: #{map-get(
169
+ $typography,
170
+ headline4-font-size
171
+ )};
172
+ --mdc-typography-headline4-font-weight: #{map-get(
173
+ $typography,
174
+ headline4-font-weight
175
+ )};
176
+ --mdc-typography-headline4-line-height: #{map-get(
177
+ $typography,
178
+ headline4-line-height
179
+ )};
180
+ --mdc-typography-headline5-font-family: #{map-get(
181
+ $typography,
182
+ headline5-font-family
183
+ )};
184
+ --mdc-typography-headline5-font-size: #{map-get(
185
+ $typography,
186
+ headline5-font-size
187
+ )};
188
+ --mdc-typography-headline5-font-weight: #{map-get(
189
+ $typography,
190
+ headline5-font-weight
191
+ )};
192
+ --mdc-typography-headline5-line-height: #{map-get(
193
+ $typography,
194
+ headline5-line-height
195
+ )};
196
+ --mdc-typography-headline6-font-family: #{map-get(
197
+ $typography,
198
+ headline6-font-family
199
+ )};
200
+ --mdc-typography-headline6-font-size: #{map-get(
201
+ $typography,
202
+ headline6-font-size
203
+ )};
204
+ --mdc-typography-headline6-font-weight: #{map-get(
205
+ $typography,
206
+ headline6-font-weight
207
+ )};
208
+ --mdc-typography-headline6-line-height: #{map-get(
209
+ $typography,
210
+ headline6-line-height
211
+ )};
212
+ --mdc-typography-subtitle1-font-family: #{map-get(
213
+ $typography,
214
+ subtitle1-font-family
215
+ )};
216
+ --mdc-typography-subtitle1-font-size: #{map-get(
217
+ $typography,
218
+ subtitle1-font-size
219
+ )};
220
+ --mdc-typography-subtitle1-font-weight: #{map-get(
221
+ $typography,
222
+ subtitle1-font-weight
223
+ )};
224
+ --mdc-typography-subtitle1-line-height: #{map-get(
225
+ $typography,
226
+ subtitle1-line-height
227
+ )};
228
+ --mdc-typography-subtitle2-font-family: #{map-get(
229
+ $typography,
230
+ subtitle2-font-family
231
+ )};
232
+ --mdc-typography-subtitle2-font-size: #{map-get(
233
+ $typography,
234
+ subtitle2-font-size
235
+ )};
236
+ --mdc-typography-subtitle2-font-weight: #{map-get(
237
+ $typography,
238
+ subtitle2-font-weight
239
+ )};
240
+ --mdc-typography-subtitle2-line-height: #{map-get(
241
+ $typography,
242
+ subtitle2-line-height
243
+ )};
244
+ --mdc-typography-body1-font-family: var(--mdc-typography-font-family);
245
+ --mdc-typography-body1-font-size: #{map-get($typography, body1-font-size)};
246
+ --mdc-typography-body1-font-weight: #{map-get($typography, body1-font-weight)};
247
+ --mdc-typography-body1-line-height: #{map-get($typography, body1-line-height)};
248
+ --mdc-typography-body2-font-family: var(--mdc-typography-font-family);
249
+ --mdc-typography-body2-font-size: #{map-get($typography, body2-font-size)};
250
+ --mdc-typography-body2-font-weight: #{map-get($typography, body2-font-weight)};
251
+ --mdc-typography-body2-line-height: #{map-get($typography, body2-line-height)};
252
+ --mdc-typography-button-font-family: #{map-get(
253
+ $typography,
254
+ button-font-family
255
+ )};
256
+ --mdc-typography-button-font-size: #{map-get($typography, button-font-size)};
257
+ --mdc-typography-button-font-weight: #{map-get(
258
+ $typography,
259
+ button-font-weight
260
+ )};
261
+ --mdc-typography-button-line-height: #{map-get(
262
+ $typography,
263
+ button-line-height
264
+ )};
265
+ --mdc-typography-button-text-transform: none;
266
+ --mdc-typography-caption-font-family: var(--mdc-typography-font-family);
267
+ --mdc-typography-caption-font-size: #{map-get($typography, caption-font-size)};
268
+ --mdc-typography-caption-font-weight: #{map-get(
269
+ $typography,
270
+ caption-font-weight
271
+ )};
272
+ --mdc-typography-caption-line-height: #{map-get(
273
+ $typography,
274
+ caption-line-height
275
+ )};
276
+
277
+ // Text
278
+ --mdc-theme-text-primary-on-background: #{map-get(
279
+ $theme,
280
+ text-primary-on-background
281
+ )};
282
+ --mdc-theme-text-secondary-on-background: #{map-get(
283
+ $theme,
284
+ text-secondary-on-background
285
+ )};
286
+ --mdc-theme-text-hint-on-background: #{map-get(
287
+ $theme,
288
+ text-hint-on-background
289
+ )};
290
+ --mdc-theme-text-disabled-on-background: #{map-get(
291
+ $theme,
292
+ text-disabled-on-background
293
+ )};
294
+ --mdc-theme-text-icon-on-background: #{map-get(
295
+ $theme,
296
+ text-icon-on-background
297
+ )};
298
+ --mdc-theme-text-primary-on-light: #{map-get($theme, text-primary-on-light)};
299
+ --mdc-theme-text-secondary-on-light: #{map-get(
300
+ $theme,
301
+ text-secondary-on-light
302
+ )};
303
+ --mdc-theme-text-hint-on-light: #{map-get($theme, text-hint-on-light)};
304
+ --mdc-theme-text-disabled-on-light: #{map-get($theme, text-disabled-on-light)};
305
+ --mdc-theme-text-icon-on-light: #{map-get($theme, text-icon-on-light)};
306
+ --mdc-theme-text-primary-on-dark: #{map-get($theme, text-primary-on-dark)};
307
+ --mdc-theme-text-secondary-on-dark: #{map-get($theme, text-secondary-on-dark)};
308
+ --mdc-theme-text-hint-on-dark: #{map-get($theme, text-hint-on-dark)};
309
+ --mdc-theme-text-disabled-on-dark: #{map-get($theme, text-disabled-on-dark)};
310
+ --mdc-theme-text-icon-on-dark: #{map-get($theme, text-icon-on-dark)};
311
+ --mdc-icon-font: 'Material Symbols Outlined';
312
+
313
+ // Shape
314
+ --mdc-shape-small: 8px;
315
+ --mdc-shape-medium: 8px;
316
+ }
@@ -1 +1 @@
1
- :root{--cv-theme-primary: #bac3ff;--cv-theme-primary-container: #1d2c43;--cv-theme-on-primary: #111a28;--cv-theme-secondary: #c3c5dd;--cv-theme-secondary-container: #434659;--cv-theme-on-secondary: #171a2c;--cv-theme-on-secondary-container: #dfe1f9;--cv-theme-tertiary: #ff5f02;--cv-theme-tertiary-container: #c25d33;--cv-theme-on-tertiary: #612e1a;--cv-theme-on-tertiary-container: #fef1ec;--cv-theme-surface: #161616;--cv-theme-surface-dim: #0e0e0e;--cv-theme-surface-bright: #4a4a4d;--cv-theme-surface-container-lowest: #1e1d1e;--cv-theme-surface-container-low: #252426;--cv-theme-surface-container: #2c2b2d;--cv-theme-surface-container-high: #323134;--cv-theme-surface-container-highest: #38383b;--cv-theme-on-surface: #ebe8ec;--cv-theme-on-surface-variant: #ebe8ec;--cv-theme-inverse-surface: #ebe8ec;--cv-theme-inverse-on-surface: #3e3e41;--cv-theme-negative: #fd7d69;--cv-theme-negative-container: #65322a;--cv-theme-on-negative: #331915;--cv-theme-on-negative-container: #ffac9f;--cv-theme-positive: #91d890;--cv-theme-positive-container: #224b22;--cv-theme-on-positive: #112611;--cv-theme-on-positive-container: #91d890;--cv-theme-caution: #ffcd9e;--cv-theme-caution-container: #66492f;--cv-theme-on-caution: #66492f;--cv-theme-on-caution-container: #ffcd9e;--cv-theme-outline: #8f8e97;--cv-theme-outline-variant: #3e3e41;--cv-theme-shadow: black;--cv-theme-scrim: black;--cv-theme-primary-fixed: #dde1ff;--cv-theme-primary-fixed-dim: #bac3ff;--cv-theme-secondary-fixed: #dfe1f9;--cv-theme-secondary-fixed-dim: #c3c5dd;--cv-theme-tertiary-fixed: #f79e79;--cv-theme-tertiary-fixed-dim: #f37440;--cv-theme-primary-8%: rgba(186, 195, 255, 0.0784313725);--cv-theme-primary-12%: rgba(186, 195, 255, 0.1215686275);--cv-theme-on-surface-8%: rgba(235, 232, 236, 0.0784313725);--cv-theme-on-surface-12%: rgba(235, 232, 236, 0.1215686275);--cv-theme-on-primary-container: #dde1ff;--cv-theme-inverse-primary: #3053f4;--cv-theme-on-surface-38%: rgba(235, 232, 236, 0.3803921569);--cv-theme-on-surface-16%: rgba(235, 232, 236, 0.1607843137);--cv-theme-on-primary-12%: rgba(17, 26, 40, 0.1215686275);--cv-theme-on-primary-8%: rgba(17, 26, 40, 0.0784313725);--cv-theme-primary-16%: rgba(186, 195, 255, 0.1607843137);--cv-theme-on-surface-variant-8%: rgba(213, 211, 216, 0.0784313725);--cv-theme-on-tertiary-container-8%: rgba(254, 241, 236, 0.0784313725);--cv-theme-on-tertiary-container-12%: rgba(254, 241, 236, 0.1215686275);--cv-theme-on-primary-container-12%: rgba(221, 225, 255, 0.1215686275);--cv-theme-on-surface-variant-12%: rgba(213, 211, 216, 0.1215686275);--cv-theme-on-secondary-container-8%: rgba(91, 93, 114, 0.0784313725);--cv-theme-on-secondary-container-16%: rgba(97, 99, 120, 0.1607843137);--cv-theme-outline-8%: rgba(143, 142, 151, 0.0784313725);--cv-theme-outline-12%: rgba(143, 142, 151, 0.1215686275);--cv-theme-outline-16%: rgba(143, 142, 151, 0.1607843137);--cv-theme-surface-variant: black;--cv-theme-emphasis: #cc809c;--cv-theme-emphasis-container: #66404e;--cv-theme-on-emphasis: #191013;--cv-theme-on-emphasis-container: #ffd9e7;--cv-theme-positive-16%: rgba(145, 216, 144, 0.1607843137);--cv-theme-caution-16%: rgba(255, 183, 117, 0.1607843137);--cv-theme-negative-12%: rgba(253, 125, 105, 0.1215686275);--cv-theme-on-secondary-container-12%: rgba(91, 93, 114, 0.1215686275);--cv-theme-on-primary-16%: rgba(17, 26, 40, 0.1607843137);--cv-theme-on-primary-container-8%: rgba(221, 225, 255, 0.0784313725);--cv-theme-on-primary-container-16%: rgba(221, 225, 255, 0.1607843137);--cv-theme-on-secondary-8%: rgba(23, 26, 44, 0.0784313725);--cv-theme-on-secondary-12%: rgba(23, 26, 44, 0.1215686275);--cv-theme-on-secondary-16%: rgba(23, 26, 44, 0.1607843137);--cv-theme-on-tertiary-8%: rgba(97, 46, 26, 0.0784313725);--cv-theme-on-tertiary-12%: rgba(97, 46, 26, 0.1215686275);--cv-theme-on-tertiary-16%: rgba(97, 46, 26, 0.1607843137);--cv-theme-on-tertiary-container-16%: rgba(254, 241, 236, 0.1607843137);--cv-theme-on-surface-variant-16%: rgba(213, 211, 216, 0.1607843137);--cv-theme-negative-8%: rgba(253, 125, 105, 0.0784313725);--cv-theme-negative-16%: rgba(253, 125, 105, 0.1607843137);--cv-theme-positive-12%: rgba(145, 216, 144, 0.1215686275);--cv-theme-positive-8%: rgba(145, 216, 144, 0.0784313725);--cv-theme-on-positive-8%: rgba(17, 38, 17, 0.0784313725);--cv-theme-on-positive-12%: rgba(17, 38, 17, 0.1215686275);--cv-theme-on-positive-16%: rgba(17, 38, 17, 0.1607843137);--cv-theme-on-positive-container-8%: rgba(145, 216, 144, 0.0784313725);--cv-theme-on-positive-container-12%: rgba(145, 216, 144, 0.1215686275);--cv-theme-on-positive-container-16%: rgba(145, 216, 144, 0.1607843137);--cv-theme-caution-12%: rgba(255, 183, 117, 0.1215686275);--cv-theme-caution-8%: rgba(255, 183, 117, 0.0784313725);--cv-theme-on-caution-8%: rgba(102, 73, 47, 0.0784313725);--cv-theme-on-caution-12%: rgba(102, 73, 47, 0.1215686275);--cv-theme-on-caution-16%: rgba(102, 73, 47, 0.1607843137);--cv-theme-on-negative-8%: rgba(51, 25, 21, 0.0784313725);--cv-theme-on-negative-12%: rgba(51, 25, 21, 0.1215686275);--cv-theme-on-negative-16%: rgba(51, 25, 21, 0.1607843137);--cv-theme-on-caution-container-8%: rgba(25, 18, 12, 0.0784313725);--cv-theme-on-caution-container-12%: rgba(25, 18, 12, 0.1215686275);--cv-theme-on-caution-container-16%: rgba(25, 18, 12, 0.1607843137);--cv-theme-emphasis-8%: rgba(204, 128, 156, 0.0784313725);--cv-theme-emphasis-12%: rgba(204, 128, 156, 0.1215686275);--cv-theme-emphasis-16%: rgba(204, 128, 156, 0.1607843137);--cv-theme-on-emphasis-8%: rgba(25, 16, 19, 0.0784313725);--cv-theme-on-emphasis-12%: rgba(25, 16, 19, 0.1215686275);--cv-theme-on-emphasis-16%: rgba(25, 16, 19, 0.1607843137);--cv-theme-on-emphasis-container-8%: rgba(255, 217, 231, 0.0784313725);--cv-theme-on-emphasis-container-12%: rgba(255, 217, 231, 0.1215686275);--cv-theme-on-emphasis-container-16%: rgba(255, 217, 231, 0.1607843137);--cv-theme-inverse-on-surface-12%: rgba(62, 62, 65, 0.1215686275);--cv-theme-inverse-primary-12%: rgba(48, 83, 244, 0.1215686275);--cv-theme-inverse-on-surface-8%: rgba(62, 62, 65, 0.0784313725);--cv-theme-inverse-primary-8%: rgba(48, 83, 244, 0.0784313725);--cv-theme-inverse-primary-16%: rgba(48, 83, 244, 0.1607843137);--cv-theme-inverse-on-surface-16%: rgba(62, 62, 65, 0.1607843137);--cv-theme-on-primary-74%: rgba(17, 26, 40, 0.7411764706);--cv-theme-on-surface-74%: rgba(235, 232, 236, 0.7411764706);--cv-theme-tertiary-8%: rgba(255, 95, 2, 0.0784313725);--cv-theme-tertiary-12%: rgba(255, 95, 2, 0.1215686275);--cv-theme-tertiary-16%: rgba(255, 95, 2, 0.1607843137);--cv-theme-secondary-8%: rgba(195, 197, 221, 0.0784313725);--cv-theme-secondary-12%: rgba(195, 197, 221, 0.1215686275);--cv-theme-secondary-16%: rgba(195, 197, 221, 0.1607843137);--cv-theme-on-secondary-74%: rgba(23, 26, 44, 0.7411764706);--cv-theme-inverse-secondary: #5b5d72;--cv-theme-inverse-secondary-8%: rgba(97, 99, 120, 0.0784313725);--cv-theme-inverse-secondary-12%: rgba(97, 99, 120, 0.1215686275);--cv-theme-inverse-secondary-16%: rgba(97, 99, 120, 0.1607843137);--cv-theme-on-tertiary-74%: rgba(97, 46, 26, 0.7411764706);--cv-theme-inverse-tertiary: #612e1a;--cv-theme-inverse-tertiary-8%: rgba(255, 95, 2, 0.0784313725);--cv-theme-inverse-tertiary-12%: rgba(255, 95, 2, 0.1215686275);--cv-theme-inverse-tertiary-16%: rgba(255, 95, 2, 0.1607843137);--cv-theme-on-negative-container-8%: rgba(255, 172, 159, 0.0784313725);--cv-theme-on-negative-container-12%: rgba(255, 172, 159, 0.1215686275);--cv-theme-on-negative-container-16%: rgba(255, 172, 159, 0.1607843137);--cv-theme-on-surface-4%: rgba(235, 232, 236, 0.0392156863);--cv-theme-on-surface-variant-4%: rgba(213, 211, 216, 0.0392156863);--cv-theme-inverse-on-surface-4%: rgba(62, 62, 65, 0.0392156863);--cv-theme-primary-4%: rgba(186, 195, 255, 0.0392156863);--cv-theme-on-primary-4%: rgba(17, 26, 40, 0.0392156863);--cv-theme-on-primary-container-4%: rgba(221, 225, 255, 0.0392156863);--cv-theme-inverse-primary-4%: rgba(48, 83, 244, 0.0392156863);--cv-theme-secondary-4%: rgba(195, 197, 221, 0.0392156863);--cv-theme-on-secondary-4%: rgba(23, 26, 44, 0.0392156863);--cv-theme-on-secondary-container-4%: rgba(91, 93, 114, 0.0392156863);--cv-theme-inverse-secondary-4%: rgba(97, 99, 120, 0.0392156863);--cv-theme-tertiary-4%: rgba(255, 95, 2, 0.0392156863);--cv-theme-on-tertiary-4%: rgba(97, 46, 26, 0.0392156863);--cv-theme-on-tertiary-container-4%: rgba(254, 241, 236, 0.0392156863);--cv-theme-inverse-tertiary-4%: rgba(255, 95, 2, 0.0392156863);--cv-theme-negative-4%: rgba(253, 125, 105, 0.0392156863);--cv-theme-on-negative-4%: rgba(51, 25, 21, 0.0392156863);--cv-theme-on-negative-container-4%: rgba(255, 172, 159, 0.0392156863);--cv-theme-positive-4%: rgba(145, 216, 144, 0.0392156863);--cv-theme-on-positive-4%: rgba(17, 38, 17, 0.0392156863);--cv-theme-on-positive-container-4%: rgba(145, 216, 144, 0.0392156863);--cv-theme-caution-4%: rgba(255, 183, 117, 0.0392156863);--cv-theme-on-caution-4%: rgba(102, 73, 47, 0.0392156863);--cv-theme-on-caution-container-4%: rgba(25, 18, 12, 0.0392156863);--cv-theme-emphasis-4%: rgba(204, 128, 156, 0.0392156863);--cv-theme-on-emphasis-4%4: rgba(25, 16, 19, 0.0392156863);--cv-theme-on-emphasis-container-4%: rgba(255, 217, 231, 0.0392156863);--cv-theme-on-surface-20%: rgba(235, 232, 236, 0.2);--cv-theme-primary-20%: rgba(186, 195, 255, 0.2);--cv-theme-negative-20%: rgba(253, 125, 105, 0.2);--cv-theme-positive-20%: rgba(145, 216, 144, 0.2);--cv-theme-caution-20%: rgba(255, 183, 117, 0.2);--cv-theme-emphasis-20%: rgba(204, 128, 156, 0.2);--cv-theme-primary-24%: rgba(186, 195, 255, 0.2392156863);--cv-theme-negative-24%: rgba(253, 125, 105, 0.2392156863);--cv-theme-positive-24%: rgba(145, 216, 144, 0.2392156863);--cv-theme-caution-24%: rgba(255, 183, 117, 0.2392156863);--cv-theme-emphasis-24%: rgba(204, 128, 156, 0.2392156863);--cv-theme-background: #161616;--cv-theme-surface-variant-8%: rgba(0, 0, 0, 0.0784313725);--cv-theme-surface-variant-12%: rgba(0, 0, 0, 0.1215686275);--cv-theme-surface-variant-16%: rgba(0, 0, 0, 0.1607843137);--cv-theme-error: #fd7d69;--cv-theme-on-background: #ebe8ec;--cv-theme-on-error: #331915;--cv-theme-divider: #3e3e41;--cv-theme-accent: #bac3ff;--cv-theme-surface-canvas: #2c2b2d;--cv-theme-surface-primary: #1d2c43;--cv-theme-surface-primary-highlight: rgba(186, 195, 255, 0.0784313725);--cv-theme-surface-primary-highlight-hover: rgba(186, 195, 255, 0.0784313725);--cv-theme-surface-accent: #1d2c43;--cv-theme-surface-accent-highlight: rgba(186, 195, 255, 0.0784313725);--cv-theme-surface-accent-highlight-hover: rgba(186, 195, 255, 0.0784313725);--cv-theme-surface-secondary: #434659;--cv-theme-surface-secondary-highlight: rgba(195, 197, 221, 0.0784313725);--cv-theme-surface-secondary-highlight-hover: rgba(195, 197, 221, 0.0784313725);--cv-theme-surface-positive: #224b22;--cv-theme-surface-positive-highlight: rgba(145, 216, 144, 0.0784313725);--cv-theme-surface-positive-highlight-hover: rgba(145, 216, 144, 0.0784313725);--cv-theme-surface-caution: #66492f;--cv-theme-surface-caution-highlight: rgba(255, 183, 117, 0.0784313725);--cv-theme-surface-caution-highlight-hover: rgba(255, 183, 117, 0.0784313725);--cv-theme-surface-negative: #65322a;--cv-theme-surface-negative-highlight: rgba(253, 125, 105, 0.0784313725);--cv-theme-surface-negative-highlight-hover: rgba(253, 125, 105, 0.0784313725);--cv-theme-surface-neutral: #faf7fa;--cv-theme-surface-neutral-highlight: rgba(250, 247, 250, 0.04);--cv-theme-surface-neutral-highlight-hover: rgba(250, 247, 250, 0.08);--cv-theme-surface-emphasis: #66404e;--cv-theme-surface-emphasis-highlight: rgba(204, 128, 156, 0.0784313725);--cv-theme-surface-emphasis-highlight-hover: rgba(204, 128, 156, 0.0784313725);--cv-theme-text-primary-on-background: #ebe8ec;--cv-theme-text-secondary-on-background: #ebe8ec;--cv-theme-text-hint-on-background: #ebe8ec;--cv-theme-text-disabled-on-background: rgba(235, 232, 236, 0.3803921569);--cv-theme-text-icon-on-background: #ebe8ec;--cv-theme-text-logo-on-background: #ffffff;--cv-theme-text-primary-on-light: #1e1d1e;--cv-theme-text-secondary-on-light: #5c5b5f;--cv-theme-text-hint-on-light: #5c5b5f;--cv-theme-text-disabled-on-light: rgba(30, 29, 30, 0.3803921569);--cv-theme-text-icon-on-light: #5c5b5f;--cv-theme-text-primary-on-dark: #ebe8ec;--cv-theme-text-secondary-on-dark: #ebe8ec;--cv-theme-text-hint-on-dark: #ebe8ec;--cv-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.3803921569);--cv-theme-text-icon-on-dark: #ebe8ec;--cv-theme-code-snippet-color: #abb2bf;--cv-theme-code-snippet-comment: #5c6370;--cv-theme-code-snippet-keyword: #c678dd;--cv-theme-code-snippet-selector: #e06c75;--cv-theme-code-snippet-literal: #56b6c2;--cv-theme-code-snippet-string: #98c379;--cv-theme-code-snippet-variable: #d19a66;--cv-theme-code-snippet-title: #61aeee;--cv-theme-code-snippet-class: #e6c07b;--mdc-theme-primary: #bac3ff;--mdc-theme-secondary: #c3c5dd;--mdc-theme-error: #fd7d69;--mdc-theme-negative: #fd7d69;--mdc-theme-positive: #91d890;--mdc-theme-caution: #ffcd9e;--mdc-theme-emphasis: #cc809c;--mdc-theme-accent: #bac3ff;--mdc-theme-background: #161616;--mdc-ripple-color: #ebe8ec;--mdc-theme-surface: #161616;--mdc-theme-surface-canvas: #2c2b2d;--mdc-theme-surface-primary: #1d2c43;--mdc-theme-surface-primary-highlight: rgba(186, 195, 255, 0.0784313725);--mdc-theme-surface-primary-highlight-hover: rgba(186, 195, 255, 0.0784313725);--mdc-theme-surface-secondary: #434659;--mdc-theme-surface-secondary-highlight: rgba(195, 197, 221, 0.0784313725);--mdc-theme-surface-secondary-highlight-hover: rgba(195, 197, 221, 0.0784313725);--mdc-theme-surface-caution: #66492f;--mdc-theme-surface-caution-highlight: rgba(255, 183, 117, 0.0784313725);--mdc-theme-surface-caution-highlight-hover: rgba(255, 183, 117, 0.0784313725);--mdc-theme-surface-negative: #65322a;--mdc-theme-surface-negative-highlight: rgba(253, 125, 105, 0.0784313725);--mdc-theme-surface-negative-highlight-hover: rgba(253, 125, 105, 0.0784313725);--mdc-theme-surface-positive: #224b22;--mdc-theme-surface-positive-highlight: rgba(145, 216, 144, 0.0784313725);--mdc-theme-surface-positive-highlight-hover: rgba(145, 216, 144, 0.0784313725);--mdc-theme-surface-neutral: #faf7fa;--mdc-theme-surface-neutral-highlight: rgba(250, 247, 250, 0.04);--mdc-theme-surface-neutral-highlight-hover: rgba(250, 247, 250, 0.08);--mdc-theme-surface-emphasis: #66404e;--mdc-theme-surface-emphasis-highlight: rgba(204, 128, 156, 0.0784313725);--mdc-theme-surface-emphasis-highlight-hover: rgba(204, 128, 156, 0.0784313725);--mdc-theme-on-primary: #111a28;--mdc-theme-on-secondary: #171a2c;--mdc-theme-on-surface: #ebe8ec;--mdc-theme-border: #3e3e41;--mdc-theme-surface-accent: #1d2c43;--mdc-theme-surface-accent-highlight: rgba(186, 195, 255, 0.0784313725);--mdc-theme-surface-accent-highlight-hover: rgba(186, 195, 255, 0.0784313725);--mdc-plain-tooltip-container-color: #ebe8ec;--mdc-plain-tooltip-supporting-text-color: #3e3e41;--mdc-typography-font-family: Arial, sans-serif;--mdc-typography-headline1-font-family: Inter, sans-serif;--mdc-typography-headline1-font-size: 96px;--mdc-typography-headline1-font-weight: 500;--mdc-typography-headline1-line-height: 112px;--mdc-typography-headline2-font-family: Inter, sans-serif;--mdc-typography-headline2-font-size: 60px;--mdc-typography-headline2-font-weight: 600;--mdc-typography-headline2-line-height: 84px;--mdc-typography-headline3-font-family: Inter, sans-serif;--mdc-typography-headline3-font-size: 48px;--mdc-typography-headline3-font-weight: 600;--mdc-typography-headline3-line-height: 64px;--mdc-typography-headline4-font-family: Inter, sans-serif;--mdc-typography-headline4-font-size: 34px;--mdc-typography-headline4-font-weight: 700;--mdc-typography-headline4-line-height: 48px;--mdc-typography-headline5-font-family: Inter, sans-serif;--mdc-typography-headline5-font-size: 24px;--mdc-typography-headline5-font-weight: 700;--mdc-typography-headline5-line-height: 36px;--mdc-typography-headline6-font-family: Inter, sans-serif;--mdc-typography-headline6-font-size: 20px;--mdc-typography-headline6-font-weight: 700;--mdc-typography-headline6-line-height: 28px;--mdc-typography-subtitle1-font-family: Inter, sans-serif;--mdc-typography-subtitle1-font-size: 14px;--mdc-typography-subtitle1-font-weight: 600;--mdc-typography-subtitle1-line-height: 20px;--mdc-typography-subtitle2-font-family: Inter, sans-serif;--mdc-typography-subtitle2-font-size: 16px;--mdc-typography-subtitle2-font-weight: 600;--mdc-typography-subtitle2-line-height: 24px;--mdc-typography-body1-font-family: var(--mdc-typography-font-family);--mdc-typography-body1-font-size: 16px;--mdc-typography-body1-font-weight: 400;--mdc-typography-body1-line-height: 24px;--mdc-typography-body2-font-family: var(--mdc-typography-font-family);--mdc-typography-body2-font-size: 14px;--mdc-typography-body2-font-weight: 400;--mdc-typography-body2-line-height: 20px;--mdc-typography-button-font-family: Inter, sans-serif;--mdc-typography-button-font-size: 14px;--mdc-typography-button-font-weight: 600;--mdc-typography-button-line-height: 16px;--mdc-typography-button-text-transform: none;--mdc-typography-caption-font-family: var(--mdc-typography-font-family);--mdc-typography-caption-font-size: 12px;--mdc-typography-caption-font-weight: 400;--mdc-typography-caption-line-height: 16px;--mdc-theme-text-primary-on-background: #ebe8ec;--mdc-theme-text-secondary-on-background: #ebe8ec;--mdc-theme-text-hint-on-background: #ebe8ec;--mdc-theme-text-disabled-on-background: rgba(235, 232, 236, 0.3803921569);--mdc-theme-text-icon-on-background: #ebe8ec;--mdc-theme-text-primary-on-light: #1e1d1e;--mdc-theme-text-secondary-on-light: #5c5b5f;--mdc-theme-text-hint-on-light: #5c5b5f;--mdc-theme-text-disabled-on-light: rgba(30, 29, 30, 0.3803921569);--mdc-theme-text-icon-on-light: #5c5b5f;--mdc-theme-text-primary-on-dark: #ebe8ec;--mdc-theme-text-secondary-on-dark: #ebe8ec;--mdc-theme-text-hint-on-dark: #ebe8ec;--mdc-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.3803921569);--mdc-theme-text-icon-on-dark: #ebe8ec;--mdc-icon-font: "Material Symbols Outlined";--mdc-shape-small: 8px;--mdc-shape-medium: 8px;border-width:0;border-style:solid;color:var(--mdc-theme-text-primary-on-background)}:root .mdc-data-table__sort-icon-button{color:#ebe8ec}:root .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::after{background-color:#ebe8ec;background-color:var(--mdc-ripple-color, #ebe8ec)}:root .mdc-data-table__sort-icon-button:hover .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.08;opacity:var(--mdc-ripple-hover-opacity, 0.08)}:root .mdc-data-table__sort-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-focus-opacity, 0.24)}:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-press-opacity, 0.24)}:root .mdc-data-table__sort-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.24)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button{color:#ebe8ec}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::after{background-color:#ebe8ec;background-color:var(--mdc-ripple-color, #ebe8ec)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:hover .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.08;opacity:var(--mdc-ripple-hover-opacity, 0.08)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-focus-opacity, 0.24)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-press-opacity, 0.24)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.24)}:root .mdc-data-table__row--selected{background-color:rgba(250, 247, 250, 0.04)}:root .mdc-data-table__row:not(.mdc-data-table__row--selected):hover{background-color:rgba(250, 247, 250, 0.08)}:root .mdc-data-table__header-cell{color:#ebe8ec}:root .mdc-data-table__pagination-total,:root .mdc-data-table__pagination-rows-per-page-label,:root .mdc-data-table__cell{color:#ebe8ec}:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__leading,:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__notch,:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__trailing{border-color:#3e3e41}:root .mdc-data-table__cell,:root .mdc-data-table__header-cell{border-bottom-color:#3e3e41}:root .mdc-data-table__pagination{border-top-color:#3e3e41}:root .mdc-data-table{width:100%;border-width:0;white-space:normal}:root .mdc-data-table__header-cell{font-family:var(--mdc-typography-font-family);font-size:var(--mdc-typography-body2-font-size);font-weight:600;line-height:var(--mdc-typography-body2-line-height)}:root .mdc-data-table__sort-icon-button{font-size:1rem}:root a[href]{color:var(--mdc-theme-secondary);text-decoration:underline}:root a[href]:hover{text-decoration:none}:root .sbdocs.sbdocs-preview.sb-unstyled>div:first-child{background-color:inherit}:root .sbdocs-content table .docblock-argstable-body td{background-color:inherit}/*# sourceMappingURL=dark-theme.css.map */
1
+ :root{--cv-theme-primary: #bac3ff;--cv-theme-primary-container: #1d2c43;--cv-theme-on-primary: #111a28;--cv-theme-secondary: #c3c5dd;--cv-theme-secondary-container: #434659;--cv-theme-on-secondary: #171a2c;--cv-theme-on-secondary-container: #dfe1f9;--cv-theme-tertiary: #ff5f02;--cv-theme-tertiary-container: #c25d33;--cv-theme-on-tertiary: #612e1a;--cv-theme-on-tertiary-container: #fef1ec;--cv-theme-surface: #161616;--cv-theme-surface-dim: #0e0e0e;--cv-theme-surface-bright: #4a4a4d;--cv-theme-surface-container-lowest: #1e1d1e;--cv-theme-surface-container-low: #252426;--cv-theme-surface-container: #2c2b2d;--cv-theme-surface-container-high: #323134;--cv-theme-surface-container-highest: #38383b;--cv-theme-on-surface: #ebe8ec;--cv-theme-on-surface-variant: #ebe8ec;--cv-theme-inverse-surface: #ebe8ec;--cv-theme-inverse-on-surface: #3e3e41;--cv-theme-negative: #fd7d69;--cv-theme-negative-container: #65322a;--cv-theme-on-negative: #331915;--cv-theme-on-negative-container: #ffac9f;--cv-theme-positive: #91d890;--cv-theme-positive-container: #224b22;--cv-theme-on-positive: #112611;--cv-theme-on-positive-container: #91d890;--cv-theme-caution: #ffcd9e;--cv-theme-caution-container: #66492f;--cv-theme-on-caution: #66492f;--cv-theme-on-caution-container: #ffcd9e;--cv-theme-outline: #8f8e97;--cv-theme-outline-variant: #3e3e41;--cv-theme-shadow: black;--cv-theme-scrim: black;--cv-theme-primary-fixed: #dde1ff;--cv-theme-primary-fixed-dim: #bac3ff;--cv-theme-secondary-fixed: #dfe1f9;--cv-theme-secondary-fixed-dim: #c3c5dd;--cv-theme-tertiary-fixed: #f79e79;--cv-theme-tertiary-fixed-dim: #f37440;--cv-theme-primary-8%: rgba(186, 195, 255, 0.0784313725);--cv-theme-primary-12%: rgba(186, 195, 255, 0.1215686275);--cv-theme-on-surface-8%: rgba(235, 232, 236, 0.0784313725);--cv-theme-on-surface-12%: rgba(235, 232, 236, 0.1215686275);--cv-theme-on-primary-container: #dde1ff;--cv-theme-inverse-primary: #3053f4;--cv-theme-on-surface-38%: rgba(235, 232, 236, 0.3803921569);--cv-theme-on-surface-16%: rgba(235, 232, 236, 0.1607843137);--cv-theme-on-primary-12%: rgba(17, 26, 40, 0.1215686275);--cv-theme-on-primary-8%: rgba(17, 26, 40, 0.0784313725);--cv-theme-primary-16%: rgba(186, 195, 255, 0.1607843137);--cv-theme-on-surface-variant-8%: rgba(213, 211, 216, 0.0784313725);--cv-theme-on-tertiary-container-8%: rgba(254, 241, 236, 0.0784313725);--cv-theme-on-tertiary-container-12%: rgba(254, 241, 236, 0.1215686275);--cv-theme-on-primary-container-12%: rgba(221, 225, 255, 0.1215686275);--cv-theme-on-surface-variant-12%: rgba(213, 211, 216, 0.1215686275);--cv-theme-on-secondary-container-8%: rgba(91, 93, 114, 0.0784313725);--cv-theme-on-secondary-container-16%: rgba(97, 99, 120, 0.1607843137);--cv-theme-outline-8%: rgba(143, 142, 151, 0.0784313725);--cv-theme-outline-12%: rgba(143, 142, 151, 0.1215686275);--cv-theme-outline-16%: rgba(143, 142, 151, 0.1607843137);--cv-theme-surface-variant: black;--cv-theme-emphasis: #cc809c;--cv-theme-emphasis-container: #66404e;--cv-theme-on-emphasis: #191013;--cv-theme-on-emphasis-container: #ffd9e7;--cv-theme-positive-16%: rgba(145, 216, 144, 0.1607843137);--cv-theme-caution-16%: rgba(255, 183, 117, 0.1607843137);--cv-theme-negative-12%: rgba(253, 125, 105, 0.1215686275);--cv-theme-on-secondary-container-12%: rgba(91, 93, 114, 0.1215686275);--cv-theme-on-primary-16%: rgba(17, 26, 40, 0.1607843137);--cv-theme-on-primary-container-8%: rgba(221, 225, 255, 0.0784313725);--cv-theme-on-primary-container-16%: rgba(221, 225, 255, 0.1607843137);--cv-theme-on-secondary-8%: rgba(23, 26, 44, 0.0784313725);--cv-theme-on-secondary-12%: rgba(23, 26, 44, 0.1215686275);--cv-theme-on-secondary-16%: rgba(23, 26, 44, 0.1607843137);--cv-theme-on-tertiary-8%: rgba(97, 46, 26, 0.0784313725);--cv-theme-on-tertiary-12%: rgba(97, 46, 26, 0.1215686275);--cv-theme-on-tertiary-16%: rgba(97, 46, 26, 0.1607843137);--cv-theme-on-tertiary-container-16%: rgba(254, 241, 236, 0.1607843137);--cv-theme-on-surface-variant-16%: rgba(213, 211, 216, 0.1607843137);--cv-theme-negative-8%: rgba(253, 125, 105, 0.0784313725);--cv-theme-negative-16%: rgba(253, 125, 105, 0.1607843137);--cv-theme-positive-12%: rgba(145, 216, 144, 0.1215686275);--cv-theme-positive-8%: rgba(145, 216, 144, 0.0784313725);--cv-theme-on-positive-8%: rgba(17, 38, 17, 0.0784313725);--cv-theme-on-positive-12%: rgba(17, 38, 17, 0.1215686275);--cv-theme-on-positive-16%: rgba(17, 38, 17, 0.1607843137);--cv-theme-on-positive-container-8%: rgba(145, 216, 144, 0.0784313725);--cv-theme-on-positive-container-12%: rgba(145, 216, 144, 0.1215686275);--cv-theme-on-positive-container-16%: rgba(145, 216, 144, 0.1607843137);--cv-theme-caution-12%: rgba(255, 183, 117, 0.1215686275);--cv-theme-caution-8%: rgba(255, 183, 117, 0.0784313725);--cv-theme-on-caution-8%: rgba(102, 73, 47, 0.0784313725);--cv-theme-on-caution-12%: rgba(102, 73, 47, 0.1215686275);--cv-theme-on-caution-16%: rgba(102, 73, 47, 0.1607843137);--cv-theme-on-negative-8%: rgba(51, 25, 21, 0.0784313725);--cv-theme-on-negative-12%: rgba(51, 25, 21, 0.1215686275);--cv-theme-on-negative-16%: rgba(51, 25, 21, 0.1607843137);--cv-theme-on-caution-container-8%: rgba(25, 18, 12, 0.0784313725);--cv-theme-on-caution-container-12%: rgba(25, 18, 12, 0.1215686275);--cv-theme-on-caution-container-16%: rgba(25, 18, 12, 0.1607843137);--cv-theme-emphasis-8%: rgba(204, 128, 156, 0.0784313725);--cv-theme-emphasis-12%: rgba(204, 128, 156, 0.1215686275);--cv-theme-emphasis-16%: rgba(204, 128, 156, 0.1607843137);--cv-theme-on-emphasis-8%: rgba(25, 16, 19, 0.0784313725);--cv-theme-on-emphasis-12%: rgba(25, 16, 19, 0.1215686275);--cv-theme-on-emphasis-16%: rgba(25, 16, 19, 0.1607843137);--cv-theme-on-emphasis-container-8%: rgba(255, 217, 231, 0.0784313725);--cv-theme-on-emphasis-container-12%: rgba(255, 217, 231, 0.1215686275);--cv-theme-on-emphasis-container-16%: rgba(255, 217, 231, 0.1607843137);--cv-theme-inverse-on-surface-12%: rgba(62, 62, 65, 0.1215686275);--cv-theme-inverse-primary-12%: rgba(48, 83, 244, 0.1215686275);--cv-theme-inverse-on-surface-8%: rgba(62, 62, 65, 0.0784313725);--cv-theme-inverse-primary-8%: rgba(48, 83, 244, 0.0784313725);--cv-theme-inverse-primary-16%: rgba(48, 83, 244, 0.1607843137);--cv-theme-inverse-on-surface-16%: rgba(62, 62, 65, 0.1607843137);--cv-theme-on-primary-74%: rgba(17, 26, 40, 0.7411764706);--cv-theme-on-surface-74%: rgba(235, 232, 236, 0.7411764706);--cv-theme-tertiary-8%: rgba(255, 95, 2, 0.0784313725);--cv-theme-tertiary-12%: rgba(255, 95, 2, 0.1215686275);--cv-theme-tertiary-16%: rgba(255, 95, 2, 0.1607843137);--cv-theme-secondary-8%: rgba(195, 197, 221, 0.0784313725);--cv-theme-secondary-12%: rgba(195, 197, 221, 0.1215686275);--cv-theme-secondary-16%: rgba(195, 197, 221, 0.1607843137);--cv-theme-on-secondary-74%: rgba(23, 26, 44, 0.7411764706);--cv-theme-inverse-secondary: #5b5d72;--cv-theme-inverse-secondary-8%: rgba(97, 99, 120, 0.0784313725);--cv-theme-inverse-secondary-12%: rgba(97, 99, 120, 0.1215686275);--cv-theme-inverse-secondary-16%: rgba(97, 99, 120, 0.1607843137);--cv-theme-on-tertiary-74%: rgba(97, 46, 26, 0.7411764706);--cv-theme-inverse-tertiary: #612e1a;--cv-theme-inverse-tertiary-8%: rgba(255, 95, 2, 0.0784313725);--cv-theme-inverse-tertiary-12%: rgba(255, 95, 2, 0.1215686275);--cv-theme-inverse-tertiary-16%: rgba(255, 95, 2, 0.1607843137);--cv-theme-on-negative-container-8%: rgba(255, 172, 159, 0.0784313725);--cv-theme-on-negative-container-12%: rgba(255, 172, 159, 0.1215686275);--cv-theme-on-negative-container-16%: rgba(255, 172, 159, 0.1607843137);--cv-theme-on-surface-4%: rgba(235, 232, 236, 0.0392156863);--cv-theme-on-surface-variant-4%: rgba(213, 211, 216, 0.0392156863);--cv-theme-inverse-on-surface-4%: rgba(62, 62, 65, 0.0392156863);--cv-theme-primary-4%: rgba(186, 195, 255, 0.0392156863);--cv-theme-on-primary-4%: rgba(17, 26, 40, 0.0392156863);--cv-theme-on-primary-container-4%: rgba(221, 225, 255, 0.0392156863);--cv-theme-inverse-primary-4%: rgba(48, 83, 244, 0.0392156863);--cv-theme-secondary-4%: rgba(195, 197, 221, 0.0392156863);--cv-theme-on-secondary-4%: rgba(23, 26, 44, 0.0392156863);--cv-theme-on-secondary-container-4%: rgba(91, 93, 114, 0.0392156863);--cv-theme-inverse-secondary-4%: rgba(97, 99, 120, 0.0392156863);--cv-theme-tertiary-4%: rgba(255, 95, 2, 0.0392156863);--cv-theme-on-tertiary-4%: rgba(97, 46, 26, 0.0392156863);--cv-theme-on-tertiary-container-4%: rgba(254, 241, 236, 0.0392156863);--cv-theme-inverse-tertiary-4%: rgba(255, 95, 2, 0.0392156863);--cv-theme-negative-4%: rgba(253, 125, 105, 0.0392156863);--cv-theme-on-negative-4%: rgba(51, 25, 21, 0.0392156863);--cv-theme-on-negative-container-4%: rgba(255, 172, 159, 0.0392156863);--cv-theme-positive-4%: rgba(145, 216, 144, 0.0392156863);--cv-theme-on-positive-4%: rgba(17, 38, 17, 0.0392156863);--cv-theme-on-positive-container-4%: rgba(145, 216, 144, 0.0392156863);--cv-theme-caution-4%: rgba(255, 183, 117, 0.0392156863);--cv-theme-on-caution-4%: rgba(102, 73, 47, 0.0392156863);--cv-theme-on-caution-container-4%: rgba(25, 18, 12, 0.0392156863);--cv-theme-emphasis-4%: rgba(204, 128, 156, 0.0392156863);--cv-theme-on-emphasis-4%4: rgba(25, 16, 19, 0.0392156863);--cv-theme-on-emphasis-container-4%: rgba(255, 217, 231, 0.0392156863);--cv-theme-on-surface-20%: rgba(235, 232, 236, 0.2);--cv-theme-primary-20%: rgba(186, 195, 255, 0.2);--cv-theme-negative-20%: rgba(253, 125, 105, 0.2);--cv-theme-positive-20%: rgba(145, 216, 144, 0.2);--cv-theme-caution-20%: rgba(255, 183, 117, 0.2);--cv-theme-emphasis-20%: rgba(204, 128, 156, 0.2);--cv-theme-primary-24%: rgba(186, 195, 255, 0.2392156863);--cv-theme-negative-24%: rgba(253, 125, 105, 0.2392156863);--cv-theme-positive-24%: rgba(145, 216, 144, 0.2392156863);--cv-theme-caution-24%: rgba(255, 183, 117, 0.2392156863);--cv-theme-emphasis-24%: rgba(204, 128, 156, 0.2392156863);--cv-theme-background: #161616;--cv-theme-surface-variant-8%: rgba(0, 0, 0, 0.0784313725);--cv-theme-surface-variant-12%: rgba(0, 0, 0, 0.1215686275);--cv-theme-surface-variant-16%: rgba(0, 0, 0, 0.1607843137);--cv-theme-error: #fd7d69;--cv-theme-on-background: #ebe8ec;--cv-theme-on-error: #331915;--cv-theme-divider: #3e3e41;--cv-theme-accent: #bac3ff;--cv-theme-surface-canvas: #2c2b2d;--cv-theme-surface-primary: #1d2c43;--cv-theme-surface-primary-highlight: rgba(186, 195, 255, 0.0784313725);--cv-theme-surface-primary-highlight-hover: rgba(186, 195, 255, 0.0784313725);--cv-theme-surface-accent: #1d2c43;--cv-theme-surface-accent-highlight: rgba(186, 195, 255, 0.0784313725);--cv-theme-surface-accent-highlight-hover: rgba(186, 195, 255, 0.0784313725);--cv-theme-surface-secondary: #434659;--cv-theme-surface-secondary-highlight: rgba(195, 197, 221, 0.0784313725);--cv-theme-surface-secondary-highlight-hover: rgba(195, 197, 221, 0.0784313725);--cv-theme-surface-positive: #224b22;--cv-theme-surface-positive-highlight: rgba(145, 216, 144, 0.0784313725);--cv-theme-surface-positive-highlight-hover: rgba(145, 216, 144, 0.0784313725);--cv-theme-surface-caution: #66492f;--cv-theme-surface-caution-highlight: rgba(255, 183, 117, 0.0784313725);--cv-theme-surface-caution-highlight-hover: rgba(255, 183, 117, 0.0784313725);--cv-theme-surface-negative: #65322a;--cv-theme-surface-negative-highlight: rgba(253, 125, 105, 0.0784313725);--cv-theme-surface-negative-highlight-hover: rgba(253, 125, 105, 0.0784313725);--cv-theme-surface-neutral: #faf7fa;--cv-theme-surface-neutral-highlight: rgba(250, 247, 250, 0.04);--cv-theme-surface-neutral-highlight-hover: rgba(250, 247, 250, 0.08);--cv-theme-surface-emphasis: #66404e;--cv-theme-surface-emphasis-highlight: rgba(204, 128, 156, 0.0784313725);--cv-theme-surface-emphasis-highlight-hover: rgba(204, 128, 156, 0.0784313725);--cv-theme-text-primary-on-background: #ebe8ec;--cv-theme-text-secondary-on-background: #ebe8ec;--cv-theme-text-hint-on-background: #ebe8ec;--cv-theme-text-disabled-on-background: rgba(235, 232, 236, 0.3803921569);--cv-theme-text-icon-on-background: #ebe8ec;--cv-theme-text-logo-on-background: #ffffff;--cv-theme-text-primary-on-light: #1e1d1e;--cv-theme-text-secondary-on-light: #5c5b5f;--cv-theme-text-hint-on-light: #5c5b5f;--cv-theme-text-disabled-on-light: rgba(30, 29, 30, 0.3803921569);--cv-theme-text-icon-on-light: #5c5b5f;--cv-theme-text-primary-on-dark: #ebe8ec;--cv-theme-text-secondary-on-dark: #ebe8ec;--cv-theme-text-hint-on-dark: #ebe8ec;--cv-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.3803921569);--cv-theme-text-icon-on-dark: #ebe8ec;--cv-theme-code-snippet-color: #abb2bf;--cv-theme-code-snippet-comment: #5c6370;--cv-theme-code-snippet-keyword: #c678dd;--cv-theme-code-snippet-selector: #e06c75;--cv-theme-code-snippet-literal: #56b6c2;--cv-theme-code-snippet-string: #98c379;--cv-theme-code-snippet-variable: #d19a66;--cv-theme-code-snippet-title: #61aeee;--cv-theme-code-snippet-class: #e6c07b;--mdc-theme-primary: #bac3ff;--mdc-theme-secondary: #c3c5dd;--mdc-theme-error: #fd7d69;--mdc-theme-negative: #fd7d69;--mdc-theme-positive: #91d890;--mdc-theme-caution: #ffcd9e;--mdc-theme-emphasis: #cc809c;--mdc-theme-accent: #bac3ff;--mdc-theme-background: #161616;--mdc-ripple-color: #ebe8ec;--mdc-theme-surface: #161616;--mdc-theme-surface-canvas: #2c2b2d;--mdc-theme-surface-primary: #1d2c43;--mdc-theme-surface-primary-highlight: rgba(186, 195, 255, 0.0784313725);--mdc-theme-surface-primary-highlight-hover: rgba(186, 195, 255, 0.0784313725);--mdc-theme-surface-secondary: #434659;--mdc-theme-surface-secondary-highlight: rgba(195, 197, 221, 0.0784313725);--mdc-theme-surface-secondary-highlight-hover: rgba(195, 197, 221, 0.0784313725);--mdc-theme-surface-caution: #66492f;--mdc-theme-surface-caution-highlight: rgba(255, 183, 117, 0.0784313725);--mdc-theme-surface-caution-highlight-hover: rgba(255, 183, 117, 0.0784313725);--mdc-theme-surface-negative: #65322a;--mdc-theme-surface-negative-highlight: rgba(253, 125, 105, 0.0784313725);--mdc-theme-surface-negative-highlight-hover: rgba(253, 125, 105, 0.0784313725);--mdc-theme-surface-positive: #224b22;--mdc-theme-surface-positive-highlight: rgba(145, 216, 144, 0.0784313725);--mdc-theme-surface-positive-highlight-hover: rgba(145, 216, 144, 0.0784313725);--mdc-theme-surface-neutral: #faf7fa;--mdc-theme-surface-neutral-highlight: rgba(250, 247, 250, 0.04);--mdc-theme-surface-neutral-highlight-hover: rgba(250, 247, 250, 0.08);--mdc-theme-surface-emphasis: #66404e;--mdc-theme-surface-emphasis-highlight: rgba(204, 128, 156, 0.0784313725);--mdc-theme-surface-emphasis-highlight-hover: rgba(204, 128, 156, 0.0784313725);--mdc-theme-on-primary: #111a28;--mdc-theme-on-secondary: #171a2c;--mdc-theme-on-surface: #ebe8ec;--mdc-theme-border: #3e3e41;--mdc-theme-surface-accent: #1d2c43;--mdc-theme-surface-accent-highlight: rgba(186, 195, 255, 0.0784313725);--mdc-theme-surface-accent-highlight-hover: rgba(186, 195, 255, 0.0784313725);--mdc-plain-tooltip-container-color: #ebe8ec;--mdc-plain-tooltip-supporting-text-color: #3e3e41;--mdc-typography-font-family: Arial, sans-serif;--mdc-typography-headline1-font-family: Inter, sans-serif;--mdc-typography-headline1-font-size: 96px;--mdc-typography-headline1-font-weight: 500;--mdc-typography-headline1-line-height: 112px;--mdc-typography-headline2-font-family: Inter, sans-serif;--mdc-typography-headline2-font-size: 60px;--mdc-typography-headline2-font-weight: 600;--mdc-typography-headline2-line-height: 84px;--mdc-typography-headline3-font-family: Inter, sans-serif;--mdc-typography-headline3-font-size: 48px;--mdc-typography-headline3-font-weight: 600;--mdc-typography-headline3-line-height: 64px;--mdc-typography-headline4-font-family: Inter, sans-serif;--mdc-typography-headline4-font-size: 34px;--mdc-typography-headline4-font-weight: 700;--mdc-typography-headline4-line-height: 48px;--mdc-typography-headline5-font-family: Inter, sans-serif;--mdc-typography-headline5-font-size: 24px;--mdc-typography-headline5-font-weight: 700;--mdc-typography-headline5-line-height: 36px;--mdc-typography-headline6-font-family: Inter, sans-serif;--mdc-typography-headline6-font-size: 20px;--mdc-typography-headline6-font-weight: 700;--mdc-typography-headline6-line-height: 28px;--mdc-typography-subtitle1-font-family: Inter, sans-serif;--mdc-typography-subtitle1-font-size: 14px;--mdc-typography-subtitle1-font-weight: 600;--mdc-typography-subtitle1-line-height: 20px;--mdc-typography-subtitle2-font-family: Inter, sans-serif;--mdc-typography-subtitle2-font-size: 16px;--mdc-typography-subtitle2-font-weight: 600;--mdc-typography-subtitle2-line-height: 24px;--mdc-typography-body1-font-family: var(--mdc-typography-font-family);--mdc-typography-body1-font-size: 16px;--mdc-typography-body1-font-weight: 400;--mdc-typography-body1-line-height: 24px;--mdc-typography-body2-font-family: var(--mdc-typography-font-family);--mdc-typography-body2-font-size: 14px;--mdc-typography-body2-font-weight: 400;--mdc-typography-body2-line-height: 20px;--mdc-typography-button-font-family: Inter, sans-serif;--mdc-typography-button-font-size: 14px;--mdc-typography-button-font-weight: 600;--mdc-typography-button-line-height: 16px;--mdc-typography-button-text-transform: none;--mdc-typography-caption-font-family: var(--mdc-typography-font-family);--mdc-typography-caption-font-size: 12px;--mdc-typography-caption-font-weight: 400;--mdc-typography-caption-line-height: 16px;--mdc-theme-text-primary-on-background: #ebe8ec;--mdc-theme-text-secondary-on-background: #ebe8ec;--mdc-theme-text-hint-on-background: #ebe8ec;--mdc-theme-text-disabled-on-background: rgba(235, 232, 236, 0.3803921569);--mdc-theme-text-icon-on-background: #ebe8ec;--mdc-theme-text-primary-on-light: #1e1d1e;--mdc-theme-text-secondary-on-light: #5c5b5f;--mdc-theme-text-hint-on-light: #5c5b5f;--mdc-theme-text-disabled-on-light: rgba(30, 29, 30, 0.3803921569);--mdc-theme-text-icon-on-light: #5c5b5f;--mdc-theme-text-primary-on-dark: #ebe8ec;--mdc-theme-text-secondary-on-dark: #ebe8ec;--mdc-theme-text-hint-on-dark: #ebe8ec;--mdc-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.3803921569);--mdc-theme-text-icon-on-dark: #ebe8ec;--mdc-icon-font: "Material Symbols Outlined";--mdc-shape-small: 8px;--mdc-shape-medium: 8px;border-width:0;border-style:solid}:root .mdc-data-table__sort-icon-button{color:#ebe8ec}:root .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::after{background-color:#ebe8ec;background-color:var(--mdc-ripple-color, #ebe8ec)}:root .mdc-data-table__sort-icon-button:hover .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.08;opacity:var(--mdc-ripple-hover-opacity, 0.08)}:root .mdc-data-table__sort-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-focus-opacity, 0.24)}:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-press-opacity, 0.24)}:root .mdc-data-table__sort-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.24)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button{color:#ebe8ec}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::after{background-color:#ebe8ec;background-color:var(--mdc-ripple-color, #ebe8ec)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:hover .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.08;opacity:var(--mdc-ripple-hover-opacity, 0.08)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-focus-opacity, 0.24)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.24;opacity:var(--mdc-ripple-press-opacity, 0.24)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.24)}:root .mdc-data-table__row--selected{background-color:rgba(250, 247, 250, 0.04)}:root .mdc-data-table__row:not(.mdc-data-table__row--selected):hover{background-color:rgba(250, 247, 250, 0.08)}:root .mdc-data-table__header-cell{color:#ebe8ec}:root .mdc-data-table__pagination-total,:root .mdc-data-table__pagination-rows-per-page-label,:root .mdc-data-table__cell{color:#ebe8ec}:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__leading,:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__notch,:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__trailing{border-color:#3e3e41}:root .mdc-data-table__cell,:root .mdc-data-table__header-cell{border-bottom-color:#3e3e41}:root .mdc-data-table__pagination{border-top-color:#3e3e41}:root .mdc-data-table{width:100%;border-width:0;white-space:normal}:root .mdc-data-table__header-cell{font-family:var(--mdc-typography-font-family);font-size:var(--mdc-typography-body2-font-size);font-weight:600;line-height:var(--mdc-typography-body2-line-height)}:root .mdc-data-table__sort-icon-button{font-size:1rem}/*# sourceMappingURL=dark-theme.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../../../../libs/components/src/theme/prebuilt/dark-theme.scss","../../../../../libs/components/src/theme/_mixins.scss","../../../../../node_modules/@material/theme/_css.scss","../../../../../node_modules/@material/data-table/_data-table-theme.scss","../../../../../node_modules/@material/ripple/_ripple-theme.scss","../../../../../node_modules/@material/notched-outline/_notched-outline-theme.scss","../../../../../libs/components/src/data-table/_data-table.theme.scss"],"names":[],"mappings":"AAQA,MCHI,q+YASF,6BACA,+BACA,2BACA,8BACA,8BACA,6BACA,8BAGA,4BAGA,gCACA,4BACA,6BACA,oCACA,qCACA,yEAIA,+EAIA,uCACA,2EAIA,iFAIA,qCACA,yEAIA,+EAIA,sCACA,0EAIA,gFAIA,sCACA,0EAIA,gFAIA,qCACA,iEAIA,uEAIA,sCACA,0EAIA,gFAIA,gCACA,kCACA,gCACA,4BAGA,oCACA,wEAIA,8EAMA,6CACA,mDAMA,gDACA,0DAIA,2CAIA,4CAIA,8CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,sEACA,uCACA,wCACA,yCACA,sEACA,uCACA,wCACA,yCACA,uDAIA,wCACA,yCAIA,0CAIA,6CACA,wEACA,yCACA,0CAIA,2CAMA,gDAIA,kDAIA,6CAIA,2EAIA,6CAIA,2CACA,6CAIA,wCACA,mEACA,wCACA,0CACA,4CACA,uCACA,qEACA,uCACA,6CAGA,uBACA,wBC/OE,eCqdA,mBFlOF,kDE5BA,wCDvNE,cE8EA,iJF1FE,yBAYF,kDEyfF,kLFrgBI,aAYF,8CEyfF,0NApRI,yBFjPA,aAYF,8CE+fF,kGA/PQ,gCA+PR,yGAxPU,oBA7SO,KF0Bb,aAYF,8CEkRA,4DFlRA,8DCiOF,6EDjOE,cE8EA,2NF1FE,yBAYF,kDEyfF,4PFrgBI,aAYF,8CEyfF,oSApRI,yBFjPA,aAYF,8CE+fF,uIA/PQ,gCA+PR,8IAxPU,oBA7SO,KF0Bb,aAYF,8CEkRA,iGFlRA,8DCsQF,qCDtQE,2CC+UF,qED/UE,2CCyVF,mCDzVE,cCuWF,0HDvWE,cGYF,6WHZE,qBCqSF,+DDrSE,4BC4SF,kCD5SE,yBIxDF,sBACE,WACA,eACA,mBAGF,mCACE,8CACA,gDACA,gBACA,oDAGF,wCACE,eLgSF,cACE,iCACA,0BAEA,oBACE,qBAMA,yDACE,yBAQA,wDACE","file":"dark-theme.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../../../../libs/components/src/theme/prebuilt/dark-theme.scss","../../../../../libs/components/src/theme/_index.scss","../../../../../node_modules/@material/theme/_css.scss","../../../../../node_modules/@material/data-table/_data-table-theme.scss","../../../../../node_modules/@material/ripple/_ripple-theme.scss","../../../../../node_modules/@material/notched-outline/_notched-outline-theme.scss","../../../../../libs/components/src/data-table/_data-table.theme.scss"],"names":[],"mappings":"AAYA,MCVI,q+YASF,6BACA,+BACA,2BACA,8BACA,8BACA,6BACA,8BAGA,4BAGA,gCACA,4BACA,6BACA,oCACA,qCACA,yEAIA,+EAIA,uCACA,2EAIA,iFAIA,qCACA,yEAIA,+EAIA,sCACA,0EAIA,gFAIA,sCACA,0EAIA,gFAIA,qCACA,iEAIA,uEAIA,sCACA,0EAIA,gFAIA,gCACA,kCACA,gCACA,4BAGA,oCACA,wEAIA,8EAMA,6CACA,mDAMA,gDACA,0DAIA,2CAIA,4CAIA,8CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,sEACA,uCACA,wCACA,yCACA,sEACA,uCACA,wCACA,yCACA,uDAIA,wCACA,yCAIA,0CAIA,6CACA,wEACA,yCACA,0CAIA,2CAMA,gDAIA,kDAIA,6CAIA,2EAIA,6CAIA,2CACA,6CAIA,wCACA,mEACA,wCACA,0CACA,4CACA,uCACA,qEACA,uCACA,6CAGA,uBACA,wBC5OE,eCqdA,mBA9PF,wCDvNE,cE8EA,iJF1FE,yBAYF,kDEyfF,kLFrgBI,aAYF,8CEyfF,0NApRI,yBFjPA,aAYF,8CE+fF,kGA/PQ,gCA+PR,yGAxPU,oBA7SO,KF0Bb,aAYF,8CEkRA,4DFlRA,8DCiOF,6EDjOE,cE8EA,2NF1FE,yBAYF,kDEyfF,4PFrgBI,aAYF,8CEyfF,oSApRI,yBFjPA,aAYF,8CE+fF,uIA/PQ,gCA+PR,8IAxPU,oBA7SO,KF0Bb,aAYF,8CEkRA,iGFlRA,8DCsQF,qCDtQE,2CC+UF,qED/UE,2CCyVF,mCDzVE,cCuWF,0HDvWE,cGYF,6WHZE,qBCqSF,+DDrSE,4BC4SF,kCD5SE,yBIxDF,sBACE,WACA,eACA,mBAGF,mCACE,8CACA,gDACA,gBACA,oDAGF,wCACE","file":"dark-theme.css"}
@@ -1 +1 @@
1
- :root{--cv-theme-primary: #3053f4;--cv-theme-primary-container: #ececfe;--cv-theme-on-primary: white;--cv-theme-secondary: #616378;--cv-theme-secondary-container: #dfe1f9;--cv-theme-on-secondary: white;--cv-theme-on-secondary-container: #171a2c;--cv-theme-tertiary: #ff5f02;--cv-theme-tertiary-container: #ffdbce;--cv-theme-on-tertiary: white;--cv-theme-on-tertiary-container: #481300;--cv-theme-surface: #fdf9fc;--cv-theme-surface-dim: #e5e2e6;--cv-theme-surface-bright: #fdf9fc;--cv-theme-surface-container-lowest: white;--cv-theme-surface-container-low: #faf7fa;--cv-theme-surface-container: #f8f5f8;--cv-theme-surface-container-high: #f6f3f6;--cv-theme-surface-container-highest: #f4f1f4;--cv-theme-on-surface: #1e1d1e;--cv-theme-on-surface-variant: #5c5b5f;--cv-theme-inverse-surface: #3e3e41;--cv-theme-inverse-on-surface: #f6f3f6;--cv-theme-negative: #ae1209;--cv-theme-negative-container: #ffb2ae;--cv-theme-on-negative: white;--cv-theme-on-negative-container: #110201;--cv-theme-positive: #036600;--cv-theme-positive-container: #8fcc8e;--cv-theme-on-positive: white;--cv-theme-on-positive-container: #000a00;--cv-theme-caution: #f38800;--cv-theme-caution-container: #ffcc8c;--cv-theme-on-caution: white;--cv-theme-on-caution-container: #180e00;--cv-theme-outline: #76757d;--cv-theme-outline-variant: #d5d3d8;--cv-theme-shadow: black;--cv-theme-scrim: black;--cv-theme-primary-fixed: #dee0ff;--cv-theme-primary-fixed-dim: #bac3ff;--cv-theme-secondary-fixed: #dfe1f9;--cv-theme-secondary-fixed-dim: #c3c5dd;--cv-theme-tertiary-fixed: #ffdbce;--cv-theme-tertiary-fixed-dim: #ffc0a8;--cv-theme-primary-8%: rgba(48, 83, 244, 0.0784313725);--cv-theme-primary-12%: rgba(48, 83, 244, 0.1215686275);--cv-theme-on-surface-8%: rgba(30, 29, 30, 0.0784313725);--cv-theme-on-surface-12%: rgba(30, 29, 30, 0.1215686275);--cv-theme-on-primary-container: #00115a;--cv-theme-inverse-primary: #bac3ff;--cv-theme-on-surface-38%: rgba(30, 29, 30, 0.3803921569);--cv-theme-on-surface-16%: rgba(30, 29, 30, 0.1607843137);--cv-theme-on-primary-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-primary-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-primary-16%: rgba(48, 83, 244, 0.1607843137);--cv-theme-on-surface-variant-8%: rgba(92, 91, 95, 0.0784313725);--cv-theme-on-tertiary-container-8%: rgba(72, 19, 0, 0.0784313725);--cv-theme-on-tertiary-container-12%: rgba(72, 19, 0, 0.1215686275);--cv-theme-on-primary-container-12%: rgba(0, 17, 90, 0.1215686275);--cv-theme-on-surface-variant-12%: rgba(92, 91, 95, 0.1215686275);--cv-theme-on-secondary-container-8%: rgba(23, 26, 44, 0.0784313725);--cv-theme-on-secondary-container-16%: rgba(23, 26, 44, 0.1607843137);--cv-theme-outline-8%: rgba(118, 117, 125, 0.0784313725);--cv-theme-outline-12%: rgba(118, 117, 125, 0.1215686275);--cv-theme-outline-16%: rgba(118, 117, 125, 0.1607843137);--cv-theme-surface-variant: #ebe8ec;--cv-theme-emphasis: #b10142;--cv-theme-emphasis-container: #e8b3c6;--cv-theme-on-emphasis: white;--cv-theme-on-emphasis-container: #120007;--cv-theme-positive-16%: rgba(3, 102, 0, 0.1607843137);--cv-theme-caution-16%: rgba(243, 136, 0, 0.1607843137);--cv-theme-negative-12%: rgba(174, 18, 9, 0.1215686275);--cv-theme-on-secondary-container-12%: rgba(23, 26, 44, 0.1215686275);--cv-theme-on-primary-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-primary-container-8%: rgba(0, 17, 90, 0.0784313725);--cv-theme-on-primary-container-16%: rgba(0, 17, 90, 0.1607843137);--cv-theme-on-secondary-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-on-secondary-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-secondary-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-tertiary-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-on-tertiary-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-tertiary-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-tertiary-container-16%: rgba(72, 19, 0, 0.1607843137);--cv-theme-on-surface-variant-16%: rgba(92, 91, 95, 0.1607843137);--cv-theme-negative-8%: rgba(174, 18, 9, 0.0784313725);--cv-theme-negative-16%: rgba(174, 18, 9, 0.1607843137);--cv-theme-positive-12%: rgba(3, 102, 0, 0.1215686275);--cv-theme-positive-8%: rgba(3, 102, 0, 0.0784313725);--cv-theme-on-positive-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-on-positive-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-positive-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-positive-container-8%: rgba(0, 10, 0, 0.0784313725);--cv-theme-on-positive-container-12%: rgba(0, 10, 0, 0.1215686275);--cv-theme-on-positive-container-16%: rgba(0, 10, 0, 0.1607843137);--cv-theme-caution-12%: rgba(243, 136, 0, 0.1215686275);--cv-theme-caution-8%: rgba(243, 136, 0, 0.0784313725);--cv-theme-on-caution-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-on-caution-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-caution-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-negative-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-on-negative-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-negative-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-caution-container-8%: rgba(24, 14, 0, 0.0784313725);--cv-theme-on-caution-container-12%: rgba(24, 14, 0, 0.1215686275);--cv-theme-on-caution-container-16%: rgba(24, 14, 0, 0.1607843137);--cv-theme-emphasis-8%: rgba(177, 1, 66, 0.0784313725);--cv-theme-emphasis-12%: rgba(177, 1, 66, 0.1215686275);--cv-theme-emphasis-16%: rgba(177, 1, 66, 0.1607843137);--cv-theme-on-emphasis-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-on-emphasis-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-emphasis-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-emphasis-container-8%: rgba(18, 0, 7, 0.0784313725);--cv-theme-on-emphasis-container-12%: rgba(18, 0, 7, 0.1215686275);--cv-theme-on-emphasis-container-16%: rgba(24, 14, 0, 0.1607843137);--cv-theme-inverse-on-surface-12%: rgba(246, 243, 246, 0.1215686275);--cv-theme-inverse-primary-12%: rgba(186, 195, 255, 0.1215686275);--cv-theme-inverse-on-surface-8%: rgba(246, 243, 246, 0.0784313725);--cv-theme-inverse-primary-8%: rgba(186, 195, 255, 0.0784313725);--cv-theme-inverse-primary-16%: rgba(186, 195, 255, 0.1607843137);--cv-theme-inverse-on-surface-16%: rgba(246, 243, 246, 0.1215686275);--cv-theme-on-primary-74%: rgba(255, 255, 255, 0.7411764706);--cv-theme-on-surface-74%: rgba(30, 29, 30, 0.7411764706);--cv-theme-tertiary-8%: rgba(255, 95, 2, 0.0784313725);--cv-theme-tertiary-12%: rgba(255, 95, 2, 0.1215686275);--cv-theme-tertiary-16%: rgba(255, 95, 2, 0.1607843137);--cv-theme-secondary-8%: rgba(97, 99, 120, 0.0784313725);--cv-theme-secondary-12%: rgba(97, 99, 120, 0.1215686275);--cv-theme-secondary-16%: rgba(97, 99, 120, 0.1607843137);--cv-theme-on-secondary-74%: rgba(255, 255, 255, 0.7411764706);--cv-theme-inverse-secondary: #c3c5dd;--cv-theme-inverse-secondary-8%: rgba(195, 197, 221, 0.0784313725);--cv-theme-inverse-secondary-12%: rgba(195, 197, 221, 0.1215686275);--cv-theme-inverse-secondary-16%: rgba(195, 197, 221, 0.1607843137);--cv-theme-on-tertiary-74%: rgba(255, 255, 255, 0.7411764706);--cv-theme-inverse-tertiary: #ff5f02;--cv-theme-inverse-tertiary-8%: rgba(255, 95, 2, 0.0784313725);--cv-theme-inverse-tertiary-12%: rgba(255, 95, 2, 0.1215686275);--cv-theme-inverse-tertiary-16%: rgba(255, 95, 2, 0.1607843137);--cv-theme-on-negative-container-8%: rgba(17, 2, 1, 0.0784313725);--cv-theme-on-negative-container-12%: rgba(17, 2, 1, 0.1215686275);--cv-theme-on-negative-container-16%: rgba(17, 2, 1, 0.1607843137);--cv-theme-on-surface-4%: rgba(30, 29, 30, 0.0392156863);--cv-theme-on-surface-variant-4%: rgba(92, 91, 95, 0.0392156863);--cv-theme-inverse-on-surface-4%: rgba(246, 243, 246, 0.0392156863);--cv-theme-primary-4%: rgba(48, 83, 244, 0.0392156863);--cv-theme-on-primary-4%: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-primary-container-4%: rgba(0, 17, 90, 0.0392156863);--cv-theme-inverse-primary-4%: rgba(186, 195, 255, 0.0392156863);--cv-theme-secondary-4%: rgba(97, 99, 120, 0.0392156863);--cv-theme-on-secondary-4%: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-secondary-container-4%: rgba(23, 26, 44, 0.0392156863);--cv-theme-inverse-secondary-4%: rgba(195, 197, 221, 0.0392156863);--cv-theme-tertiary-4%: rgba(255, 95, 2, 0.0392156863);--cv-theme-on-tertiary-4%: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-tertiary-container-4%: rgba(72, 19, 0, 0.0392156863);--cv-theme-inverse-tertiary-4%: rgba(255, 95, 2, 0.0392156863);--cv-theme-negative-4%: rgba(174, 18, 9, 0.0392156863);--cv-theme-on-negative-4%: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-negative-container-4%: rgba(17, 2, 1, 0.0392156863);--cv-theme-positive-4%: rgba(3, 102, 0, 0.0392156863);--cv-theme-on-positive-4%: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-positive-container-4%: rgba(0, 10, 0, 0.0392156863);--cv-theme-caution-4%: rgba(243, 136, 0, 0.0392156863);--cv-theme-on-caution-4%: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-caution-container-4%: rgba(24, 14, 0, 0.0392156863);--cv-theme-emphasis-4%: rgba(177, 1, 66, 0.0392156863);--cv-theme-on-emphasis-4%4: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-emphasis-container-4%: rgba(18, 0, 7, 0.0392156863);--cv-theme-on-surface-20%: rgba(30, 29, 30, 0.2);--cv-theme-primary-20%: rgba(48, 83, 244, 0.2);--cv-theme-negative-20%: rgba(174, 18, 9, 0.2);--cv-theme-positive-20%: rgba(3, 102, 0, 0.2);--cv-theme-caution-20%: rgba(243, 136, 0, 0.2);--cv-theme-emphasis-20%: rgba(177, 1, 66, 0.2);--cv-theme-primary-24%: rgba(48, 83, 244, 0.2392156863);--cv-theme-negative-24%: rgba(174, 18, 9, 0.2392156863);--cv-theme-positive-24%: rgba(3, 102, 0, 0.2392156863);--cv-theme-caution-24%: rgba(243, 136, 0, 0.2392156863);--cv-theme-emphasis-24%: rgba(177, 1, 66, 0.2392156863);--cv-theme-background: #fdf9fc;--cv-theme-surface-variant-8%: rgba(253, 249, 252, 0.0784313725);--cv-theme-surface-variant-12%: rgba(253, 249, 252, 0.1215686275);--cv-theme-surface-variant-16%: rgba(253, 249, 252, 0.1607843137);--cv-theme-error: #ae1209;--cv-theme-on-background: #1e1d1e;--cv-theme-on-error: white;--cv-theme-divider: #d5d3d8;--cv-theme-accent: #3053f4;--cv-theme-surface-canvas: white;--cv-theme-surface-primary: #ececfe;--cv-theme-surface-primary-highlight: rgba(48, 83, 244, 0.0784313725);--cv-theme-surface-primary-highlight-hover: rgba(48, 83, 244, 0.0784313725);--cv-theme-surface-accent: #ececfe;--cv-theme-surface-accent-highlight: rgba(48, 83, 244, 0.0784313725);--cv-theme-surface-accent-highlight-hover: rgba(48, 83, 244, 0.1215686275);--cv-theme-surface-secondary: #dfe1f9;--cv-theme-surface-secondary-highlight: rgba(97, 99, 120, 0.0784313725);--cv-theme-surface-secondary-highlight-hover: rgba(97, 99, 120, 0.0784313725);--cv-theme-surface-positive: #8fcc8e;--cv-theme-surface-positive-highlight: rgba(3, 102, 0, 0.0784313725);--cv-theme-surface-positive-highlight-hover: rgba(3, 102, 0, 0.0784313725);--cv-theme-surface-caution: #ffcc8c;--cv-theme-surface-caution-highlight: rgba(243, 136, 0, 0.0784313725);--cv-theme-surface-caution-highlight-hover: rgba(243, 136, 0, 0.0784313725);--cv-theme-surface-negative: #ffb2ae;--cv-theme-surface-negative-highlight: rgba(174, 18, 9, 0.0784313725);--cv-theme-surface-negative-highlight-hover: rgba(174, 18, 9, 0.0784313725);--cv-theme-surface-neutral: #faf7fa;--cv-theme-surface-neutral-highlight: rgba(250, 247, 250, 0.04);--cv-theme-surface-neutral-highlight-hover: rgba(250, 247, 250, 0.08);--cv-theme-surface-emphasis: #e8b3c6;--cv-theme-surface-emphasis-highlight: rgba(177, 1, 66, 0.0784313725);--cv-theme-surface-emphasis-highlight-hover: rgba(177, 1, 66, 0.0784313725);--cv-theme-text-primary-on-background: #1e1d1e;--cv-theme-text-secondary-on-background: #5c5b5f;--cv-theme-text-hint-on-background: #5c5b5f;--cv-theme-text-disabled-on-background: rgba(30, 29, 30, 0.3803921569);--cv-theme-text-icon-on-background: #5c5b5f;--cv-theme-text-logo-on-background: #FF5F02;--cv-theme-text-primary-on-light: #1e1d1e;--cv-theme-text-secondary-on-light: #5c5b5f;--cv-theme-text-hint-on-light: #5c5b5f;--cv-theme-text-disabled-on-light: rgba(30, 29, 30, 0.3803921569);--cv-theme-text-icon-on-light: #5c5b5f;--cv-theme-text-primary-on-dark: #ebe8ec;--cv-theme-text-secondary-on-dark: #ebe8ec;--cv-theme-text-hint-on-dark: #ebe8ec;--cv-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.3803921569);--cv-theme-text-icon-on-dark: #ebe8ec;--cv-theme-code-snippet-color: #383a42;--cv-theme-code-snippet-comment: #a0a1a7;--cv-theme-code-snippet-keyword: #a626a4;--cv-theme-code-snippet-selector: #e45649;--cv-theme-code-snippet-literal: #0184bb;--cv-theme-code-snippet-string: #50a14f;--cv-theme-code-snippet-variable: #986801;--cv-theme-code-snippet-title: #4078f2;--cv-theme-code-snippet-class: #c18401;--mdc-theme-primary: #3053f4;--mdc-theme-secondary: #616378;--mdc-theme-error: #ae1209;--mdc-theme-negative: #ae1209;--mdc-theme-positive: #036600;--mdc-theme-caution: #f38800;--mdc-theme-emphasis: #b10142;--mdc-theme-accent: #3053f4;--mdc-theme-background: #fdf9fc;--mdc-ripple-color: #1e1d1e;--mdc-theme-surface: #fdf9fc;--mdc-theme-surface-canvas: white;--mdc-theme-surface-primary: #ececfe;--mdc-theme-surface-primary-highlight: rgba(48, 83, 244, 0.0784313725);--mdc-theme-surface-primary-highlight-hover: rgba(48, 83, 244, 0.0784313725);--mdc-theme-surface-secondary: #dfe1f9;--mdc-theme-surface-secondary-highlight: rgba(97, 99, 120, 0.0784313725);--mdc-theme-surface-secondary-highlight-hover: rgba(97, 99, 120, 0.0784313725);--mdc-theme-surface-caution: #ffcc8c;--mdc-theme-surface-caution-highlight: rgba(243, 136, 0, 0.0784313725);--mdc-theme-surface-caution-highlight-hover: rgba(243, 136, 0, 0.0784313725);--mdc-theme-surface-negative: #ffb2ae;--mdc-theme-surface-negative-highlight: rgba(174, 18, 9, 0.0784313725);--mdc-theme-surface-negative-highlight-hover: rgba(174, 18, 9, 0.0784313725);--mdc-theme-surface-positive: #8fcc8e;--mdc-theme-surface-positive-highlight: rgba(3, 102, 0, 0.0784313725);--mdc-theme-surface-positive-highlight-hover: rgba(3, 102, 0, 0.0784313725);--mdc-theme-surface-neutral: #faf7fa;--mdc-theme-surface-neutral-highlight: rgba(250, 247, 250, 0.04);--mdc-theme-surface-neutral-highlight-hover: rgba(250, 247, 250, 0.08);--mdc-theme-surface-emphasis: #e8b3c6;--mdc-theme-surface-emphasis-highlight: rgba(177, 1, 66, 0.0784313725);--mdc-theme-surface-emphasis-highlight-hover: rgba(177, 1, 66, 0.0784313725);--mdc-theme-on-primary: white;--mdc-theme-on-secondary: white;--mdc-theme-on-surface: #1e1d1e;--mdc-theme-border: #d5d3d8;--mdc-theme-surface-accent: #ececfe;--mdc-theme-surface-accent-highlight: rgba(48, 83, 244, 0.0784313725);--mdc-theme-surface-accent-highlight-hover: rgba(48, 83, 244, 0.0784313725);--mdc-plain-tooltip-container-color: #3e3e41;--mdc-plain-tooltip-supporting-text-color: #f6f3f6;--mdc-typography-font-family: Arial, sans-serif;--mdc-typography-headline1-font-family: Inter, sans-serif;--mdc-typography-headline1-font-size: 96px;--mdc-typography-headline1-font-weight: 500;--mdc-typography-headline1-line-height: 112px;--mdc-typography-headline2-font-family: Inter, sans-serif;--mdc-typography-headline2-font-size: 60px;--mdc-typography-headline2-font-weight: 600;--mdc-typography-headline2-line-height: 84px;--mdc-typography-headline3-font-family: Inter, sans-serif;--mdc-typography-headline3-font-size: 48px;--mdc-typography-headline3-font-weight: 600;--mdc-typography-headline3-line-height: 64px;--mdc-typography-headline4-font-family: Inter, sans-serif;--mdc-typography-headline4-font-size: 34px;--mdc-typography-headline4-font-weight: 700;--mdc-typography-headline4-line-height: 48px;--mdc-typography-headline5-font-family: Inter, sans-serif;--mdc-typography-headline5-font-size: 24px;--mdc-typography-headline5-font-weight: 700;--mdc-typography-headline5-line-height: 36px;--mdc-typography-headline6-font-family: Inter, sans-serif;--mdc-typography-headline6-font-size: 20px;--mdc-typography-headline6-font-weight: 700;--mdc-typography-headline6-line-height: 28px;--mdc-typography-subtitle1-font-family: Inter, sans-serif;--mdc-typography-subtitle1-font-size: 14px;--mdc-typography-subtitle1-font-weight: 600;--mdc-typography-subtitle1-line-height: 20px;--mdc-typography-subtitle2-font-family: Inter, sans-serif;--mdc-typography-subtitle2-font-size: 16px;--mdc-typography-subtitle2-font-weight: 600;--mdc-typography-subtitle2-line-height: 24px;--mdc-typography-body1-font-family: var(--mdc-typography-font-family);--mdc-typography-body1-font-size: 16px;--mdc-typography-body1-font-weight: 400;--mdc-typography-body1-line-height: 24px;--mdc-typography-body2-font-family: var(--mdc-typography-font-family);--mdc-typography-body2-font-size: 14px;--mdc-typography-body2-font-weight: 400;--mdc-typography-body2-line-height: 20px;--mdc-typography-button-font-family: Inter, sans-serif;--mdc-typography-button-font-size: 14px;--mdc-typography-button-font-weight: 600;--mdc-typography-button-line-height: 16px;--mdc-typography-button-text-transform: none;--mdc-typography-caption-font-family: var(--mdc-typography-font-family);--mdc-typography-caption-font-size: 12px;--mdc-typography-caption-font-weight: 400;--mdc-typography-caption-line-height: 16px;--mdc-theme-text-primary-on-background: #1e1d1e;--mdc-theme-text-secondary-on-background: #5c5b5f;--mdc-theme-text-hint-on-background: #5c5b5f;--mdc-theme-text-disabled-on-background: rgba(30, 29, 30, 0.3803921569);--mdc-theme-text-icon-on-background: #5c5b5f;--mdc-theme-text-primary-on-light: #1e1d1e;--mdc-theme-text-secondary-on-light: #5c5b5f;--mdc-theme-text-hint-on-light: #5c5b5f;--mdc-theme-text-disabled-on-light: rgba(30, 29, 30, 0.3803921569);--mdc-theme-text-icon-on-light: #5c5b5f;--mdc-theme-text-primary-on-dark: #ebe8ec;--mdc-theme-text-secondary-on-dark: #ebe8ec;--mdc-theme-text-hint-on-dark: #ebe8ec;--mdc-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.3803921569);--mdc-theme-text-icon-on-dark: #ebe8ec;--mdc-icon-font: "Material Symbols Outlined";--mdc-shape-small: 8px;--mdc-shape-medium: 8px;border-width:0;border-style:solid;color:var(--mdc-theme-text-primary-on-background)}:root .mdc-data-table__sort-icon-button{color:#5c5b5f}:root .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::after{background-color:#5c5b5f;background-color:var(--mdc-ripple-color, #5c5b5f)}:root .mdc-data-table__sort-icon-button:hover .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.04;opacity:var(--mdc-ripple-hover-opacity, 0.04)}:root .mdc-data-table__sort-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-focus-opacity, 0.12)}:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-press-opacity, 0.12)}:root .mdc-data-table__sort-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.12)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button{color:#5c5b5f}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::after{background-color:#5c5b5f;background-color:var(--mdc-ripple-color, #5c5b5f)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:hover .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.04;opacity:var(--mdc-ripple-hover-opacity, 0.04)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-focus-opacity, 0.12)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-press-opacity, 0.12)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.12)}:root .mdc-data-table__row--selected{background-color:rgba(250, 247, 250, 0.04)}:root .mdc-data-table__row:not(.mdc-data-table__row--selected):hover{background-color:rgba(250, 247, 250, 0.08)}:root .mdc-data-table__header-cell{color:#1e1d1e}:root .mdc-data-table__pagination-total,:root .mdc-data-table__pagination-rows-per-page-label,:root .mdc-data-table__cell{color:#1e1d1e}:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__leading,:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__notch,:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__trailing{border-color:#d5d3d8}:root .mdc-data-table__cell,:root .mdc-data-table__header-cell{border-bottom-color:#d5d3d8}:root .mdc-data-table__pagination{border-top-color:#d5d3d8}:root .mdc-data-table{width:100%;border-width:0;white-space:normal}:root .mdc-data-table__header-cell{font-family:var(--mdc-typography-font-family);font-size:var(--mdc-typography-body2-font-size);font-weight:600;line-height:var(--mdc-typography-body2-line-height)}:root .mdc-data-table__sort-icon-button{font-size:1rem}:root a[href]{color:var(--mdc-theme-secondary);text-decoration:underline}:root a[href]:hover{text-decoration:none}:root .sbdocs.sbdocs-preview.sb-unstyled>div:first-child{background-color:inherit}:root .sbdocs-content table .docblock-argstable-body td{background-color:inherit}/*# sourceMappingURL=light-theme.css.map */
1
+ :root{--cv-theme-primary: #3053f4;--cv-theme-primary-container: #ececfe;--cv-theme-on-primary: white;--cv-theme-secondary: #616378;--cv-theme-secondary-container: #dfe1f9;--cv-theme-on-secondary: white;--cv-theme-on-secondary-container: #171a2c;--cv-theme-tertiary: #ff5f02;--cv-theme-tertiary-container: #ffdbce;--cv-theme-on-tertiary: white;--cv-theme-on-tertiary-container: #481300;--cv-theme-surface: #fdf9fc;--cv-theme-surface-dim: #e5e2e6;--cv-theme-surface-bright: #fdf9fc;--cv-theme-surface-container-lowest: white;--cv-theme-surface-container-low: #faf7fa;--cv-theme-surface-container: #f8f5f8;--cv-theme-surface-container-high: #f6f3f6;--cv-theme-surface-container-highest: #f4f1f4;--cv-theme-on-surface: #1e1d1e;--cv-theme-on-surface-variant: #5c5b5f;--cv-theme-inverse-surface: #3e3e41;--cv-theme-inverse-on-surface: #f6f3f6;--cv-theme-negative: #ae1209;--cv-theme-negative-container: #ffb2ae;--cv-theme-on-negative: white;--cv-theme-on-negative-container: #110201;--cv-theme-positive: #036600;--cv-theme-positive-container: #8fcc8e;--cv-theme-on-positive: white;--cv-theme-on-positive-container: #000a00;--cv-theme-caution: #f38800;--cv-theme-caution-container: #ffcc8c;--cv-theme-on-caution: white;--cv-theme-on-caution-container: #180e00;--cv-theme-outline: #76757d;--cv-theme-outline-variant: #d5d3d8;--cv-theme-shadow: black;--cv-theme-scrim: black;--cv-theme-primary-fixed: #dee0ff;--cv-theme-primary-fixed-dim: #bac3ff;--cv-theme-secondary-fixed: #dfe1f9;--cv-theme-secondary-fixed-dim: #c3c5dd;--cv-theme-tertiary-fixed: #ffdbce;--cv-theme-tertiary-fixed-dim: #ffc0a8;--cv-theme-primary-8%: rgba(48, 83, 244, 0.0784313725);--cv-theme-primary-12%: rgba(48, 83, 244, 0.1215686275);--cv-theme-on-surface-8%: rgba(30, 29, 30, 0.0784313725);--cv-theme-on-surface-12%: rgba(30, 29, 30, 0.1215686275);--cv-theme-on-primary-container: #00115a;--cv-theme-inverse-primary: #bac3ff;--cv-theme-on-surface-38%: rgba(30, 29, 30, 0.3803921569);--cv-theme-on-surface-16%: rgba(30, 29, 30, 0.1607843137);--cv-theme-on-primary-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-primary-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-primary-16%: rgba(48, 83, 244, 0.1607843137);--cv-theme-on-surface-variant-8%: rgba(92, 91, 95, 0.0784313725);--cv-theme-on-tertiary-container-8%: rgba(72, 19, 0, 0.0784313725);--cv-theme-on-tertiary-container-12%: rgba(72, 19, 0, 0.1215686275);--cv-theme-on-primary-container-12%: rgba(0, 17, 90, 0.1215686275);--cv-theme-on-surface-variant-12%: rgba(92, 91, 95, 0.1215686275);--cv-theme-on-secondary-container-8%: rgba(23, 26, 44, 0.0784313725);--cv-theme-on-secondary-container-16%: rgba(23, 26, 44, 0.1607843137);--cv-theme-outline-8%: rgba(118, 117, 125, 0.0784313725);--cv-theme-outline-12%: rgba(118, 117, 125, 0.1215686275);--cv-theme-outline-16%: rgba(118, 117, 125, 0.1607843137);--cv-theme-surface-variant: #ebe8ec;--cv-theme-emphasis: #b10142;--cv-theme-emphasis-container: #e8b3c6;--cv-theme-on-emphasis: white;--cv-theme-on-emphasis-container: #120007;--cv-theme-positive-16%: rgba(3, 102, 0, 0.1607843137);--cv-theme-caution-16%: rgba(243, 136, 0, 0.1607843137);--cv-theme-negative-12%: rgba(174, 18, 9, 0.1215686275);--cv-theme-on-secondary-container-12%: rgba(23, 26, 44, 0.1215686275);--cv-theme-on-primary-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-primary-container-8%: rgba(0, 17, 90, 0.0784313725);--cv-theme-on-primary-container-16%: rgba(0, 17, 90, 0.1607843137);--cv-theme-on-secondary-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-on-secondary-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-secondary-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-tertiary-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-on-tertiary-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-tertiary-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-tertiary-container-16%: rgba(72, 19, 0, 0.1607843137);--cv-theme-on-surface-variant-16%: rgba(92, 91, 95, 0.1607843137);--cv-theme-negative-8%: rgba(174, 18, 9, 0.0784313725);--cv-theme-negative-16%: rgba(174, 18, 9, 0.1607843137);--cv-theme-positive-12%: rgba(3, 102, 0, 0.1215686275);--cv-theme-positive-8%: rgba(3, 102, 0, 0.0784313725);--cv-theme-on-positive-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-on-positive-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-positive-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-positive-container-8%: rgba(0, 10, 0, 0.0784313725);--cv-theme-on-positive-container-12%: rgba(0, 10, 0, 0.1215686275);--cv-theme-on-positive-container-16%: rgba(0, 10, 0, 0.1607843137);--cv-theme-caution-12%: rgba(243, 136, 0, 0.1215686275);--cv-theme-caution-8%: rgba(243, 136, 0, 0.0784313725);--cv-theme-on-caution-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-on-caution-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-caution-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-negative-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-on-negative-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-negative-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-caution-container-8%: rgba(24, 14, 0, 0.0784313725);--cv-theme-on-caution-container-12%: rgba(24, 14, 0, 0.1215686275);--cv-theme-on-caution-container-16%: rgba(24, 14, 0, 0.1607843137);--cv-theme-emphasis-8%: rgba(177, 1, 66, 0.0784313725);--cv-theme-emphasis-12%: rgba(177, 1, 66, 0.1215686275);--cv-theme-emphasis-16%: rgba(177, 1, 66, 0.1607843137);--cv-theme-on-emphasis-8%: rgba(255, 255, 255, 0.0784313725);--cv-theme-on-emphasis-12%: rgba(255, 255, 255, 0.1215686275);--cv-theme-on-emphasis-16%: rgba(255, 255, 255, 0.1607843137);--cv-theme-on-emphasis-container-8%: rgba(18, 0, 7, 0.0784313725);--cv-theme-on-emphasis-container-12%: rgba(18, 0, 7, 0.1215686275);--cv-theme-on-emphasis-container-16%: rgba(24, 14, 0, 0.1607843137);--cv-theme-inverse-on-surface-12%: rgba(246, 243, 246, 0.1215686275);--cv-theme-inverse-primary-12%: rgba(186, 195, 255, 0.1215686275);--cv-theme-inverse-on-surface-8%: rgba(246, 243, 246, 0.0784313725);--cv-theme-inverse-primary-8%: rgba(186, 195, 255, 0.0784313725);--cv-theme-inverse-primary-16%: rgba(186, 195, 255, 0.1607843137);--cv-theme-inverse-on-surface-16%: rgba(246, 243, 246, 0.1215686275);--cv-theme-on-primary-74%: rgba(255, 255, 255, 0.7411764706);--cv-theme-on-surface-74%: rgba(30, 29, 30, 0.7411764706);--cv-theme-tertiary-8%: rgba(255, 95, 2, 0.0784313725);--cv-theme-tertiary-12%: rgba(255, 95, 2, 0.1215686275);--cv-theme-tertiary-16%: rgba(255, 95, 2, 0.1607843137);--cv-theme-secondary-8%: rgba(97, 99, 120, 0.0784313725);--cv-theme-secondary-12%: rgba(97, 99, 120, 0.1215686275);--cv-theme-secondary-16%: rgba(97, 99, 120, 0.1607843137);--cv-theme-on-secondary-74%: rgba(255, 255, 255, 0.7411764706);--cv-theme-inverse-secondary: #c3c5dd;--cv-theme-inverse-secondary-8%: rgba(195, 197, 221, 0.0784313725);--cv-theme-inverse-secondary-12%: rgba(195, 197, 221, 0.1215686275);--cv-theme-inverse-secondary-16%: rgba(195, 197, 221, 0.1607843137);--cv-theme-on-tertiary-74%: rgba(255, 255, 255, 0.7411764706);--cv-theme-inverse-tertiary: #ff5f02;--cv-theme-inverse-tertiary-8%: rgba(255, 95, 2, 0.0784313725);--cv-theme-inverse-tertiary-12%: rgba(255, 95, 2, 0.1215686275);--cv-theme-inverse-tertiary-16%: rgba(255, 95, 2, 0.1607843137);--cv-theme-on-negative-container-8%: rgba(17, 2, 1, 0.0784313725);--cv-theme-on-negative-container-12%: rgba(17, 2, 1, 0.1215686275);--cv-theme-on-negative-container-16%: rgba(17, 2, 1, 0.1607843137);--cv-theme-on-surface-4%: rgba(30, 29, 30, 0.0392156863);--cv-theme-on-surface-variant-4%: rgba(92, 91, 95, 0.0392156863);--cv-theme-inverse-on-surface-4%: rgba(246, 243, 246, 0.0392156863);--cv-theme-primary-4%: rgba(48, 83, 244, 0.0392156863);--cv-theme-on-primary-4%: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-primary-container-4%: rgba(0, 17, 90, 0.0392156863);--cv-theme-inverse-primary-4%: rgba(186, 195, 255, 0.0392156863);--cv-theme-secondary-4%: rgba(97, 99, 120, 0.0392156863);--cv-theme-on-secondary-4%: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-secondary-container-4%: rgba(23, 26, 44, 0.0392156863);--cv-theme-inverse-secondary-4%: rgba(195, 197, 221, 0.0392156863);--cv-theme-tertiary-4%: rgba(255, 95, 2, 0.0392156863);--cv-theme-on-tertiary-4%: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-tertiary-container-4%: rgba(72, 19, 0, 0.0392156863);--cv-theme-inverse-tertiary-4%: rgba(255, 95, 2, 0.0392156863);--cv-theme-negative-4%: rgba(174, 18, 9, 0.0392156863);--cv-theme-on-negative-4%: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-negative-container-4%: rgba(17, 2, 1, 0.0392156863);--cv-theme-positive-4%: rgba(3, 102, 0, 0.0392156863);--cv-theme-on-positive-4%: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-positive-container-4%: rgba(0, 10, 0, 0.0392156863);--cv-theme-caution-4%: rgba(243, 136, 0, 0.0392156863);--cv-theme-on-caution-4%: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-caution-container-4%: rgba(24, 14, 0, 0.0392156863);--cv-theme-emphasis-4%: rgba(177, 1, 66, 0.0392156863);--cv-theme-on-emphasis-4%4: rgba(255, 255, 255, 0.0392156863);--cv-theme-on-emphasis-container-4%: rgba(18, 0, 7, 0.0392156863);--cv-theme-on-surface-20%: rgba(30, 29, 30, 0.2);--cv-theme-primary-20%: rgba(48, 83, 244, 0.2);--cv-theme-negative-20%: rgba(174, 18, 9, 0.2);--cv-theme-positive-20%: rgba(3, 102, 0, 0.2);--cv-theme-caution-20%: rgba(243, 136, 0, 0.2);--cv-theme-emphasis-20%: rgba(177, 1, 66, 0.2);--cv-theme-primary-24%: rgba(48, 83, 244, 0.2392156863);--cv-theme-negative-24%: rgba(174, 18, 9, 0.2392156863);--cv-theme-positive-24%: rgba(3, 102, 0, 0.2392156863);--cv-theme-caution-24%: rgba(243, 136, 0, 0.2392156863);--cv-theme-emphasis-24%: rgba(177, 1, 66, 0.2392156863);--cv-theme-background: #fdf9fc;--cv-theme-surface-variant-8%: rgba(253, 249, 252, 0.0784313725);--cv-theme-surface-variant-12%: rgba(253, 249, 252, 0.1215686275);--cv-theme-surface-variant-16%: rgba(253, 249, 252, 0.1607843137);--cv-theme-error: #ae1209;--cv-theme-on-background: #1e1d1e;--cv-theme-on-error: white;--cv-theme-divider: #d5d3d8;--cv-theme-accent: #3053f4;--cv-theme-surface-canvas: white;--cv-theme-surface-primary: #ececfe;--cv-theme-surface-primary-highlight: rgba(48, 83, 244, 0.0784313725);--cv-theme-surface-primary-highlight-hover: rgba(48, 83, 244, 0.0784313725);--cv-theme-surface-accent: #ececfe;--cv-theme-surface-accent-highlight: rgba(48, 83, 244, 0.0784313725);--cv-theme-surface-accent-highlight-hover: rgba(48, 83, 244, 0.1215686275);--cv-theme-surface-secondary: #dfe1f9;--cv-theme-surface-secondary-highlight: rgba(97, 99, 120, 0.0784313725);--cv-theme-surface-secondary-highlight-hover: rgba(97, 99, 120, 0.0784313725);--cv-theme-surface-positive: #8fcc8e;--cv-theme-surface-positive-highlight: rgba(3, 102, 0, 0.0784313725);--cv-theme-surface-positive-highlight-hover: rgba(3, 102, 0, 0.0784313725);--cv-theme-surface-caution: #ffcc8c;--cv-theme-surface-caution-highlight: rgba(243, 136, 0, 0.0784313725);--cv-theme-surface-caution-highlight-hover: rgba(243, 136, 0, 0.0784313725);--cv-theme-surface-negative: #ffb2ae;--cv-theme-surface-negative-highlight: rgba(174, 18, 9, 0.0784313725);--cv-theme-surface-negative-highlight-hover: rgba(174, 18, 9, 0.0784313725);--cv-theme-surface-neutral: #faf7fa;--cv-theme-surface-neutral-highlight: rgba(250, 247, 250, 0.04);--cv-theme-surface-neutral-highlight-hover: rgba(250, 247, 250, 0.08);--cv-theme-surface-emphasis: #e8b3c6;--cv-theme-surface-emphasis-highlight: rgba(177, 1, 66, 0.0784313725);--cv-theme-surface-emphasis-highlight-hover: rgba(177, 1, 66, 0.0784313725);--cv-theme-text-primary-on-background: #1e1d1e;--cv-theme-text-secondary-on-background: #5c5b5f;--cv-theme-text-hint-on-background: #5c5b5f;--cv-theme-text-disabled-on-background: rgba(30, 29, 30, 0.3803921569);--cv-theme-text-icon-on-background: #5c5b5f;--cv-theme-text-logo-on-background: #FF5F02;--cv-theme-text-primary-on-light: #1e1d1e;--cv-theme-text-secondary-on-light: #5c5b5f;--cv-theme-text-hint-on-light: #5c5b5f;--cv-theme-text-disabled-on-light: rgba(30, 29, 30, 0.3803921569);--cv-theme-text-icon-on-light: #5c5b5f;--cv-theme-text-primary-on-dark: #ebe8ec;--cv-theme-text-secondary-on-dark: #ebe8ec;--cv-theme-text-hint-on-dark: #ebe8ec;--cv-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.3803921569);--cv-theme-text-icon-on-dark: #ebe8ec;--cv-theme-code-snippet-color: #383a42;--cv-theme-code-snippet-comment: #a0a1a7;--cv-theme-code-snippet-keyword: #a626a4;--cv-theme-code-snippet-selector: #e45649;--cv-theme-code-snippet-literal: #0184bb;--cv-theme-code-snippet-string: #50a14f;--cv-theme-code-snippet-variable: #986801;--cv-theme-code-snippet-title: #4078f2;--cv-theme-code-snippet-class: #c18401;--mdc-theme-primary: #3053f4;--mdc-theme-secondary: #616378;--mdc-theme-error: #ae1209;--mdc-theme-negative: #ae1209;--mdc-theme-positive: #036600;--mdc-theme-caution: #f38800;--mdc-theme-emphasis: #b10142;--mdc-theme-accent: #3053f4;--mdc-theme-background: #fdf9fc;--mdc-ripple-color: #1e1d1e;--mdc-theme-surface: #fdf9fc;--mdc-theme-surface-canvas: white;--mdc-theme-surface-primary: #ececfe;--mdc-theme-surface-primary-highlight: rgba(48, 83, 244, 0.0784313725);--mdc-theme-surface-primary-highlight-hover: rgba(48, 83, 244, 0.0784313725);--mdc-theme-surface-secondary: #dfe1f9;--mdc-theme-surface-secondary-highlight: rgba(97, 99, 120, 0.0784313725);--mdc-theme-surface-secondary-highlight-hover: rgba(97, 99, 120, 0.0784313725);--mdc-theme-surface-caution: #ffcc8c;--mdc-theme-surface-caution-highlight: rgba(243, 136, 0, 0.0784313725);--mdc-theme-surface-caution-highlight-hover: rgba(243, 136, 0, 0.0784313725);--mdc-theme-surface-negative: #ffb2ae;--mdc-theme-surface-negative-highlight: rgba(174, 18, 9, 0.0784313725);--mdc-theme-surface-negative-highlight-hover: rgba(174, 18, 9, 0.0784313725);--mdc-theme-surface-positive: #8fcc8e;--mdc-theme-surface-positive-highlight: rgba(3, 102, 0, 0.0784313725);--mdc-theme-surface-positive-highlight-hover: rgba(3, 102, 0, 0.0784313725);--mdc-theme-surface-neutral: #faf7fa;--mdc-theme-surface-neutral-highlight: rgba(250, 247, 250, 0.04);--mdc-theme-surface-neutral-highlight-hover: rgba(250, 247, 250, 0.08);--mdc-theme-surface-emphasis: #e8b3c6;--mdc-theme-surface-emphasis-highlight: rgba(177, 1, 66, 0.0784313725);--mdc-theme-surface-emphasis-highlight-hover: rgba(177, 1, 66, 0.0784313725);--mdc-theme-on-primary: white;--mdc-theme-on-secondary: white;--mdc-theme-on-surface: #1e1d1e;--mdc-theme-border: #d5d3d8;--mdc-theme-surface-accent: #ececfe;--mdc-theme-surface-accent-highlight: rgba(48, 83, 244, 0.0784313725);--mdc-theme-surface-accent-highlight-hover: rgba(48, 83, 244, 0.0784313725);--mdc-plain-tooltip-container-color: #3e3e41;--mdc-plain-tooltip-supporting-text-color: #f6f3f6;--mdc-typography-font-family: Arial, sans-serif;--mdc-typography-headline1-font-family: Inter, sans-serif;--mdc-typography-headline1-font-size: 96px;--mdc-typography-headline1-font-weight: 500;--mdc-typography-headline1-line-height: 112px;--mdc-typography-headline2-font-family: Inter, sans-serif;--mdc-typography-headline2-font-size: 60px;--mdc-typography-headline2-font-weight: 600;--mdc-typography-headline2-line-height: 84px;--mdc-typography-headline3-font-family: Inter, sans-serif;--mdc-typography-headline3-font-size: 48px;--mdc-typography-headline3-font-weight: 600;--mdc-typography-headline3-line-height: 64px;--mdc-typography-headline4-font-family: Inter, sans-serif;--mdc-typography-headline4-font-size: 34px;--mdc-typography-headline4-font-weight: 700;--mdc-typography-headline4-line-height: 48px;--mdc-typography-headline5-font-family: Inter, sans-serif;--mdc-typography-headline5-font-size: 24px;--mdc-typography-headline5-font-weight: 700;--mdc-typography-headline5-line-height: 36px;--mdc-typography-headline6-font-family: Inter, sans-serif;--mdc-typography-headline6-font-size: 20px;--mdc-typography-headline6-font-weight: 700;--mdc-typography-headline6-line-height: 28px;--mdc-typography-subtitle1-font-family: Inter, sans-serif;--mdc-typography-subtitle1-font-size: 14px;--mdc-typography-subtitle1-font-weight: 600;--mdc-typography-subtitle1-line-height: 20px;--mdc-typography-subtitle2-font-family: Inter, sans-serif;--mdc-typography-subtitle2-font-size: 16px;--mdc-typography-subtitle2-font-weight: 600;--mdc-typography-subtitle2-line-height: 24px;--mdc-typography-body1-font-family: var(--mdc-typography-font-family);--mdc-typography-body1-font-size: 16px;--mdc-typography-body1-font-weight: 400;--mdc-typography-body1-line-height: 24px;--mdc-typography-body2-font-family: var(--mdc-typography-font-family);--mdc-typography-body2-font-size: 14px;--mdc-typography-body2-font-weight: 400;--mdc-typography-body2-line-height: 20px;--mdc-typography-button-font-family: Inter, sans-serif;--mdc-typography-button-font-size: 14px;--mdc-typography-button-font-weight: 600;--mdc-typography-button-line-height: 16px;--mdc-typography-button-text-transform: none;--mdc-typography-caption-font-family: var(--mdc-typography-font-family);--mdc-typography-caption-font-size: 12px;--mdc-typography-caption-font-weight: 400;--mdc-typography-caption-line-height: 16px;--mdc-theme-text-primary-on-background: #1e1d1e;--mdc-theme-text-secondary-on-background: #5c5b5f;--mdc-theme-text-hint-on-background: #5c5b5f;--mdc-theme-text-disabled-on-background: rgba(30, 29, 30, 0.3803921569);--mdc-theme-text-icon-on-background: #5c5b5f;--mdc-theme-text-primary-on-light: #1e1d1e;--mdc-theme-text-secondary-on-light: #5c5b5f;--mdc-theme-text-hint-on-light: #5c5b5f;--mdc-theme-text-disabled-on-light: rgba(30, 29, 30, 0.3803921569);--mdc-theme-text-icon-on-light: #5c5b5f;--mdc-theme-text-primary-on-dark: #ebe8ec;--mdc-theme-text-secondary-on-dark: #ebe8ec;--mdc-theme-text-hint-on-dark: #ebe8ec;--mdc-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.3803921569);--mdc-theme-text-icon-on-dark: #ebe8ec;--mdc-icon-font: "Material Symbols Outlined";--mdc-shape-small: 8px;--mdc-shape-medium: 8px;border-width:0;border-style:solid}:root .mdc-data-table__sort-icon-button{color:#5c5b5f}:root .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::after{background-color:#5c5b5f;background-color:var(--mdc-ripple-color, #5c5b5f)}:root .mdc-data-table__sort-icon-button:hover .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.04;opacity:var(--mdc-ripple-hover-opacity, 0.04)}:root .mdc-data-table__sort-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-focus-opacity, 0.12)}:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}:root .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-press-opacity, 0.12)}:root .mdc-data-table__sort-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.12)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button{color:#5c5b5f}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button .mdc-icon-button__ripple::after{background-color:#5c5b5f;background-color:var(--mdc-ripple-color, #5c5b5f)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:hover .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-surface--hover .mdc-icon-button__ripple::before{opacity:0.04;opacity:var(--mdc-ripple-hover-opacity, 0.04)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__ripple::before,:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__ripple::before{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-focus-opacity, 0.12)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded) .mdc-icon-button__ripple::after{transition:opacity 150ms linear}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button:not(.mdc-ripple-upgraded):active .mdc-icon-button__ripple::after{transition-duration:75ms;opacity:0.12;opacity:var(--mdc-ripple-press-opacity, 0.12)}:root .mdc-data-table__header-cell--sorted .mdc-data-table__sort-icon-button.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.12)}:root .mdc-data-table__row--selected{background-color:rgba(250, 247, 250, 0.04)}:root .mdc-data-table__row:not(.mdc-data-table__row--selected):hover{background-color:rgba(250, 247, 250, 0.08)}:root .mdc-data-table__header-cell{color:#1e1d1e}:root .mdc-data-table__pagination-total,:root .mdc-data-table__pagination-rows-per-page-label,:root .mdc-data-table__cell{color:#1e1d1e}:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__leading,:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__notch,:root .mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__trailing{border-color:#d5d3d8}:root .mdc-data-table__cell,:root .mdc-data-table__header-cell{border-bottom-color:#d5d3d8}:root .mdc-data-table__pagination{border-top-color:#d5d3d8}:root .mdc-data-table{width:100%;border-width:0;white-space:normal}:root .mdc-data-table__header-cell{font-family:var(--mdc-typography-font-family);font-size:var(--mdc-typography-body2-font-size);font-weight:600;line-height:var(--mdc-typography-body2-line-height)}:root .mdc-data-table__sort-icon-button{font-size:1rem}/*# sourceMappingURL=light-theme.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../../../../libs/components/src/theme/prebuilt/light-theme.scss","../../../../../libs/components/src/theme/_mixins.scss","../../../../../node_modules/@material/theme/_css.scss","../../../../../node_modules/@material/data-table/_data-table-theme.scss","../../../../../node_modules/@material/ripple/_ripple-theme.scss","../../../../../node_modules/@material/notched-outline/_notched-outline-theme.scss","../../../../../libs/components/src/data-table/_data-table.theme.scss"],"names":[],"mappings":"AAQA,MCHI,m1YASF,6BACA,+BACA,2BACA,8BACA,8BACA,6BACA,8BAGA,4BAGA,gCACA,4BACA,6BACA,kCACA,qCACA,uEAIA,6EAIA,uCACA,yEAIA,+EAIA,qCACA,uEAIA,6EAIA,sCACA,uEAIA,6EAIA,sCACA,sEAIA,4EAIA,qCACA,iEAIA,uEAIA,sCACA,uEAIA,6EAIA,8BACA,gCACA,gCACA,4BAGA,oCACA,sEAIA,4EAMA,6CACA,mDAMA,gDACA,0DAIA,2CAIA,4CAIA,8CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,sEACA,uCACA,wCACA,yCACA,sEACA,uCACA,wCACA,yCACA,uDAIA,wCACA,yCAIA,0CAIA,6CACA,wEACA,yCACA,0CAIA,2CAMA,gDAIA,kDAIA,6CAIA,wEAIA,6CAIA,2CACA,6CAIA,wCACA,mEACA,wCACA,0CACA,4CACA,uCACA,qEACA,uCACA,6CAGA,uBACA,wBC/OE,eCqdA,mBFlOF,kDE5BA,wCDvNE,cE8EA,iJF1FE,yBAYF,kDEyfF,kLFrgBI,aAYF,8CEyfF,0NApRI,yBFjPA,aAYF,8CE+fF,kGA/PQ,gCA+PR,yGAxPU,oBA7SO,KF0Bb,aAYF,8CEkRA,4DFlRA,8DCiOF,6EDjOE,cE8EA,2NF1FE,yBAYF,kDEyfF,4PFrgBI,aAYF,8CEyfF,oSApRI,yBFjPA,aAYF,8CE+fF,uIA/PQ,gCA+PR,8IAxPU,oBA7SO,KF0Bb,aAYF,8CEkRA,iGFlRA,8DCsQF,qCDtQE,2CC+UF,qED/UE,2CCyVF,mCDzVE,cCuWF,0HDvWE,cGYF,6WHZE,qBCqSF,+DDrSE,4BC4SF,kCD5SE,yBIxDF,sBACE,WACA,eACA,mBAGF,mCACE,8CACA,gDACA,gBACA,oDAGF,wCACE,eLgSF,cACE,iCACA,0BAEA,oBACE,qBAMA,yDACE,yBAQA,wDACE","file":"light-theme.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../../../../libs/components/src/theme/prebuilt/light-theme.scss","../../../../../libs/components/src/theme/_index.scss","../../../../../node_modules/@material/theme/_css.scss","../../../../../node_modules/@material/data-table/_data-table-theme.scss","../../../../../node_modules/@material/ripple/_ripple-theme.scss","../../../../../node_modules/@material/notched-outline/_notched-outline-theme.scss","../../../../../libs/components/src/data-table/_data-table.theme.scss"],"names":[],"mappings":"AAYA,MCVI,m1YASF,6BACA,+BACA,2BACA,8BACA,8BACA,6BACA,8BAGA,4BAGA,gCACA,4BACA,6BACA,kCACA,qCACA,uEAIA,6EAIA,uCACA,yEAIA,+EAIA,qCACA,uEAIA,6EAIA,sCACA,uEAIA,6EAIA,sCACA,sEAIA,4EAIA,qCACA,iEAIA,uEAIA,sCACA,uEAIA,6EAIA,8BACA,gCACA,gCACA,4BAGA,oCACA,sEAIA,4EAMA,6CACA,mDAMA,gDACA,0DAIA,2CAIA,4CAIA,8CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,0DAIA,2CAIA,4CAIA,6CAIA,sEACA,uCACA,wCACA,yCACA,sEACA,uCACA,wCACA,yCACA,uDAIA,wCACA,yCAIA,0CAIA,6CACA,wEACA,yCACA,0CAIA,2CAMA,gDAIA,kDAIA,6CAIA,wEAIA,6CAIA,2CACA,6CAIA,wCACA,mEACA,wCACA,0CACA,4CACA,uCACA,qEACA,uCACA,6CAGA,uBACA,wBC5OE,eCqdA,mBA9PF,wCDvNE,cE8EA,iJF1FE,yBAYF,kDEyfF,kLFrgBI,aAYF,8CEyfF,0NApRI,yBFjPA,aAYF,8CE+fF,kGA/PQ,gCA+PR,yGAxPU,oBA7SO,KF0Bb,aAYF,8CEkRA,4DFlRA,8DCiOF,6EDjOE,cE8EA,2NF1FE,yBAYF,kDEyfF,4PFrgBI,aAYF,8CEyfF,oSApRI,yBFjPA,aAYF,8CE+fF,uIA/PQ,gCA+PR,8IAxPU,oBA7SO,KF0Bb,aAYF,8CEkRA,iGFlRA,8DCsQF,qCDtQE,2CC+UF,qED/UE,2CCyVF,mCDzVE,cCuWF,0HDvWE,cGYF,6WHZE,qBCqSF,+DDrSE,4BC4SF,kCD5SE,yBIxDF,sBACE,WACA,eACA,mBAGF,mCACE,8CACA,gDACA,gBACA,oDAGF,wCACE","file":"light-theme.css"}