@covalent/components 11.0.0-beta.5 → 11.0.0-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/action-ribbon/action-ribbon-base.d.ts +29 -0
- package/action-ribbon/action-ribbon.d.ts +15 -0
- package/alert/alert-base.d.ts +36 -0
- package/alert/alert.d.ts +15 -0
- package/app-shell/app-shell.d.ts +75 -0
- package/badge/badge.d.ts +50 -0
- package/button/button.d.ts +10 -0
- package/card/card-base.d.ts +28 -0
- package/card/card.d.ts +10 -0
- package/checkbox/checkbox.d.ts +10 -0
- package/chips/chip-base.d.ts +51 -0
- package/chips/chip-set-base.d.ts +32 -0
- package/chips/chip-set.d.ts +15 -0
- package/chips/chip.d.ts +15 -0
- package/circular-progress/circular-progress.d.ts +10 -0
- package/code-editor/code-editor.d.ts +62 -0
- package/code-editor/code-editor.theme.d.ts +72 -0
- package/code-snippet/code-snippet.d.ts +22 -0
- package/dialog/dialog.d.ts +14 -0
- package/drawer/drawer.d.ts +10 -0
- package/empty-state/empty-state.d.ts +16 -0
- package/expansion-panel/expansion-panel-item.d.ts +26 -0
- package/expansion-panel/expansion-panel.d.ts +15 -0
- package/focused-page/focused-page.d.ts +54 -0
- package/formfield/formfield.d.ts +10 -0
- package/full-screen-dialog/full-screen-dialog.d.ts +31 -0
- package/icon/_icon-list.d.ts +3 -0
- package/icon/icon-demo.d.ts +13 -0
- package/icon/icon.d.ts +10 -0
- package/icon-button/icon-button.d.ts +10 -0
- package/icon-button-toggle/icon-button-toggle.d.ts +18 -0
- package/icon-checkbox/icon-check-toggle.d.ts +16 -0
- package/icon-lockup/icon-lockup.d.ts +63 -0
- package/icon-radio/icon-radio-toggle.d.ts +13 -0
- package/index.d.ts +59 -0
- package/index.scss +1 -0
- package/linear-progress/linear-progress.d.ts +10 -0
- package/list/check-list-item.d.ts +10 -0
- package/list/list-item.d.ts +10 -0
- package/list/list.d.ts +10 -0
- package/list/nav-list-item.d.ts +29 -0
- package/list/radio-list-item.d.ts +10 -0
- package/menu/menu.d.ts +10 -0
- package/notebook-cell/notebook-cell.d.ts +95 -0
- package/package.json +1 -4
- package/radio/radio.d.ts +10 -0
- package/select/select.d.ts +10 -0
- package/side-sheet/side-sheet.d.ts +17 -0
- package/slider/slider-range.d.ts +10 -0
- package/slider/slider.d.ts +10 -0
- package/snackbar/snackbar.d.ts +10 -0
- package/status-dialog/status-dialog.d.ts +36 -0
- package/status-header/status-header-base.d.ts +8 -0
- package/status-header/status-header-item.d.ts +17 -0
- package/status-header/status-header.d.ts +15 -0
- package/switch/switch.d.ts +10 -0
- package/tab/tab-bar.d.ts +10 -0
- package/tab/tab.d.ts +10 -0
- package/text-lockup/text-lockup.d.ts +18 -0
- package/textarea/textarea.d.ts +10 -0
- package/textfield/textfield.d.ts +11 -0
- package/theme/_index.scss +54 -0
- package/theme/prebuilt/dark-theme.css +1 -0
- package/theme/prebuilt/light-theme.css +1 -0
- package/toolbar/toolbar.d.ts +14 -0
- package/tooltip/tooltip.d.ts +27 -0
- package/top-app-bar/top-app-bar-fixed.d.ts +10 -0
- package/top-app-bar/top-app-bar.d.ts +10 -0
- package/tree-list/tree-list-item.d.ts +17 -0
- package/tree-list/tree-list.d.ts +11 -0
- package/typography/typography.d.ts +12 -0
@@ -0,0 +1,17 @@
|
|
1
|
+
import { LitElement } from 'lit';
|
2
|
+
declare global {
|
3
|
+
interface HTMLElementTagNameMap {
|
4
|
+
'cv-status-header-item': CovalentStatusHeaderItem;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
/**
|
8
|
+
* Status header item
|
9
|
+
*
|
10
|
+
* @slot - This element has a slot
|
11
|
+
*/
|
12
|
+
export declare class CovalentStatusHeaderItem extends LitElement {
|
13
|
+
static styles: import("lit").CSSResult[];
|
14
|
+
label: string;
|
15
|
+
render(): import("lit-html").TemplateResult<1>;
|
16
|
+
}
|
17
|
+
export default CovalentStatusHeaderItem;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { StatusHeaderBase } from './status-header-base';
|
2
|
+
/**
|
3
|
+
* Status header
|
4
|
+
*
|
5
|
+
* @slot - This element has a slot
|
6
|
+
*/
|
7
|
+
export declare class CovalentStatusHeader extends StatusHeaderBase {
|
8
|
+
static styles: import("lit").CSSResult[];
|
9
|
+
}
|
10
|
+
declare global {
|
11
|
+
interface HTMLElementTagNameMap {
|
12
|
+
'cv-status-header': CovalentStatusHeader;
|
13
|
+
}
|
14
|
+
}
|
15
|
+
export default CovalentStatusHeader;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { SwitchBase } from '@material/mwc-switch/mwc-switch-base';
|
2
|
+
declare global {
|
3
|
+
interface HTMLElementTagNameMap {
|
4
|
+
'cv-switch': CovalentSwitch;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
export declare class CovalentSwitch extends SwitchBase {
|
8
|
+
static styles: import("lit").CSSResult[];
|
9
|
+
}
|
10
|
+
export default CovalentSwitch;
|
package/tab/tab-bar.d.ts
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
import { TabBarBase } from '@material/mwc-tab-bar/mwc-tab-bar-base';
|
2
|
+
declare global {
|
3
|
+
interface HTMLElementTagNameMap {
|
4
|
+
'cv-tab-bar': CovalentTabBar;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
export declare class CovalentTabBar extends TabBarBase {
|
8
|
+
static styles: import("lit").CSSResult[];
|
9
|
+
}
|
10
|
+
export default CovalentTabBar;
|
package/tab/tab.d.ts
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
import { TabBase } from '@material/mwc-tab/mwc-tab-base';
|
2
|
+
declare global {
|
3
|
+
interface HTMLElementTagNameMap {
|
4
|
+
'cv-tab': CovalentTab;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
export declare class CovalentTab extends TabBase {
|
8
|
+
static styles: import("lit").CSSResult[];
|
9
|
+
}
|
10
|
+
export default CovalentTab;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import { LitElement, nothing } from 'lit';
|
2
|
+
import '../icon/icon';
|
3
|
+
declare global {
|
4
|
+
interface HTMLElementTagNameMap {
|
5
|
+
'cv-text-lockup': CovalentTextLockup;
|
6
|
+
}
|
7
|
+
}
|
8
|
+
export declare class CovalentTextLockup extends LitElement {
|
9
|
+
static styles: import("lit").CSSResult[];
|
10
|
+
subText: string;
|
11
|
+
icon?: string;
|
12
|
+
state?: 'active' | 'positive' | 'negative' | 'caution';
|
13
|
+
scale: 'large' | 'small';
|
14
|
+
trailingSubText: boolean;
|
15
|
+
render(): import("lit-html").TemplateResult<1>;
|
16
|
+
renderIcon(): import("lit-html").TemplateResult<1> | typeof nothing;
|
17
|
+
}
|
18
|
+
export default CovalentTextLockup;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { TextAreaBase } from '@material/mwc-textarea/mwc-textarea-base';
|
2
|
+
declare global {
|
3
|
+
interface HTMLElementTagNameMap {
|
4
|
+
'cv-textarea': CovalentTextArea;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
export declare class CovalentTextArea extends TextAreaBase {
|
8
|
+
static styles: import("lit").CSSResult[];
|
9
|
+
}
|
10
|
+
export default CovalentTextArea;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { TextFieldBase } from '@material/mwc-textfield/mwc-textfield-base';
|
2
|
+
declare global {
|
3
|
+
interface HTMLElementTagNameMap {
|
4
|
+
'cv-textfield': CovalentTextField;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
export declare class CovalentTextField extends TextFieldBase {
|
8
|
+
static styles: import("lit").CSSResult[];
|
9
|
+
outlined: boolean;
|
10
|
+
}
|
11
|
+
export default CovalentTextField;
|
@@ -0,0 +1,54 @@
|
|
1
|
+
@mixin css-variable-tokens($theme, $prefix: 'cv-theme') {
|
2
|
+
@each $key, $value in $theme {
|
3
|
+
--#{$prefix}-#{$key}: #{map-get($theme, $key)};
|
4
|
+
}
|
5
|
+
}
|
6
|
+
|
7
|
+
// --- components theme mixin --- //
|
8
|
+
@mixin components-theme($theme, $typography) {
|
9
|
+
// Covalent theme tokens as css variables
|
10
|
+
@include css-variable-tokens($theme);
|
11
|
+
// Covalent typography tokens as css variables
|
12
|
+
@include css-variable-tokens($typography, 'cv-typography');
|
13
|
+
// Material tokens as css variables
|
14
|
+
@include css-variable-tokens($theme, 'mdc-theme');
|
15
|
+
// Material typography tokens as css variables
|
16
|
+
@include css-variable-tokens($typography, 'mdc-typography');
|
17
|
+
|
18
|
+
// Overrides that dont fit in the theme map
|
19
|
+
--mdc-theme-border: #{map-get($theme, divider)};
|
20
|
+
--mdc-theme-surface-accent: #{map-get($theme, surface-primary)};
|
21
|
+
--mdc-theme-surface-accent-highlight: #{map-get(
|
22
|
+
$theme,
|
23
|
+
surface-primary-highlight
|
24
|
+
)};
|
25
|
+
--mdc-theme-surface-accent-highlight-hover: #{map-get(
|
26
|
+
$theme,
|
27
|
+
surface-primary-highlight-hover
|
28
|
+
)};
|
29
|
+
--mdc-typography-button-letter-spacing: 0;
|
30
|
+
|
31
|
+
// Icons
|
32
|
+
--mdc-icon-font: 'Material Symbols Outlined';
|
33
|
+
|
34
|
+
// Ripple
|
35
|
+
--mdc-ripple-color: #{map-get($theme, on-surface)};
|
36
|
+
|
37
|
+
// Shape
|
38
|
+
--mdc-shape-small: 8px;
|
39
|
+
--mdc-shape-medium: 8px;
|
40
|
+
|
41
|
+
// Tooltip
|
42
|
+
--mdc-plain-tooltip-container-color: #{map-get($theme, inverse-surface)};
|
43
|
+
--mdc-plain-tooltip-supporting-text-color: #{map-get(
|
44
|
+
$theme,
|
45
|
+
inverse-on-surface
|
46
|
+
)};
|
47
|
+
}
|
48
|
+
|
49
|
+
// --- button density function --- //
|
50
|
+
@function density-height($height) {
|
51
|
+
@return calc(
|
52
|
+
#{$height} + (var(--cv-density-mode, 0) * var(--cv-density-interval, 4px))
|
53
|
+
);
|
54
|
+
}
|
@@ -0,0 +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: #1e1d1e;--cv-theme-surface-dim: #161616;--cv-theme-surface-bright: #4a4a4d;--cv-theme-surface-container-lowest: #2c2b2d;--cv-theme-surface-container-low: #323134;--cv-theme-surface-container: #38383b;--cv-theme-surface-container-high: #3e3e41;--cv-theme-surface-container-highest: #444447;--cv-theme-on-surface: #ebe8ec;--cv-theme-on-surface-variant: #d5d3d8;--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: #000000;--cv-theme-scrim: rgba(0, 0, 0, 0.32);--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.08);--cv-theme-primary-12: rgba(186, 195, 255, 0.12);--cv-theme-on-surface-8: rgba(235, 232, 236, 0.08);--cv-theme-on-surface-12: rgba(235, 232, 236, 0.12);--cv-theme-on-primary-container: #dde1ff;--cv-theme-inverse-primary: #3053f4;--cv-theme-on-surface-38: rgba(235, 232, 236, 0.38);--cv-theme-on-surface-16: rgba(235, 232, 236, 0.16);--cv-theme-on-primary-12: rgba(17, 26, 40, 0.12);--cv-theme-on-primary-8: rgba(17, 26, 40, 0.08);--cv-theme-primary-16: rgba(186, 195, 255, 0.16);--cv-theme-on-surface-variant-8: rgba(213, 211, 216, 0.08);--cv-theme-on-tertiary-container-8: rgba(254, 241, 236, 0.08);--cv-theme-on-tertiary-container-12: rgba(254, 241, 236, 0.12);--cv-theme-on-primary-container-12: rgba(221, 225, 255, 0.12);--cv-theme-on-surface-variant-12: rgba(213, 211, 216, 0.12);--cv-theme-on-secondary-container-8: rgba(91, 93, 114, 0.08);--cv-theme-on-secondary-container-16: rgba(97, 99, 120, 0.16);--cv-theme-outline-8: rgba(143, 142, 151, 0.08);--cv-theme-outline-12: rgba(143, 142, 151, 0.12);--cv-theme-outline-16: rgba(143, 142, 151, 0.16);--cv-theme-surface-variant: #000000;--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.16);--cv-theme-caution-16: rgba(255, 183, 117, 0.16);--cv-theme-negative-12: rgba(253, 125, 105, 0.12);--cv-theme-on-secondary-container-12: rgba(91, 93, 114, 0.12);--cv-theme-on-primary-16: rgba(17, 26, 40, 0.16);--cv-theme-on-primary-container-8: rgba(221, 225, 255, 0.08);--cv-theme-on-primary-container-16: rgba(221, 225, 255, 0.16);--cv-theme-on-secondary-8: rgba(23, 26, 44, 0.08);--cv-theme-on-secondary-12: rgba(23, 26, 44, 0.12);--cv-theme-on-secondary-16: rgba(23, 26, 44, 0.16);--cv-theme-on-tertiary-8: rgba(97, 46, 26, 0.08);--cv-theme-on-tertiary-12: rgba(97, 46, 26, 0.12);--cv-theme-on-tertiary-16: rgba(97, 46, 26, 0.16);--cv-theme-on-tertiary-container-16: rgba(254, 241, 236, 0.16);--cv-theme-on-surface-variant-16: rgba(213, 211, 216, 0.16);--cv-theme-negative-8: rgba(253, 125, 105, 0.08);--cv-theme-negative-16: rgba(253, 125, 105, 0.16);--cv-theme-positive-12: rgba(145, 216, 144, 0.12);--cv-theme-positive-8: rgba(145, 216, 144, 0.08);--cv-theme-on-positive-8: rgba(17, 38, 17, 0.08);--cv-theme-on-positive-12: rgba(17, 38, 17, 0.12);--cv-theme-on-positive-16: rgba(17, 38, 17, 0.16);--cv-theme-on-positive-container-8: rgba(145, 216, 144, 0.08);--cv-theme-on-positive-container-12: rgba(145, 216, 144, 0.12);--cv-theme-on-positive-container-16: rgba(145, 216, 144, 0.16);--cv-theme-caution-12: rgba(255, 183, 117, 0.12);--cv-theme-caution-8: rgba(255, 183, 117, 0.08);--cv-theme-on-caution-8: rgba(102, 73, 47, 0.08);--cv-theme-on-caution-12: rgba(102, 73, 47, 0.12);--cv-theme-on-caution-16: rgba(102, 73, 47, 0.16);--cv-theme-on-negative-8: rgba(51, 25, 21, 0.08);--cv-theme-on-negative-12: rgba(51, 25, 21, 0.12);--cv-theme-on-negative-16: rgba(51, 25, 21, 0.16);--cv-theme-on-caution-container-8: rgba(25, 18, 12, 0.08);--cv-theme-on-caution-container-12: rgba(25, 18, 12, 0.12);--cv-theme-on-caution-container-16: rgba(25, 18, 12, 0.16);--cv-theme-emphasis-8: rgba(204, 128, 156, 0.08);--cv-theme-emphasis-12: rgba(204, 128, 156, 0.12);--cv-theme-emphasis-16: rgba(204, 128, 156, 0.16);--cv-theme-on-emphasis-8: rgba(25, 16, 19, 0.08);--cv-theme-on-emphasis-12: rgba(25, 16, 19, 0.12);--cv-theme-on-emphasis-16: rgba(25, 16, 19, 0.16);--cv-theme-on-emphasis-container-8: rgba(255, 217, 231, 0.08);--cv-theme-on-emphasis-container-12: rgba(255, 217, 231, 0.12);--cv-theme-on-emphasis-container-16: rgba(255, 217, 231, 0.16);--cv-theme-inverse-on-surface-12: rgba(62, 62, 65, 0.12);--cv-theme-inverse-primary-12: rgba(48, 83, 244, 0.12);--cv-theme-inverse-on-surface-8: rgba(62, 62, 65, 0.08);--cv-theme-inverse-primary-8: rgba(48, 83, 244, 0.08);--cv-theme-inverse-primary-16: rgba(48, 83, 244, 0.16);--cv-theme-inverse-on-surface-16: rgba(62, 62, 65, 0.16);--cv-theme-on-primary-74: rgba(17, 26, 40, 0.74);--cv-theme-on-surface-74: rgba(235, 232, 236, 0.74);--cv-theme-tertiary-8: rgba(255, 95, 2, 0.08);--cv-theme-tertiary-12: rgba(255, 95, 2, 0.12);--cv-theme-tertiary-16: rgba(255, 95, 2, 0.16);--cv-theme-secondary-8: rgba(195, 197, 221, 0.08);--cv-theme-secondary-12: rgba(195, 197, 221, 0.12);--cv-theme-secondary-16: rgba(195, 197, 221, 0.16);--cv-theme-on-secondary-74: rgba(23, 26, 44, 0.74);--cv-theme-inverse-secondary: #5b5d72;--cv-theme-inverse-secondary-8: rgba(97, 99, 120, 0.08);--cv-theme-inverse-secondary-12: rgba(97, 99, 120, 0.12);--cv-theme-inverse-secondary-16: rgba(97, 99, 120, 0.16);--cv-theme-on-tertiary-74: rgba(97, 46, 26, 0.74);--cv-theme-inverse-tertiary: #612e1a;--cv-theme-inverse-tertiary-8: rgba(255, 95, 2, 0.08);--cv-theme-inverse-tertiary-12: rgba(255, 95, 2, 0.12);--cv-theme-inverse-tertiary-16: rgba(255, 95, 2, 0.16);--cv-theme-on-negative-container-8: rgba(255, 172, 159, 0.08);--cv-theme-on-negative-container-12: rgba(255, 172, 159, 0.12);--cv-theme-on-negative-container-16: rgba(255, 172, 159, 0.16);--cv-theme-on-surface-4: rgba(235, 232, 236, 0.04);--cv-theme-on-surface-variant-4: rgba(213, 211, 216, 0.04);--cv-theme-inverse-on-surface-4: rgba(62, 62, 65, 0.04);--cv-theme-primary-4: rgba(186, 195, 255, 0.04);--cv-theme-on-primary-4: rgba(17, 26, 40, 0.04);--cv-theme-on-primary-container-4: rgba(221, 225, 255, 0.04);--cv-theme-inverse-primary-4: rgba(48, 83, 244, 0.04);--cv-theme-secondary-4: rgba(195, 197, 221, 0.04);--cv-theme-on-secondary-4: rgba(23, 26, 44, 0.04);--cv-theme-on-secondary-container-4: rgba(91, 93, 114, 0.04);--cv-theme-inverse-secondary-4: rgba(97, 99, 120, 0.04);--cv-theme-tertiary-4: rgba(255, 95, 2, 0.04);--cv-theme-on-tertiary-4: rgba(97, 46, 26, 0.04);--cv-theme-on-tertiary-container-4: rgba(254, 241, 236, 0.04);--cv-theme-inverse-tertiary-4: rgba(255, 95, 2, 0.04);--cv-theme-negative-4: rgba(253, 125, 105, 0.04);--cv-theme-on-negative-4: rgba(51, 25, 21, 0.04);--cv-theme-on-negative-container-4: rgba(255, 172, 159, 0.04);--cv-theme-positive-4: rgba(145, 216, 144, 0.04);--cv-theme-on-positive-4: rgba(17, 38, 17, 0.04);--cv-theme-on-positive-container-4: rgba(145, 216, 144, 0.04);--cv-theme-caution-4: rgba(255, 183, 117, 0.04);--cv-theme-on-caution-4: rgba(102, 73, 47, 0.04);--cv-theme-on-caution-container-4: rgba(25, 18, 12, 0.04);--cv-theme-emphasis-4: rgba(204, 128, 156, 0.04);--cv-theme-on-emphasis-4: rgba(25, 16, 19, 0.04);--cv-theme-on-emphasis-container-4: rgba(255, 217, 231, 0.04);--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.24);--cv-theme-negative-24: rgba(253, 125, 105, 0.24);--cv-theme-positive-24: rgba(145, 216, 144, 0.24);--cv-theme-caution-24: rgba(255, 183, 117, 0.24);--cv-theme-emphasis-24: rgba(204, 128, 156, 0.24);--cv-theme-background: #1e1d1e;--cv-theme-surface-variant-8: rgba(0, 0, 0, 0.08);--cv-theme-surface-variant-12: rgba(0, 0, 0, 0.12);--cv-theme-surface-variant-16: rgba(0, 0, 0, 0.16);--cv-theme-logo: #ffffff;--cv-theme-on-surface-variant-38: rgba(213, 211, 216, 0.38);--cv-theme-on-primary-38: rgba(17, 26, 40, 0.38);--cv-theme-on-secondary-38: rgba(23, 26, 44, 0.38);--cv-theme-on-secondary-container-38: rgba(97, 99, 120, 0.38);--cv-theme-on-secondary-container-74: rgba(97, 99, 120, 0.74);--cv-theme-on-tertiary-38: rgba(97, 46, 26, 0.38);--cv-theme-on-tertiary-container-38: rgba(254, 241, 236, 0.38);--cv-theme-on-tertiary-container-74: rgba(254, 241, 236, 0.74);--cv-theme-inverse-tertiary-38: rgba(255, 95, 2, 0.38);--cv-theme-inverse-tertiary-74: rgba(255, 95, 2, 0.74);--cv-theme-negative-38: rgba(253, 125, 105, 0.38);--cv-theme-negative-74: rgba(253, 125, 105, 0.74);--cv-theme-on-negative-38: rgba(51, 25, 21, 0.38);--cv-theme-on-negative-74: rgba(51, 25, 21, 0.74);--cv-theme-on-negative-container-38: rgba(255, 172, 159, 0.38);--cv-theme-on-negative-container-74: rgba(255, 172, 159, 0.74);--cv-theme-positive-38: rgba(145, 216, 144, 0.38);--cv-theme-positive-74: rgba(145, 216, 144, 0.74);--cv-theme-on-positive-38: rgba(17, 38, 17, 0.38);--cv-theme-on-positive-74: rgba(17, 38, 17, 0.74);--cv-theme-on-positive-container-38: rgba(145, 216, 144, 0.38);--cv-theme-on-positive-container-74: rgba(145, 216, 144, 0.74);--cv-theme-caution-38: rgba(255, 183, 117, 0.38);--cv-theme-caution-74: rgba(255, 183, 117, 0.74);--cv-theme-on-caution-38: rgba(102, 73, 47, 0.38);--cv-theme-on-caution-74: rgba(102, 73, 47, 0.74);--cv-theme-on-caution-container-38: rgba(25, 18, 12, 0.38);--cv-theme-on-caution-container-74: rgba(25, 18, 12, 0.74);--cv-theme-emphasis-38: rgba(204, 128, 156, 0.38);--cv-theme-emphasis-74: rgba(204, 128, 156, 0.74);--cv-theme-on-emphasis-38: rgba(25, 16, 19, 0.38);--cv-theme-on-emphasis-74: rgba(25, 16, 19, 0.74);--cv-theme-on-emphasis-container-38: rgba(255, 217, 231, 0.38);--cv-theme-on-emphasis-container-74: rgba(255, 217, 231, 0.74);--cv-theme-on-primary-container-38: rgba(221, 225, 255, 0.38);--cv-theme-on-primary-container-74: rgba(221, 225, 255, 0.74);--cv-theme-primary-38: rgba(186, 195, 255, 0.38);--cv-theme-primary-74: rgba(186, 195, 255, 0.74);--cv-theme-brand: #ff5f02;--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;--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: #38383b;--cv-theme-surface-primary: #1d2c43;--cv-theme-surface-primary-highlight: rgba(186, 195, 255, 0.08);--cv-theme-surface-primary-highlight-hover: rgba(186, 195, 255, 0.08);--cv-theme-surface-accent: #1d2c43;--cv-theme-surface-accent-highlight: rgba(186, 195, 255, 0.08);--cv-theme-surface-accent-highlight-hover: rgba(186, 195, 255, 0.08);--cv-theme-surface-secondary: #434659;--cv-theme-surface-secondary-highlight: rgba(195, 197, 221, 0.08);--cv-theme-surface-secondary-highlight-hover: rgba(195, 197, 221, 0.08);--cv-theme-surface-positive: #224b22;--cv-theme-surface-positive-highlight: rgba(145, 216, 144, 0.08);--cv-theme-surface-positive-highlight-hover: rgba(145, 216, 144, 0.08);--cv-theme-surface-caution: #66492f;--cv-theme-surface-caution-highlight: rgba(255, 183, 117, 0.08);--cv-theme-surface-caution-highlight-hover: rgba(255, 183, 117, 0.08);--cv-theme-surface-negative: #65322a;--cv-theme-surface-negative-highlight: rgba(253, 125, 105, 0.08);--cv-theme-surface-negative-highlight-hover: rgba(253, 125, 105, 0.08);--cv-theme-surface-neutral: #f3f5f9;--cv-theme-surface-neutral-highlight: rgba(243, 245, 249, 0.04);--cv-theme-surface-neutral-highlight-hover: rgba(243, 245, 249, 0.08);--cv-theme-surface-emphasis: #66404e;--cv-theme-surface-emphasis-highlight: rgba(204, 128, 156, 0.08);--cv-theme-surface-emphasis-highlight-hover: rgba(204, 128, 156, 0.08);--cv-theme-text-primary-on-background: #ebe8ec;--cv-theme-text-secondary-on-background: #d5d3d8;--cv-theme-text-hint-on-background: #d5d3d8;--cv-theme-text-disabled-on-background: rgba(235, 232, 236, 0.38);--cv-theme-text-icon-on-background: #d5d3d8;--cv-theme-text-logo-on-background: #ffffff;--cv-theme-text-primary-on-light: #00233c;--cv-theme-text-secondary-on-light: #59627b;--cv-theme-text-hint-on-light: #59627b;--cv-theme-text-disabled-on-light: rgba(0, 35, 60, 0.38);--cv-theme-text-icon-on-light: #59627b;--cv-theme-text-primary-on-dark: #ebe8ec;--cv-theme-text-secondary-on-dark: #d5d3d8;--cv-theme-text-hint-on-dark: #d5d3d8;--cv-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.38);--cv-theme-text-icon-on-dark: #d5d3d8;--cv-typography-font-family: Arial, sans-serif;--cv-typography-headline1-font-family: Inter, sans-serif;--cv-typography-headline1-font-size: 96px;--cv-typography-headline1-font-weight: 500;--cv-typography-headline1-line-height: 112px;--cv-typography-headline2-font-family: Inter, sans-serif;--cv-typography-headline2-font-size: 60px;--cv-typography-headline2-font-weight: 600;--cv-typography-headline2-line-height: 84px;--cv-typography-headline3-font-family: Inter, sans-serif;--cv-typography-headline3-font-size: 48px;--cv-typography-headline3-font-weight: 600;--cv-typography-headline3-line-height: 64px;--cv-typography-headline4-font-family: Inter, sans-serif;--cv-typography-headline4-font-size: 34px;--cv-typography-headline4-font-weight: 700;--cv-typography-headline4-line-height: 48px;--cv-typography-headline5-font-family: Inter, sans-serif;--cv-typography-headline5-font-size: 24px;--cv-typography-headline5-font-weight: 700;--cv-typography-headline5-line-height: 36px;--cv-typography-headline6-font-family: Inter, sans-serif;--cv-typography-headline6-font-size: 20px;--cv-typography-headline6-font-weight: 700;--cv-typography-headline6-line-height: 28px;--cv-typography-subtitle1-font-family: Inter, sans-serif;--cv-typography-subtitle1-font-size: 14px;--cv-typography-subtitle1-font-weight: 600;--cv-typography-subtitle1-line-height: 20px;--cv-typography-subtitle2-font-family: Inter, sans-serif;--cv-typography-subtitle2-font-size: 16px;--cv-typography-subtitle2-font-weight: 600;--cv-typography-subtitle2-line-height: 24px;--cv-typography-body1-font-family: Arial, sans-serif;--cv-typography-body1-font-size: 16px;--cv-typography-body1-font-weight: 400;--cv-typography-body1-line-height: 24px;--cv-typography-body2-font-family: Arial, sans-serif;--cv-typography-body2-font-size: 14px;--cv-typography-body2-font-weight: 400;--cv-typography-body2-line-height: 20px;--cv-typography-button-font-family: Inter, sans-serif;--cv-typography-button-font-size: 14px;--cv-typography-button-font-weight: 600;--cv-typography-button-line-height: 16px;--cv-typography-caption-font-family: Arial, sans-serif;--cv-typography-caption-font-size: 12px;--cv-typography-caption-font-weight: 400;--cv-typography-caption-line-height: 16px;--cv-typography-code-font-family: Menlo;--cv-typography-code-font-size: 12px;--cv-typography-code-font-weight: 400;--cv-typography-code-line-height: 20px;--mdc-theme-primary: #bac3ff;--mdc-theme-primary-container: #1d2c43;--mdc-theme-on-primary: #111a28;--mdc-theme-secondary: #c3c5dd;--mdc-theme-secondary-container: #434659;--mdc-theme-on-secondary: #171a2c;--mdc-theme-on-secondary-container: #dfe1f9;--mdc-theme-tertiary: #ff5f02;--mdc-theme-tertiary-container: #c25d33;--mdc-theme-on-tertiary: #612e1a;--mdc-theme-on-tertiary-container: #fef1ec;--mdc-theme-surface: #1e1d1e;--mdc-theme-surface-dim: #161616;--mdc-theme-surface-bright: #4a4a4d;--mdc-theme-surface-container-lowest: #2c2b2d;--mdc-theme-surface-container-low: #323134;--mdc-theme-surface-container: #38383b;--mdc-theme-surface-container-high: #3e3e41;--mdc-theme-surface-container-highest: #444447;--mdc-theme-on-surface: #ebe8ec;--mdc-theme-on-surface-variant: #d5d3d8;--mdc-theme-inverse-surface: #ebe8ec;--mdc-theme-inverse-on-surface: #3e3e41;--mdc-theme-negative: #fd7d69;--mdc-theme-negative-container: #65322a;--mdc-theme-on-negative: #331915;--mdc-theme-on-negative-container: #ffac9f;--mdc-theme-positive: #91d890;--mdc-theme-positive-container: #224b22;--mdc-theme-on-positive: #112611;--mdc-theme-on-positive-container: #91d890;--mdc-theme-caution: #ffcd9e;--mdc-theme-caution-container: #66492f;--mdc-theme-on-caution: #66492f;--mdc-theme-on-caution-container: #ffcd9e;--mdc-theme-outline: #8f8e97;--mdc-theme-outline-variant: #3e3e41;--mdc-theme-shadow: #000000;--mdc-theme-scrim: rgba(0, 0, 0, 0.32);--mdc-theme-primary-fixed: #dde1ff;--mdc-theme-primary-fixed-dim: #bac3ff;--mdc-theme-secondary-fixed: #dfe1f9;--mdc-theme-secondary-fixed-dim: #c3c5dd;--mdc-theme-tertiary-fixed: #f79e79;--mdc-theme-tertiary-fixed-dim: #f37440;--mdc-theme-primary-8: rgba(186, 195, 255, 0.08);--mdc-theme-primary-12: rgba(186, 195, 255, 0.12);--mdc-theme-on-surface-8: rgba(235, 232, 236, 0.08);--mdc-theme-on-surface-12: rgba(235, 232, 236, 0.12);--mdc-theme-on-primary-container: #dde1ff;--mdc-theme-inverse-primary: #3053f4;--mdc-theme-on-surface-38: rgba(235, 232, 236, 0.38);--mdc-theme-on-surface-16: rgba(235, 232, 236, 0.16);--mdc-theme-on-primary-12: rgba(17, 26, 40, 0.12);--mdc-theme-on-primary-8: rgba(17, 26, 40, 0.08);--mdc-theme-primary-16: rgba(186, 195, 255, 0.16);--mdc-theme-on-surface-variant-8: rgba(213, 211, 216, 0.08);--mdc-theme-on-tertiary-container-8: rgba(254, 241, 236, 0.08);--mdc-theme-on-tertiary-container-12: rgba(254, 241, 236, 0.12);--mdc-theme-on-primary-container-12: rgba(221, 225, 255, 0.12);--mdc-theme-on-surface-variant-12: rgba(213, 211, 216, 0.12);--mdc-theme-on-secondary-container-8: rgba(91, 93, 114, 0.08);--mdc-theme-on-secondary-container-16: rgba(97, 99, 120, 0.16);--mdc-theme-outline-8: rgba(143, 142, 151, 0.08);--mdc-theme-outline-12: rgba(143, 142, 151, 0.12);--mdc-theme-outline-16: rgba(143, 142, 151, 0.16);--mdc-theme-surface-variant: #000000;--mdc-theme-emphasis: #cc809c;--mdc-theme-emphasis-container: #66404e;--mdc-theme-on-emphasis: #191013;--mdc-theme-on-emphasis-container: #ffd9e7;--mdc-theme-positive-16: rgba(145, 216, 144, 0.16);--mdc-theme-caution-16: rgba(255, 183, 117, 0.16);--mdc-theme-negative-12: rgba(253, 125, 105, 0.12);--mdc-theme-on-secondary-container-12: rgba(91, 93, 114, 0.12);--mdc-theme-on-primary-16: rgba(17, 26, 40, 0.16);--mdc-theme-on-primary-container-8: rgba(221, 225, 255, 0.08);--mdc-theme-on-primary-container-16: rgba(221, 225, 255, 0.16);--mdc-theme-on-secondary-8: rgba(23, 26, 44, 0.08);--mdc-theme-on-secondary-12: rgba(23, 26, 44, 0.12);--mdc-theme-on-secondary-16: rgba(23, 26, 44, 0.16);--mdc-theme-on-tertiary-8: rgba(97, 46, 26, 0.08);--mdc-theme-on-tertiary-12: rgba(97, 46, 26, 0.12);--mdc-theme-on-tertiary-16: rgba(97, 46, 26, 0.16);--mdc-theme-on-tertiary-container-16: rgba(254, 241, 236, 0.16);--mdc-theme-on-surface-variant-16: rgba(213, 211, 216, 0.16);--mdc-theme-negative-8: rgba(253, 125, 105, 0.08);--mdc-theme-negative-16: rgba(253, 125, 105, 0.16);--mdc-theme-positive-12: rgba(145, 216, 144, 0.12);--mdc-theme-positive-8: rgba(145, 216, 144, 0.08);--mdc-theme-on-positive-8: rgba(17, 38, 17, 0.08);--mdc-theme-on-positive-12: rgba(17, 38, 17, 0.12);--mdc-theme-on-positive-16: rgba(17, 38, 17, 0.16);--mdc-theme-on-positive-container-8: rgba(145, 216, 144, 0.08);--mdc-theme-on-positive-container-12: rgba(145, 216, 144, 0.12);--mdc-theme-on-positive-container-16: rgba(145, 216, 144, 0.16);--mdc-theme-caution-12: rgba(255, 183, 117, 0.12);--mdc-theme-caution-8: rgba(255, 183, 117, 0.08);--mdc-theme-on-caution-8: rgba(102, 73, 47, 0.08);--mdc-theme-on-caution-12: rgba(102, 73, 47, 0.12);--mdc-theme-on-caution-16: rgba(102, 73, 47, 0.16);--mdc-theme-on-negative-8: rgba(51, 25, 21, 0.08);--mdc-theme-on-negative-12: rgba(51, 25, 21, 0.12);--mdc-theme-on-negative-16: rgba(51, 25, 21, 0.16);--mdc-theme-on-caution-container-8: rgba(25, 18, 12, 0.08);--mdc-theme-on-caution-container-12: rgba(25, 18, 12, 0.12);--mdc-theme-on-caution-container-16: rgba(25, 18, 12, 0.16);--mdc-theme-emphasis-8: rgba(204, 128, 156, 0.08);--mdc-theme-emphasis-12: rgba(204, 128, 156, 0.12);--mdc-theme-emphasis-16: rgba(204, 128, 156, 0.16);--mdc-theme-on-emphasis-8: rgba(25, 16, 19, 0.08);--mdc-theme-on-emphasis-12: rgba(25, 16, 19, 0.12);--mdc-theme-on-emphasis-16: rgba(25, 16, 19, 0.16);--mdc-theme-on-emphasis-container-8: rgba(255, 217, 231, 0.08);--mdc-theme-on-emphasis-container-12: rgba(255, 217, 231, 0.12);--mdc-theme-on-emphasis-container-16: rgba(255, 217, 231, 0.16);--mdc-theme-inverse-on-surface-12: rgba(62, 62, 65, 0.12);--mdc-theme-inverse-primary-12: rgba(48, 83, 244, 0.12);--mdc-theme-inverse-on-surface-8: rgba(62, 62, 65, 0.08);--mdc-theme-inverse-primary-8: rgba(48, 83, 244, 0.08);--mdc-theme-inverse-primary-16: rgba(48, 83, 244, 0.16);--mdc-theme-inverse-on-surface-16: rgba(62, 62, 65, 0.16);--mdc-theme-on-primary-74: rgba(17, 26, 40, 0.74);--mdc-theme-on-surface-74: rgba(235, 232, 236, 0.74);--mdc-theme-tertiary-8: rgba(255, 95, 2, 0.08);--mdc-theme-tertiary-12: rgba(255, 95, 2, 0.12);--mdc-theme-tertiary-16: rgba(255, 95, 2, 0.16);--mdc-theme-secondary-8: rgba(195, 197, 221, 0.08);--mdc-theme-secondary-12: rgba(195, 197, 221, 0.12);--mdc-theme-secondary-16: rgba(195, 197, 221, 0.16);--mdc-theme-on-secondary-74: rgba(23, 26, 44, 0.74);--mdc-theme-inverse-secondary: #5b5d72;--mdc-theme-inverse-secondary-8: rgba(97, 99, 120, 0.08);--mdc-theme-inverse-secondary-12: rgba(97, 99, 120, 0.12);--mdc-theme-inverse-secondary-16: rgba(97, 99, 120, 0.16);--mdc-theme-on-tertiary-74: rgba(97, 46, 26, 0.74);--mdc-theme-inverse-tertiary: #612e1a;--mdc-theme-inverse-tertiary-8: rgba(255, 95, 2, 0.08);--mdc-theme-inverse-tertiary-12: rgba(255, 95, 2, 0.12);--mdc-theme-inverse-tertiary-16: rgba(255, 95, 2, 0.16);--mdc-theme-on-negative-container-8: rgba(255, 172, 159, 0.08);--mdc-theme-on-negative-container-12: rgba(255, 172, 159, 0.12);--mdc-theme-on-negative-container-16: rgba(255, 172, 159, 0.16);--mdc-theme-on-surface-4: rgba(235, 232, 236, 0.04);--mdc-theme-on-surface-variant-4: rgba(213, 211, 216, 0.04);--mdc-theme-inverse-on-surface-4: rgba(62, 62, 65, 0.04);--mdc-theme-primary-4: rgba(186, 195, 255, 0.04);--mdc-theme-on-primary-4: rgba(17, 26, 40, 0.04);--mdc-theme-on-primary-container-4: rgba(221, 225, 255, 0.04);--mdc-theme-inverse-primary-4: rgba(48, 83, 244, 0.04);--mdc-theme-secondary-4: rgba(195, 197, 221, 0.04);--mdc-theme-on-secondary-4: rgba(23, 26, 44, 0.04);--mdc-theme-on-secondary-container-4: rgba(91, 93, 114, 0.04);--mdc-theme-inverse-secondary-4: rgba(97, 99, 120, 0.04);--mdc-theme-tertiary-4: rgba(255, 95, 2, 0.04);--mdc-theme-on-tertiary-4: rgba(97, 46, 26, 0.04);--mdc-theme-on-tertiary-container-4: rgba(254, 241, 236, 0.04);--mdc-theme-inverse-tertiary-4: rgba(255, 95, 2, 0.04);--mdc-theme-negative-4: rgba(253, 125, 105, 0.04);--mdc-theme-on-negative-4: rgba(51, 25, 21, 0.04);--mdc-theme-on-negative-container-4: rgba(255, 172, 159, 0.04);--mdc-theme-positive-4: rgba(145, 216, 144, 0.04);--mdc-theme-on-positive-4: rgba(17, 38, 17, 0.04);--mdc-theme-on-positive-container-4: rgba(145, 216, 144, 0.04);--mdc-theme-caution-4: rgba(255, 183, 117, 0.04);--mdc-theme-on-caution-4: rgba(102, 73, 47, 0.04);--mdc-theme-on-caution-container-4: rgba(25, 18, 12, 0.04);--mdc-theme-emphasis-4: rgba(204, 128, 156, 0.04);--mdc-theme-on-emphasis-4: rgba(25, 16, 19, 0.04);--mdc-theme-on-emphasis-container-4: rgba(255, 217, 231, 0.04);--mdc-theme-on-surface-20: rgba(235, 232, 236, 0.2);--mdc-theme-primary-20: rgba(186, 195, 255, 0.2);--mdc-theme-negative-20: rgba(253, 125, 105, 0.2);--mdc-theme-positive-20: rgba(145, 216, 144, 0.2);--mdc-theme-caution-20: rgba(255, 183, 117, 0.2);--mdc-theme-emphasis-20: rgba(204, 128, 156, 0.2);--mdc-theme-primary-24: rgba(186, 195, 255, 0.24);--mdc-theme-negative-24: rgba(253, 125, 105, 0.24);--mdc-theme-positive-24: rgba(145, 216, 144, 0.24);--mdc-theme-caution-24: rgba(255, 183, 117, 0.24);--mdc-theme-emphasis-24: rgba(204, 128, 156, 0.24);--mdc-theme-background: #1e1d1e;--mdc-theme-surface-variant-8: rgba(0, 0, 0, 0.08);--mdc-theme-surface-variant-12: rgba(0, 0, 0, 0.12);--mdc-theme-surface-variant-16: rgba(0, 0, 0, 0.16);--mdc-theme-logo: #ffffff;--mdc-theme-on-surface-variant-38: rgba(213, 211, 216, 0.38);--mdc-theme-on-primary-38: rgba(17, 26, 40, 0.38);--mdc-theme-on-secondary-38: rgba(23, 26, 44, 0.38);--mdc-theme-on-secondary-container-38: rgba(97, 99, 120, 0.38);--mdc-theme-on-secondary-container-74: rgba(97, 99, 120, 0.74);--mdc-theme-on-tertiary-38: rgba(97, 46, 26, 0.38);--mdc-theme-on-tertiary-container-38: rgba(254, 241, 236, 0.38);--mdc-theme-on-tertiary-container-74: rgba(254, 241, 236, 0.74);--mdc-theme-inverse-tertiary-38: rgba(255, 95, 2, 0.38);--mdc-theme-inverse-tertiary-74: rgba(255, 95, 2, 0.74);--mdc-theme-negative-38: rgba(253, 125, 105, 0.38);--mdc-theme-negative-74: rgba(253, 125, 105, 0.74);--mdc-theme-on-negative-38: rgba(51, 25, 21, 0.38);--mdc-theme-on-negative-74: rgba(51, 25, 21, 0.74);--mdc-theme-on-negative-container-38: rgba(255, 172, 159, 0.38);--mdc-theme-on-negative-container-74: rgba(255, 172, 159, 0.74);--mdc-theme-positive-38: rgba(145, 216, 144, 0.38);--mdc-theme-positive-74: rgba(145, 216, 144, 0.74);--mdc-theme-on-positive-38: rgba(17, 38, 17, 0.38);--mdc-theme-on-positive-74: rgba(17, 38, 17, 0.74);--mdc-theme-on-positive-container-38: rgba(145, 216, 144, 0.38);--mdc-theme-on-positive-container-74: rgba(145, 216, 144, 0.74);--mdc-theme-caution-38: rgba(255, 183, 117, 0.38);--mdc-theme-caution-74: rgba(255, 183, 117, 0.74);--mdc-theme-on-caution-38: rgba(102, 73, 47, 0.38);--mdc-theme-on-caution-74: rgba(102, 73, 47, 0.74);--mdc-theme-on-caution-container-38: rgba(25, 18, 12, 0.38);--mdc-theme-on-caution-container-74: rgba(25, 18, 12, 0.74);--mdc-theme-emphasis-38: rgba(204, 128, 156, 0.38);--mdc-theme-emphasis-74: rgba(204, 128, 156, 0.74);--mdc-theme-on-emphasis-38: rgba(25, 16, 19, 0.38);--mdc-theme-on-emphasis-74: rgba(25, 16, 19, 0.74);--mdc-theme-on-emphasis-container-38: rgba(255, 217, 231, 0.38);--mdc-theme-on-emphasis-container-74: rgba(255, 217, 231, 0.74);--mdc-theme-on-primary-container-38: rgba(221, 225, 255, 0.38);--mdc-theme-on-primary-container-74: rgba(221, 225, 255, 0.74);--mdc-theme-primary-38: rgba(186, 195, 255, 0.38);--mdc-theme-primary-74: rgba(186, 195, 255, 0.74);--mdc-theme-brand: #ff5f02;--mdc-theme-code-snippet-color: #abb2bf;--mdc-theme-code-snippet-comment: #5c6370;--mdc-theme-code-snippet-keyword: #c678dd;--mdc-theme-code-snippet-selector: #e06c75;--mdc-theme-code-snippet-literal: #56b6c2;--mdc-theme-code-snippet-string: #98c379;--mdc-theme-code-snippet-variable: #d19a66;--mdc-theme-code-snippet-title: #61aeee;--mdc-theme-code-snippet-class: #e6c07b;--mdc-theme-error: #fd7d69;--mdc-theme-on-background: #ebe8ec;--mdc-theme-on-error: #331915;--mdc-theme-divider: #3e3e41;--mdc-theme-accent: #bac3ff;--mdc-theme-surface-canvas: #38383b;--mdc-theme-surface-primary: #1d2c43;--mdc-theme-surface-primary-highlight: rgba(186, 195, 255, 0.08);--mdc-theme-surface-primary-highlight-hover: rgba(186, 195, 255, 0.08);--mdc-theme-surface-accent: #1d2c43;--mdc-theme-surface-accent-highlight: rgba(186, 195, 255, 0.08);--mdc-theme-surface-accent-highlight-hover: rgba(186, 195, 255, 0.08);--mdc-theme-surface-secondary: #434659;--mdc-theme-surface-secondary-highlight: rgba(195, 197, 221, 0.08);--mdc-theme-surface-secondary-highlight-hover: rgba(195, 197, 221, 0.08);--mdc-theme-surface-positive: #224b22;--mdc-theme-surface-positive-highlight: rgba(145, 216, 144, 0.08);--mdc-theme-surface-positive-highlight-hover: rgba(145, 216, 144, 0.08);--mdc-theme-surface-caution: #66492f;--mdc-theme-surface-caution-highlight: rgba(255, 183, 117, 0.08);--mdc-theme-surface-caution-highlight-hover: rgba(255, 183, 117, 0.08);--mdc-theme-surface-negative: #65322a;--mdc-theme-surface-negative-highlight: rgba(253, 125, 105, 0.08);--mdc-theme-surface-negative-highlight-hover: rgba(253, 125, 105, 0.08);--mdc-theme-surface-neutral: #f3f5f9;--mdc-theme-surface-neutral-highlight: rgba(243, 245, 249, 0.04);--mdc-theme-surface-neutral-highlight-hover: rgba(243, 245, 249, 0.08);--mdc-theme-surface-emphasis: #66404e;--mdc-theme-surface-emphasis-highlight: rgba(204, 128, 156, 0.08);--mdc-theme-surface-emphasis-highlight-hover: rgba(204, 128, 156, 0.08);--mdc-theme-text-primary-on-background: #ebe8ec;--mdc-theme-text-secondary-on-background: #d5d3d8;--mdc-theme-text-hint-on-background: #d5d3d8;--mdc-theme-text-disabled-on-background: rgba(235, 232, 236, 0.38);--mdc-theme-text-icon-on-background: #d5d3d8;--mdc-theme-text-logo-on-background: #ffffff;--mdc-theme-text-primary-on-light: #00233c;--mdc-theme-text-secondary-on-light: #59627b;--mdc-theme-text-hint-on-light: #59627b;--mdc-theme-text-disabled-on-light: rgba(0, 35, 60, 0.38);--mdc-theme-text-icon-on-light: #59627b;--mdc-theme-text-primary-on-dark: #ebe8ec;--mdc-theme-text-secondary-on-dark: #d5d3d8;--mdc-theme-text-hint-on-dark: #d5d3d8;--mdc-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.38);--mdc-theme-text-icon-on-dark: #d5d3d8;--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: Arial, sans-serif;--mdc-typography-body1-font-size: 16px;--mdc-typography-body1-font-weight: 400;--mdc-typography-body1-line-height: 24px;--mdc-typography-body2-font-family: Arial, sans-serif;--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-caption-font-family: Arial, sans-serif;--mdc-typography-caption-font-size: 12px;--mdc-typography-caption-font-weight: 400;--mdc-typography-caption-line-height: 16px;--mdc-typography-code-font-family: Menlo;--mdc-typography-code-font-size: 12px;--mdc-typography-code-font-weight: 400;--mdc-typography-code-line-height: 20px;--mdc-theme-border: #3e3e41;--mdc-theme-surface-accent: #1d2c43;--mdc-theme-surface-accent-highlight: rgba(186, 195, 255, 0.08);--mdc-theme-surface-accent-highlight-hover: rgba(186, 195, 255, 0.08);--mdc-typography-button-letter-spacing: 0;--mdc-icon-font: "Material Symbols Outlined";--mdc-ripple-color: #ebe8ec;--mdc-shape-small: 8px;--mdc-shape-medium: 8px;--mdc-plain-tooltip-container-color: #ebe8ec;--mdc-plain-tooltip-supporting-text-color: #3e3e41;border-width:0;border-style:solid}:root .mdc-data-table__sort-icon-button{color:#d5d3d8}: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:#d5d3d8;background-color:var(--mdc-ripple-color, #d5d3d8)}: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:#d5d3d8}: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:#d5d3d8;background-color:var(--mdc-ripple-color, #d5d3d8)}: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(243, 245, 249, 0.04)}:root .mdc-data-table__row:not(.mdc-data-table__row--selected):hover{background-color:rgba(243, 245, 249, 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 .mdc-data-table__header-row{height:calc(56px + var(--cv-density-mode, 0)*var(--cv-density-interval, 4px))}:root .mdc-data-table__row{height:calc(52px + var(--cv-density-mode, 0)*var(--cv-density-interval, 4px))}
|
@@ -0,0 +1 @@
|
|
1
|
+
:root{--cv-theme-primary: #3053f4;--cv-theme-primary-container: #ececfe;--cv-theme-on-primary: #ffffff;--cv-theme-secondary: #00233c;--cv-theme-secondary-container: #deeafa;--cv-theme-on-secondary: #ffffff;--cv-theme-on-secondary-container: #001d33;--cv-theme-tertiary: #ff5f02;--cv-theme-tertiary-container: #ffdbce;--cv-theme-on-tertiary: #ffffff;--cv-theme-on-tertiary-container: #481300;--cv-theme-surface: #f8f9fb;--cv-theme-surface-dim: #f3f5f9;--cv-theme-surface-bright: #ffffff;--cv-theme-surface-container-lowest: #ffffff;--cv-theme-surface-container-low: #f3f5f9;--cv-theme-surface-container: #eff1f7;--cv-theme-surface-container-high: #ebedf5;--cv-theme-surface-container-highest: #e6e9f3;--cv-theme-on-surface: #00233c;--cv-theme-on-surface-variant: #59627b;--cv-theme-inverse-surface: #3e4557;--cv-theme-inverse-on-surface: #f1f3f8;--cv-theme-negative: #ae1209;--cv-theme-negative-container: #ffb2ae;--cv-theme-on-negative: #ffffff;--cv-theme-on-negative-container: #110201;--cv-theme-positive: #036600;--cv-theme-positive-container: #8fcc8e;--cv-theme-on-positive: #ffffff;--cv-theme-on-positive-container: #000a00;--cv-theme-caution: #f38800;--cv-theme-caution-container: #ffcc8c;--cv-theme-on-caution: #ffffff;--cv-theme-on-caution-container: #180e00;--cv-theme-outline: #727d9c;--cv-theme-outline-variant: #d1d5e7;--cv-theme-shadow: #000000;--cv-theme-scrim: rgba(0, 0, 0, 0.32);--cv-theme-primary-fixed: #dee0ff;--cv-theme-primary-fixed-dim: #bac3ff;--cv-theme-secondary-fixed: #deeafa;--cv-theme-secondary-fixed-dim: #bcd5f6;--cv-theme-tertiary-fixed: #ffdbce;--cv-theme-tertiary-fixed-dim: #ffc0a8;--cv-theme-primary-8: rgba(48, 83, 244, 0.08);--cv-theme-primary-12: rgba(48, 83, 244, 0.12);--cv-theme-on-surface-8: rgba(0, 35, 60, 0.08);--cv-theme-on-surface-12: rgba(0, 35, 60, 0.12);--cv-theme-on-primary-container: #00115a;--cv-theme-inverse-primary: #bac3ff;--cv-theme-on-surface-38: rgba(0, 35, 60, 0.38);--cv-theme-on-surface-16: rgba(0, 35, 60, 0.16);--cv-theme-on-primary-12: rgba(255, 255, 255, 0.12);--cv-theme-on-primary-8: rgba(255, 255, 255, 0.08);--cv-theme-primary-16: rgba(48, 83, 244, 0.16);--cv-theme-on-surface-variant-8: rgba(89, 98, 123, 0.08);--cv-theme-on-tertiary-container-8: rgba(72, 19, 0, 0.08);--cv-theme-on-tertiary-container-12: rgba(72, 19, 0, 0.12);--cv-theme-on-primary-container-12: rgba(0, 17, 90, 0.12);--cv-theme-on-surface-variant-12: rgba(89, 98, 123, 0.12);--cv-theme-on-secondary-container-8: rgba(0, 29, 51, 0.08);--cv-theme-on-secondary-container-16: rgba(0, 29, 51, 0.16);--cv-theme-outline-8: rgba(114, 125, 156, 0.08);--cv-theme-outline-12: rgba(114, 125, 156, 0.12);--cv-theme-outline-16: rgba(114, 125, 156, 0.16);--cv-theme-surface-variant: #f8f9fb;--cv-theme-emphasis: #b10142;--cv-theme-emphasis-container: #e8b3c6;--cv-theme-on-emphasis: #ffffff;--cv-theme-on-emphasis-container: #120007;--cv-theme-positive-16: rgba(3, 102, 0, 0.16);--cv-theme-caution-16: rgba(243, 136, 0, 0.16);--cv-theme-negative-12: rgba(174, 18, 9, 0.12);--cv-theme-on-secondary-container-12: rgba(0, 29, 51, 0.12);--cv-theme-on-primary-16: rgba(255, 255, 255, 0.16);--cv-theme-on-primary-container-8: rgba(0, 17, 90, 0.08);--cv-theme-on-primary-container-16: rgba(0, 17, 90, 0.16);--cv-theme-on-secondary-8: rgba(255, 255, 255, 0.08);--cv-theme-on-secondary-12: rgba(255, 255, 255, 0.12);--cv-theme-on-secondary-16: rgba(255, 255, 255, 0.16);--cv-theme-on-tertiary-8: rgba(255, 255, 255, 0.08);--cv-theme-on-tertiary-12: rgba(255, 255, 255, 0.12);--cv-theme-on-tertiary-16: rgba(255, 255, 255, 0.16);--cv-theme-on-tertiary-container-16: rgba(72, 19, 0, 0.16);--cv-theme-on-surface-variant-16: rgba(89, 98, 123, 0.16);--cv-theme-negative-8: rgba(174, 18, 9, 0.08);--cv-theme-negative-16: rgba(174, 18, 9, 0.16);--cv-theme-positive-12: rgba(3, 102, 0, 0.12);--cv-theme-positive-8: rgba(3, 102, 0, 0.08);--cv-theme-on-positive-8: rgba(255, 255, 255, 0.08);--cv-theme-on-positive-12: rgba(255, 255, 255, 0.12);--cv-theme-on-positive-16: rgba(255, 255, 255, 0.16);--cv-theme-on-positive-container-8: rgba(0, 10, 0, 0.08);--cv-theme-on-positive-container-12: rgba(0, 10, 0, 0.12);--cv-theme-on-positive-container-16: rgba(0, 10, 0, 0.16);--cv-theme-caution-12: rgba(243, 136, 0, 0.12);--cv-theme-caution-8: rgba(243, 136, 0, 0.08);--cv-theme-on-caution-8: rgba(255, 255, 255, 0.08);--cv-theme-on-caution-12: rgba(255, 255, 255, 0.12);--cv-theme-on-caution-16: rgba(255, 255, 255, 0.16);--cv-theme-on-negative-8: rgba(255, 255, 255, 0.08);--cv-theme-on-negative-12: rgba(255, 255, 255, 0.12);--cv-theme-on-negative-16: rgba(255, 255, 255, 0.16);--cv-theme-on-caution-container-8: rgba(24, 14, 0, 0.08);--cv-theme-on-caution-container-12: rgba(24, 14, 0, 0.12);--cv-theme-on-caution-container-16: rgba(24, 14, 0, 0.16);--cv-theme-emphasis-8: rgba(177, 1, 66, 0.08);--cv-theme-emphasis-12: rgba(177, 1, 66, 0.12);--cv-theme-emphasis-16: rgba(177, 1, 66, 0.16);--cv-theme-on-emphasis-8: rgba(255, 255, 255, 0.08);--cv-theme-on-emphasis-12: rgba(255, 255, 255, 0.12);--cv-theme-on-emphasis-16: rgba(255, 255, 255, 0.16);--cv-theme-on-emphasis-container-8: rgba(18, 0, 7, 0.08);--cv-theme-on-emphasis-container-12: rgba(18, 0, 7, 0.12);--cv-theme-on-emphasis-container-16: rgba(24, 14, 0, 0.16);--cv-theme-inverse-on-surface-12: rgba(246, 243, 246, 0.12);--cv-theme-inverse-primary-12: rgba(186, 195, 255, 0.12);--cv-theme-inverse-on-surface-8: rgba(246, 243, 246, 0.08);--cv-theme-inverse-primary-8: rgba(186, 195, 255, 0.08);--cv-theme-inverse-primary-16: rgba(186, 195, 255, 0.16);--cv-theme-inverse-on-surface-16: rgba(246, 243, 246, 0.12);--cv-theme-on-primary-74: rgba(255, 255, 255, 0.74);--cv-theme-on-surface-74: rgba(0, 35, 60, 0.74);--cv-theme-tertiary-8: rgba(255, 95, 2, 0.08);--cv-theme-tertiary-12: rgba(255, 95, 2, 0.12);--cv-theme-tertiary-16: rgba(255, 95, 2, 0.16);--cv-theme-secondary-8: rgba(0, 35, 60, 0.08);--cv-theme-secondary-12: rgba(0, 35, 60, 0.12);--cv-theme-secondary-16: rgba(0, 35, 60, 0.16);--cv-theme-on-secondary-74: rgba(255, 255, 255, 0.74);--cv-theme-inverse-secondary: #bcd5f6;--cv-theme-inverse-secondary-8: rgba(188, 213, 246, 0.08);--cv-theme-inverse-secondary-12: rgba(188, 213, 246, 0.12);--cv-theme-inverse-secondary-16: rgba(195, 197, 221, 0.16);--cv-theme-on-tertiary-74: rgba(255, 255, 255, 0.74);--cv-theme-inverse-tertiary: #ff5f02;--cv-theme-inverse-tertiary-8: rgba(255, 95, 2, 0.08);--cv-theme-inverse-tertiary-12: rgba(255, 95, 2, 0.12);--cv-theme-inverse-tertiary-16: rgba(255, 95, 2, 0.16);--cv-theme-on-negative-container-8: rgba(17, 2, 1, 0.08);--cv-theme-on-negative-container-12: rgba(17, 2, 1, 0.12);--cv-theme-on-negative-container-16: rgba(17, 2, 1, 0.16);--cv-theme-on-surface-4: rgba(0, 35, 60, 0.04);--cv-theme-on-surface-variant-4: rgba(89, 98, 123, 0.04);--cv-theme-inverse-on-surface-4: rgba(246, 243, 246, 0.04);--cv-theme-primary-4: rgba(48, 83, 244, 0.04);--cv-theme-on-primary-4: rgba(255, 255, 255, 0.04);--cv-theme-on-primary-container-4: rgba(0, 17, 90, 0.04);--cv-theme-inverse-primary-4: rgba(186, 195, 255, 0.04);--cv-theme-secondary-4: rgba(0, 35, 60, 0.04);--cv-theme-on-secondary-4: rgba(255, 255, 255, 0.04);--cv-theme-on-secondary-container-4: rgba(0, 29, 51, 0.04);--cv-theme-inverse-secondary-4: rgba(188, 213, 246, 0.04);--cv-theme-tertiary-4: rgba(255, 95, 2, 0.04);--cv-theme-on-tertiary-4: rgba(255, 255, 255, 0.04);--cv-theme-on-tertiary-container-4: rgba(72, 19, 0, 0.04);--cv-theme-inverse-tertiary-4: rgba(255, 95, 2, 0.04);--cv-theme-negative-4: rgba(174, 18, 9, 0.04);--cv-theme-on-negative-4: rgba(255, 255, 255, 0.04);--cv-theme-on-negative-container-4: rgba(17, 2, 1, 0.04);--cv-theme-positive-4: rgba(3, 102, 0, 0.04);--cv-theme-on-positive-4: rgba(255, 255, 255, 0.04);--cv-theme-on-positive-container-4: rgba(0, 10, 0, 0.04);--cv-theme-caution-4: rgba(243, 136, 0, 0.04);--cv-theme-on-caution-4: rgba(255, 255, 255, 0.04);--cv-theme-on-caution-container-4: rgba(24, 14, 0, 0.04);--cv-theme-emphasis-4: rgba(177, 1, 66, 0.04);--cv-theme-on-emphasis-4: rgba(255, 255, 255, 0.04);--cv-theme-on-emphasis-container-4: rgba(18, 0, 7, 0.04);--cv-theme-on-surface-20: rgba(0, 35, 60, 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.24);--cv-theme-negative-24: rgba(174, 18, 9, 0.24);--cv-theme-positive-24: rgba(3, 102, 0, 0.24);--cv-theme-caution-24: rgba(243, 136, 0, 0.24);--cv-theme-emphasis-24: rgba(177, 1, 66, 0.24);--cv-theme-background: #f8f9fb;--cv-theme-surface-variant-8: rgba(248, 249, 251, 0.08);--cv-theme-surface-variant-12: rgba(248, 249, 251, 0.12);--cv-theme-surface-variant-16: rgba(253, 249, 252, 0.16);--cv-theme-logo: #ff5f02;--cv-theme-on-surface-variant-38: rgba(89, 98, 123, 0.38);--cv-theme-on-primary-38: rgba(255, 255, 255, 0.38);--cv-theme-on-secondary-38: rgba(255, 255, 255, 0.38);--cv-theme-on-secondary-container-38: rgba(0, 29, 51, 0.38);--cv-theme-on-secondary-container-74: rgba(0, 29, 51, 0.74);--cv-theme-on-tertiary-38: rgba(255, 255, 255, 0.38);--cv-theme-on-tertiary-container-38: rgba(72, 19, 0, 0.38);--cv-theme-on-tertiary-container-74: rgba(72, 19, 0, 0.74);--cv-theme-inverse-tertiary-38: rgba(255, 95, 2, 0.38);--cv-theme-inverse-tertiary-74: rgba(255, 95, 2, 0.74);--cv-theme-negative-38: rgba(174, 18, 9, 0.38);--cv-theme-negative-74: rgba(174, 18, 9, 0.74);--cv-theme-on-negative-38: rgba(255, 255, 255, 0.38);--cv-theme-on-negative-74: rgba(255, 255, 255, 0.74);--cv-theme-on-negative-container-38: rgba(17, 2, 1, 0.38);--cv-theme-on-negative-container-74: rgba(17, 2, 1, 0.74);--cv-theme-positive-38: rgba(3, 102, 0, 0.38);--cv-theme-positive-74: rgba(3, 102, 0, 0.74);--cv-theme-on-positive-38: rgba(255, 255, 255, 0.38);--cv-theme-on-positive-74: rgba(255, 255, 255, 0.74);--cv-theme-on-positive-container-38: rgba(0, 10, 0, 0.38);--cv-theme-on-positive-container-74: rgba(0, 10, 0, 0.74);--cv-theme-caution-38: rgba(243, 136, 0, 0.38);--cv-theme-caution-74: rgba(243, 136, 0, 0.74);--cv-theme-on-caution-38: rgba(255, 255, 255, 0.38);--cv-theme-on-caution-74: rgba(255, 255, 255, 0.74);--cv-theme-on-caution-container-38: rgba(24, 14, 0, 0.38);--cv-theme-on-caution-container-74: rgba(24, 14, 0, 0.74);--cv-theme-emphasis-38: rgba(177, 1, 66, 0.38);--cv-theme-emphasis-74: rgba(177, 1, 66, 0.74);--cv-theme-on-emphasis-38: rgba(255, 255, 255, 0.38);--cv-theme-on-emphasis-74: rgba(255, 255, 255, 0.74);--cv-theme-on-emphasis-container-38: rgba(24, 14, 0, 0.38);--cv-theme-on-emphasis-container-74: rgba(24, 14, 0, 0.74);--cv-theme-on-primary-container-38: rgba(0, 17, 90, 0.38);--cv-theme-on-primary-container-74: rgba(0, 17, 90, 0.74);--cv-theme-primary-38: rgba(48, 83, 244, 0.38);--cv-theme-primary-74: rgba(48, 83, 244, 0.74);--cv-theme-brand: #ff5f02;--cv-theme-code-snippet-color: #383a42;--cv-theme-code-snippet-comment: #6c6c6c;--cv-theme-code-snippet-keyword: #a626a4;--cv-theme-code-snippet-selector: #ad0f00;--cv-theme-code-snippet-literal: #17749b;--cv-theme-code-snippet-string: #0a7c08;--cv-theme-code-snippet-variable: #8e6102;--cv-theme-code-snippet-title: #004ffd;--cv-theme-code-snippet-class: #6a6c02;--cv-theme-error: #ae1209;--cv-theme-on-background: #00233c;--cv-theme-on-error: #ffffff;--cv-theme-divider: #d1d5e7;--cv-theme-accent: #3053f4;--cv-theme-surface-canvas: #ffffff;--cv-theme-surface-primary: #ececfe;--cv-theme-surface-primary-highlight: rgba(48, 83, 244, 0.08);--cv-theme-surface-primary-highlight-hover: rgba(48, 83, 244, 0.08);--cv-theme-surface-accent: #ececfe;--cv-theme-surface-accent-highlight: rgba(48, 83, 244, 0.08);--cv-theme-surface-accent-highlight-hover: rgba(48, 83, 244, 0.12);--cv-theme-surface-secondary: #deeafa;--cv-theme-surface-secondary-highlight: rgba(0, 35, 60, 0.08);--cv-theme-surface-secondary-highlight-hover: rgba(0, 35, 60, 0.08);--cv-theme-surface-positive: #8fcc8e;--cv-theme-surface-positive-highlight: rgba(3, 102, 0, 0.08);--cv-theme-surface-positive-highlight-hover: rgba(3, 102, 0, 0.08);--cv-theme-surface-caution: #ffcc8c;--cv-theme-surface-caution-highlight: rgba(243, 136, 0, 0.08);--cv-theme-surface-caution-highlight-hover: rgba(243, 136, 0, 0.08);--cv-theme-surface-negative: #ffb2ae;--cv-theme-surface-negative-highlight: rgba(174, 18, 9, 0.08);--cv-theme-surface-negative-highlight-hover: rgba(174, 18, 9, 0.08);--cv-theme-surface-neutral: #f3f5f9;--cv-theme-surface-neutral-highlight: rgba(243, 245, 249, 0.04);--cv-theme-surface-neutral-highlight-hover: rgba(243, 245, 249, 0.08);--cv-theme-surface-emphasis: #e8b3c6;--cv-theme-surface-emphasis-highlight: rgba(177, 1, 66, 0.08);--cv-theme-surface-emphasis-highlight-hover: rgba(177, 1, 66, 0.08);--cv-theme-text-primary-on-background: #00233c;--cv-theme-text-secondary-on-background: #59627b;--cv-theme-text-hint-on-background: #59627b;--cv-theme-text-disabled-on-background: rgba(0, 35, 60, 0.38);--cv-theme-text-icon-on-background: #59627b;--cv-theme-text-logo-on-background: #ff5f02;--cv-theme-text-primary-on-light: #00233c;--cv-theme-text-secondary-on-light: #59627b;--cv-theme-text-hint-on-light: #59627b;--cv-theme-text-disabled-on-light: rgba(0, 35, 60, 0.38);--cv-theme-text-icon-on-light: #59627b;--cv-theme-text-primary-on-dark: #ebe8ec;--cv-theme-text-secondary-on-dark: #d5d3d8;--cv-theme-text-hint-on-dark: #d5d3d8;--cv-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.38);--cv-theme-text-icon-on-dark: #d5d3d8;--cv-typography-font-family: Arial, sans-serif;--cv-typography-headline1-font-family: Inter, sans-serif;--cv-typography-headline1-font-size: 96px;--cv-typography-headline1-font-weight: 500;--cv-typography-headline1-line-height: 112px;--cv-typography-headline2-font-family: Inter, sans-serif;--cv-typography-headline2-font-size: 60px;--cv-typography-headline2-font-weight: 600;--cv-typography-headline2-line-height: 84px;--cv-typography-headline3-font-family: Inter, sans-serif;--cv-typography-headline3-font-size: 48px;--cv-typography-headline3-font-weight: 600;--cv-typography-headline3-line-height: 64px;--cv-typography-headline4-font-family: Inter, sans-serif;--cv-typography-headline4-font-size: 34px;--cv-typography-headline4-font-weight: 700;--cv-typography-headline4-line-height: 48px;--cv-typography-headline5-font-family: Inter, sans-serif;--cv-typography-headline5-font-size: 24px;--cv-typography-headline5-font-weight: 700;--cv-typography-headline5-line-height: 36px;--cv-typography-headline6-font-family: Inter, sans-serif;--cv-typography-headline6-font-size: 20px;--cv-typography-headline6-font-weight: 700;--cv-typography-headline6-line-height: 28px;--cv-typography-subtitle1-font-family: Inter, sans-serif;--cv-typography-subtitle1-font-size: 14px;--cv-typography-subtitle1-font-weight: 600;--cv-typography-subtitle1-line-height: 20px;--cv-typography-subtitle2-font-family: Inter, sans-serif;--cv-typography-subtitle2-font-size: 16px;--cv-typography-subtitle2-font-weight: 600;--cv-typography-subtitle2-line-height: 24px;--cv-typography-body1-font-family: Arial, sans-serif;--cv-typography-body1-font-size: 16px;--cv-typography-body1-font-weight: 400;--cv-typography-body1-line-height: 24px;--cv-typography-body2-font-family: Arial, sans-serif;--cv-typography-body2-font-size: 14px;--cv-typography-body2-font-weight: 400;--cv-typography-body2-line-height: 20px;--cv-typography-button-font-family: Inter, sans-serif;--cv-typography-button-font-size: 14px;--cv-typography-button-font-weight: 600;--cv-typography-button-line-height: 16px;--cv-typography-caption-font-family: Arial, sans-serif;--cv-typography-caption-font-size: 12px;--cv-typography-caption-font-weight: 400;--cv-typography-caption-line-height: 16px;--cv-typography-code-font-family: Menlo;--cv-typography-code-font-size: 12px;--cv-typography-code-font-weight: 400;--cv-typography-code-line-height: 20px;--mdc-theme-primary: #3053f4;--mdc-theme-primary-container: #ececfe;--mdc-theme-on-primary: #ffffff;--mdc-theme-secondary: #00233c;--mdc-theme-secondary-container: #deeafa;--mdc-theme-on-secondary: #ffffff;--mdc-theme-on-secondary-container: #001d33;--mdc-theme-tertiary: #ff5f02;--mdc-theme-tertiary-container: #ffdbce;--mdc-theme-on-tertiary: #ffffff;--mdc-theme-on-tertiary-container: #481300;--mdc-theme-surface: #f8f9fb;--mdc-theme-surface-dim: #f3f5f9;--mdc-theme-surface-bright: #ffffff;--mdc-theme-surface-container-lowest: #ffffff;--mdc-theme-surface-container-low: #f3f5f9;--mdc-theme-surface-container: #eff1f7;--mdc-theme-surface-container-high: #ebedf5;--mdc-theme-surface-container-highest: #e6e9f3;--mdc-theme-on-surface: #00233c;--mdc-theme-on-surface-variant: #59627b;--mdc-theme-inverse-surface: #3e4557;--mdc-theme-inverse-on-surface: #f1f3f8;--mdc-theme-negative: #ae1209;--mdc-theme-negative-container: #ffb2ae;--mdc-theme-on-negative: #ffffff;--mdc-theme-on-negative-container: #110201;--mdc-theme-positive: #036600;--mdc-theme-positive-container: #8fcc8e;--mdc-theme-on-positive: #ffffff;--mdc-theme-on-positive-container: #000a00;--mdc-theme-caution: #f38800;--mdc-theme-caution-container: #ffcc8c;--mdc-theme-on-caution: #ffffff;--mdc-theme-on-caution-container: #180e00;--mdc-theme-outline: #727d9c;--mdc-theme-outline-variant: #d1d5e7;--mdc-theme-shadow: #000000;--mdc-theme-scrim: rgba(0, 0, 0, 0.32);--mdc-theme-primary-fixed: #dee0ff;--mdc-theme-primary-fixed-dim: #bac3ff;--mdc-theme-secondary-fixed: #deeafa;--mdc-theme-secondary-fixed-dim: #bcd5f6;--mdc-theme-tertiary-fixed: #ffdbce;--mdc-theme-tertiary-fixed-dim: #ffc0a8;--mdc-theme-primary-8: rgba(48, 83, 244, 0.08);--mdc-theme-primary-12: rgba(48, 83, 244, 0.12);--mdc-theme-on-surface-8: rgba(0, 35, 60, 0.08);--mdc-theme-on-surface-12: rgba(0, 35, 60, 0.12);--mdc-theme-on-primary-container: #00115a;--mdc-theme-inverse-primary: #bac3ff;--mdc-theme-on-surface-38: rgba(0, 35, 60, 0.38);--mdc-theme-on-surface-16: rgba(0, 35, 60, 0.16);--mdc-theme-on-primary-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-primary-8: rgba(255, 255, 255, 0.08);--mdc-theme-primary-16: rgba(48, 83, 244, 0.16);--mdc-theme-on-surface-variant-8: rgba(89, 98, 123, 0.08);--mdc-theme-on-tertiary-container-8: rgba(72, 19, 0, 0.08);--mdc-theme-on-tertiary-container-12: rgba(72, 19, 0, 0.12);--mdc-theme-on-primary-container-12: rgba(0, 17, 90, 0.12);--mdc-theme-on-surface-variant-12: rgba(89, 98, 123, 0.12);--mdc-theme-on-secondary-container-8: rgba(0, 29, 51, 0.08);--mdc-theme-on-secondary-container-16: rgba(0, 29, 51, 0.16);--mdc-theme-outline-8: rgba(114, 125, 156, 0.08);--mdc-theme-outline-12: rgba(114, 125, 156, 0.12);--mdc-theme-outline-16: rgba(114, 125, 156, 0.16);--mdc-theme-surface-variant: #f8f9fb;--mdc-theme-emphasis: #b10142;--mdc-theme-emphasis-container: #e8b3c6;--mdc-theme-on-emphasis: #ffffff;--mdc-theme-on-emphasis-container: #120007;--mdc-theme-positive-16: rgba(3, 102, 0, 0.16);--mdc-theme-caution-16: rgba(243, 136, 0, 0.16);--mdc-theme-negative-12: rgba(174, 18, 9, 0.12);--mdc-theme-on-secondary-container-12: rgba(0, 29, 51, 0.12);--mdc-theme-on-primary-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-primary-container-8: rgba(0, 17, 90, 0.08);--mdc-theme-on-primary-container-16: rgba(0, 17, 90, 0.16);--mdc-theme-on-secondary-8: rgba(255, 255, 255, 0.08);--mdc-theme-on-secondary-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-secondary-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-tertiary-8: rgba(255, 255, 255, 0.08);--mdc-theme-on-tertiary-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-tertiary-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-tertiary-container-16: rgba(72, 19, 0, 0.16);--mdc-theme-on-surface-variant-16: rgba(89, 98, 123, 0.16);--mdc-theme-negative-8: rgba(174, 18, 9, 0.08);--mdc-theme-negative-16: rgba(174, 18, 9, 0.16);--mdc-theme-positive-12: rgba(3, 102, 0, 0.12);--mdc-theme-positive-8: rgba(3, 102, 0, 0.08);--mdc-theme-on-positive-8: rgba(255, 255, 255, 0.08);--mdc-theme-on-positive-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-positive-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-positive-container-8: rgba(0, 10, 0, 0.08);--mdc-theme-on-positive-container-12: rgba(0, 10, 0, 0.12);--mdc-theme-on-positive-container-16: rgba(0, 10, 0, 0.16);--mdc-theme-caution-12: rgba(243, 136, 0, 0.12);--mdc-theme-caution-8: rgba(243, 136, 0, 0.08);--mdc-theme-on-caution-8: rgba(255, 255, 255, 0.08);--mdc-theme-on-caution-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-caution-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-negative-8: rgba(255, 255, 255, 0.08);--mdc-theme-on-negative-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-negative-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-caution-container-8: rgba(24, 14, 0, 0.08);--mdc-theme-on-caution-container-12: rgba(24, 14, 0, 0.12);--mdc-theme-on-caution-container-16: rgba(24, 14, 0, 0.16);--mdc-theme-emphasis-8: rgba(177, 1, 66, 0.08);--mdc-theme-emphasis-12: rgba(177, 1, 66, 0.12);--mdc-theme-emphasis-16: rgba(177, 1, 66, 0.16);--mdc-theme-on-emphasis-8: rgba(255, 255, 255, 0.08);--mdc-theme-on-emphasis-12: rgba(255, 255, 255, 0.12);--mdc-theme-on-emphasis-16: rgba(255, 255, 255, 0.16);--mdc-theme-on-emphasis-container-8: rgba(18, 0, 7, 0.08);--mdc-theme-on-emphasis-container-12: rgba(18, 0, 7, 0.12);--mdc-theme-on-emphasis-container-16: rgba(24, 14, 0, 0.16);--mdc-theme-inverse-on-surface-12: rgba(246, 243, 246, 0.12);--mdc-theme-inverse-primary-12: rgba(186, 195, 255, 0.12);--mdc-theme-inverse-on-surface-8: rgba(246, 243, 246, 0.08);--mdc-theme-inverse-primary-8: rgba(186, 195, 255, 0.08);--mdc-theme-inverse-primary-16: rgba(186, 195, 255, 0.16);--mdc-theme-inverse-on-surface-16: rgba(246, 243, 246, 0.12);--mdc-theme-on-primary-74: rgba(255, 255, 255, 0.74);--mdc-theme-on-surface-74: rgba(0, 35, 60, 0.74);--mdc-theme-tertiary-8: rgba(255, 95, 2, 0.08);--mdc-theme-tertiary-12: rgba(255, 95, 2, 0.12);--mdc-theme-tertiary-16: rgba(255, 95, 2, 0.16);--mdc-theme-secondary-8: rgba(0, 35, 60, 0.08);--mdc-theme-secondary-12: rgba(0, 35, 60, 0.12);--mdc-theme-secondary-16: rgba(0, 35, 60, 0.16);--mdc-theme-on-secondary-74: rgba(255, 255, 255, 0.74);--mdc-theme-inverse-secondary: #bcd5f6;--mdc-theme-inverse-secondary-8: rgba(188, 213, 246, 0.08);--mdc-theme-inverse-secondary-12: rgba(188, 213, 246, 0.12);--mdc-theme-inverse-secondary-16: rgba(195, 197, 221, 0.16);--mdc-theme-on-tertiary-74: rgba(255, 255, 255, 0.74);--mdc-theme-inverse-tertiary: #ff5f02;--mdc-theme-inverse-tertiary-8: rgba(255, 95, 2, 0.08);--mdc-theme-inverse-tertiary-12: rgba(255, 95, 2, 0.12);--mdc-theme-inverse-tertiary-16: rgba(255, 95, 2, 0.16);--mdc-theme-on-negative-container-8: rgba(17, 2, 1, 0.08);--mdc-theme-on-negative-container-12: rgba(17, 2, 1, 0.12);--mdc-theme-on-negative-container-16: rgba(17, 2, 1, 0.16);--mdc-theme-on-surface-4: rgba(0, 35, 60, 0.04);--mdc-theme-on-surface-variant-4: rgba(89, 98, 123, 0.04);--mdc-theme-inverse-on-surface-4: rgba(246, 243, 246, 0.04);--mdc-theme-primary-4: rgba(48, 83, 244, 0.04);--mdc-theme-on-primary-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-primary-container-4: rgba(0, 17, 90, 0.04);--mdc-theme-inverse-primary-4: rgba(186, 195, 255, 0.04);--mdc-theme-secondary-4: rgba(0, 35, 60, 0.04);--mdc-theme-on-secondary-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-secondary-container-4: rgba(0, 29, 51, 0.04);--mdc-theme-inverse-secondary-4: rgba(188, 213, 246, 0.04);--mdc-theme-tertiary-4: rgba(255, 95, 2, 0.04);--mdc-theme-on-tertiary-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-tertiary-container-4: rgba(72, 19, 0, 0.04);--mdc-theme-inverse-tertiary-4: rgba(255, 95, 2, 0.04);--mdc-theme-negative-4: rgba(174, 18, 9, 0.04);--mdc-theme-on-negative-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-negative-container-4: rgba(17, 2, 1, 0.04);--mdc-theme-positive-4: rgba(3, 102, 0, 0.04);--mdc-theme-on-positive-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-positive-container-4: rgba(0, 10, 0, 0.04);--mdc-theme-caution-4: rgba(243, 136, 0, 0.04);--mdc-theme-on-caution-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-caution-container-4: rgba(24, 14, 0, 0.04);--mdc-theme-emphasis-4: rgba(177, 1, 66, 0.04);--mdc-theme-on-emphasis-4: rgba(255, 255, 255, 0.04);--mdc-theme-on-emphasis-container-4: rgba(18, 0, 7, 0.04);--mdc-theme-on-surface-20: rgba(0, 35, 60, 0.2);--mdc-theme-primary-20: rgba(48, 83, 244, 0.2);--mdc-theme-negative-20: rgba(174, 18, 9, 0.2);--mdc-theme-positive-20: rgba(3, 102, 0, 0.2);--mdc-theme-caution-20: rgba(243, 136, 0, 0.2);--mdc-theme-emphasis-20: rgba(177, 1, 66, 0.2);--mdc-theme-primary-24: rgba(48, 83, 244, 0.24);--mdc-theme-negative-24: rgba(174, 18, 9, 0.24);--mdc-theme-positive-24: rgba(3, 102, 0, 0.24);--mdc-theme-caution-24: rgba(243, 136, 0, 0.24);--mdc-theme-emphasis-24: rgba(177, 1, 66, 0.24);--mdc-theme-background: #f8f9fb;--mdc-theme-surface-variant-8: rgba(248, 249, 251, 0.08);--mdc-theme-surface-variant-12: rgba(248, 249, 251, 0.12);--mdc-theme-surface-variant-16: rgba(253, 249, 252, 0.16);--mdc-theme-logo: #ff5f02;--mdc-theme-on-surface-variant-38: rgba(89, 98, 123, 0.38);--mdc-theme-on-primary-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-secondary-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-secondary-container-38: rgba(0, 29, 51, 0.38);--mdc-theme-on-secondary-container-74: rgba(0, 29, 51, 0.74);--mdc-theme-on-tertiary-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-tertiary-container-38: rgba(72, 19, 0, 0.38);--mdc-theme-on-tertiary-container-74: rgba(72, 19, 0, 0.74);--mdc-theme-inverse-tertiary-38: rgba(255, 95, 2, 0.38);--mdc-theme-inverse-tertiary-74: rgba(255, 95, 2, 0.74);--mdc-theme-negative-38: rgba(174, 18, 9, 0.38);--mdc-theme-negative-74: rgba(174, 18, 9, 0.74);--mdc-theme-on-negative-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-negative-74: rgba(255, 255, 255, 0.74);--mdc-theme-on-negative-container-38: rgba(17, 2, 1, 0.38);--mdc-theme-on-negative-container-74: rgba(17, 2, 1, 0.74);--mdc-theme-positive-38: rgba(3, 102, 0, 0.38);--mdc-theme-positive-74: rgba(3, 102, 0, 0.74);--mdc-theme-on-positive-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-positive-74: rgba(255, 255, 255, 0.74);--mdc-theme-on-positive-container-38: rgba(0, 10, 0, 0.38);--mdc-theme-on-positive-container-74: rgba(0, 10, 0, 0.74);--mdc-theme-caution-38: rgba(243, 136, 0, 0.38);--mdc-theme-caution-74: rgba(243, 136, 0, 0.74);--mdc-theme-on-caution-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-caution-74: rgba(255, 255, 255, 0.74);--mdc-theme-on-caution-container-38: rgba(24, 14, 0, 0.38);--mdc-theme-on-caution-container-74: rgba(24, 14, 0, 0.74);--mdc-theme-emphasis-38: rgba(177, 1, 66, 0.38);--mdc-theme-emphasis-74: rgba(177, 1, 66, 0.74);--mdc-theme-on-emphasis-38: rgba(255, 255, 255, 0.38);--mdc-theme-on-emphasis-74: rgba(255, 255, 255, 0.74);--mdc-theme-on-emphasis-container-38: rgba(24, 14, 0, 0.38);--mdc-theme-on-emphasis-container-74: rgba(24, 14, 0, 0.74);--mdc-theme-on-primary-container-38: rgba(0, 17, 90, 0.38);--mdc-theme-on-primary-container-74: rgba(0, 17, 90, 0.74);--mdc-theme-primary-38: rgba(48, 83, 244, 0.38);--mdc-theme-primary-74: rgba(48, 83, 244, 0.74);--mdc-theme-brand: #ff5f02;--mdc-theme-code-snippet-color: #383a42;--mdc-theme-code-snippet-comment: #6c6c6c;--mdc-theme-code-snippet-keyword: #a626a4;--mdc-theme-code-snippet-selector: #ad0f00;--mdc-theme-code-snippet-literal: #17749b;--mdc-theme-code-snippet-string: #0a7c08;--mdc-theme-code-snippet-variable: #8e6102;--mdc-theme-code-snippet-title: #004ffd;--mdc-theme-code-snippet-class: #6a6c02;--mdc-theme-error: #ae1209;--mdc-theme-on-background: #00233c;--mdc-theme-on-error: #ffffff;--mdc-theme-divider: #d1d5e7;--mdc-theme-accent: #3053f4;--mdc-theme-surface-canvas: #ffffff;--mdc-theme-surface-primary: #ececfe;--mdc-theme-surface-primary-highlight: rgba(48, 83, 244, 0.08);--mdc-theme-surface-primary-highlight-hover: rgba(48, 83, 244, 0.08);--mdc-theme-surface-accent: #ececfe;--mdc-theme-surface-accent-highlight: rgba(48, 83, 244, 0.08);--mdc-theme-surface-accent-highlight-hover: rgba(48, 83, 244, 0.12);--mdc-theme-surface-secondary: #deeafa;--mdc-theme-surface-secondary-highlight: rgba(0, 35, 60, 0.08);--mdc-theme-surface-secondary-highlight-hover: rgba(0, 35, 60, 0.08);--mdc-theme-surface-positive: #8fcc8e;--mdc-theme-surface-positive-highlight: rgba(3, 102, 0, 0.08);--mdc-theme-surface-positive-highlight-hover: rgba(3, 102, 0, 0.08);--mdc-theme-surface-caution: #ffcc8c;--mdc-theme-surface-caution-highlight: rgba(243, 136, 0, 0.08);--mdc-theme-surface-caution-highlight-hover: rgba(243, 136, 0, 0.08);--mdc-theme-surface-negative: #ffb2ae;--mdc-theme-surface-negative-highlight: rgba(174, 18, 9, 0.08);--mdc-theme-surface-negative-highlight-hover: rgba(174, 18, 9, 0.08);--mdc-theme-surface-neutral: #f3f5f9;--mdc-theme-surface-neutral-highlight: rgba(243, 245, 249, 0.04);--mdc-theme-surface-neutral-highlight-hover: rgba(243, 245, 249, 0.08);--mdc-theme-surface-emphasis: #e8b3c6;--mdc-theme-surface-emphasis-highlight: rgba(177, 1, 66, 0.08);--mdc-theme-surface-emphasis-highlight-hover: rgba(177, 1, 66, 0.08);--mdc-theme-text-primary-on-background: #00233c;--mdc-theme-text-secondary-on-background: #59627b;--mdc-theme-text-hint-on-background: #59627b;--mdc-theme-text-disabled-on-background: rgba(0, 35, 60, 0.38);--mdc-theme-text-icon-on-background: #59627b;--mdc-theme-text-logo-on-background: #ff5f02;--mdc-theme-text-primary-on-light: #00233c;--mdc-theme-text-secondary-on-light: #59627b;--mdc-theme-text-hint-on-light: #59627b;--mdc-theme-text-disabled-on-light: rgba(0, 35, 60, 0.38);--mdc-theme-text-icon-on-light: #59627b;--mdc-theme-text-primary-on-dark: #ebe8ec;--mdc-theme-text-secondary-on-dark: #d5d3d8;--mdc-theme-text-hint-on-dark: #d5d3d8;--mdc-theme-text-disabled-on-dark: rgba(235, 232, 236, 0.38);--mdc-theme-text-icon-on-dark: #d5d3d8;--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: Arial, sans-serif;--mdc-typography-body1-font-size: 16px;--mdc-typography-body1-font-weight: 400;--mdc-typography-body1-line-height: 24px;--mdc-typography-body2-font-family: Arial, sans-serif;--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-caption-font-family: Arial, sans-serif;--mdc-typography-caption-font-size: 12px;--mdc-typography-caption-font-weight: 400;--mdc-typography-caption-line-height: 16px;--mdc-typography-code-font-family: Menlo;--mdc-typography-code-font-size: 12px;--mdc-typography-code-font-weight: 400;--mdc-typography-code-line-height: 20px;--mdc-theme-border: #d1d5e7;--mdc-theme-surface-accent: #ececfe;--mdc-theme-surface-accent-highlight: rgba(48, 83, 244, 0.08);--mdc-theme-surface-accent-highlight-hover: rgba(48, 83, 244, 0.08);--mdc-typography-button-letter-spacing: 0;--mdc-icon-font: "Material Symbols Outlined";--mdc-ripple-color: #00233c;--mdc-shape-small: 8px;--mdc-shape-medium: 8px;--mdc-plain-tooltip-container-color: #3e4557;--mdc-plain-tooltip-supporting-text-color: #f1f3f8;border-width:0;border-style:solid}:root .mdc-data-table__sort-icon-button{color:#59627b}: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:#59627b;background-color:var(--mdc-ripple-color, #59627b)}: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:#59627b}: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:#59627b;background-color:var(--mdc-ripple-color, #59627b)}: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(243, 245, 249, 0.04)}:root .mdc-data-table__row:not(.mdc-data-table__row--selected):hover{background-color:rgba(243, 245, 249, 0.08)}:root .mdc-data-table__header-cell{color:#00233c}:root .mdc-data-table__pagination-total,:root .mdc-data-table__pagination-rows-per-page-label,:root .mdc-data-table__cell{color:#00233c}: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:#d1d5e7}:root .mdc-data-table__cell,:root .mdc-data-table__header-cell{border-bottom-color:#d1d5e7}:root .mdc-data-table__pagination{border-top-color:#d1d5e7}: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 .mdc-data-table__header-row{height:calc(56px + var(--cv-density-mode, 0)*var(--cv-density-interval, 4px))}:root .mdc-data-table__row{height:calc(52px + var(--cv-density-mode, 0)*var(--cv-density-interval, 4px))}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { TopAppBarBase } from '@material/mwc-top-app-bar/mwc-top-app-bar-base';
|
2
|
+
declare global {
|
3
|
+
interface HTMLElementTagNameMap {
|
4
|
+
'cv-toolbar': CovalentToolbar;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
export declare class CovalentToolbar extends TopAppBarBase {
|
8
|
+
static styles: import("lit").CSSResult[];
|
9
|
+
/**
|
10
|
+
* position sticky when scrolled
|
11
|
+
*/
|
12
|
+
sticky: boolean;
|
13
|
+
}
|
14
|
+
export default CovalentToolbar;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { LitElement, PropertyValues } from 'lit';
|
2
|
+
import { MDCTooltipAdapter } from '@material/tooltip';
|
3
|
+
import { MDCTooltipFoundation } from '@material/tooltip/foundation';
|
4
|
+
declare global {
|
5
|
+
interface HTMLElementTagNameMap {
|
6
|
+
'cv-tooltip': CovalentTooltip;
|
7
|
+
}
|
8
|
+
}
|
9
|
+
export declare class CovalentTooltip extends LitElement {
|
10
|
+
protected mdcFoundation: MDCTooltipFoundation;
|
11
|
+
protected readonly mdcFoundationClass: typeof MDCTooltipFoundation;
|
12
|
+
static styles: import("lit").CSSResult[];
|
13
|
+
protected mdcRoot: HTMLElement;
|
14
|
+
protected mdcSurface: HTMLElement;
|
15
|
+
anchor?: HTMLElement;
|
16
|
+
richTitle?: string;
|
17
|
+
rich?: boolean;
|
18
|
+
persistent?: HTMLElement;
|
19
|
+
showDelay?: number;
|
20
|
+
hideDelay?: number;
|
21
|
+
protected createAdapter(): MDCTooltipAdapter;
|
22
|
+
protected updated(changedProps: PropertyValues): void;
|
23
|
+
protected firstUpdated(): Promise<void>;
|
24
|
+
disconnectedCallback(): void;
|
25
|
+
render(): import("lit-html").TemplateResult<1>;
|
26
|
+
}
|
27
|
+
export default CovalentTooltip;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { TopAppBarFixedBase } from '@material/mwc-top-app-bar-fixed/mwc-top-app-bar-fixed-base';
|
2
|
+
declare global {
|
3
|
+
interface HTMLElementTagNameMap {
|
4
|
+
'cv-top-app-bar-fixed': CovalentTopAppBarFixed;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
export declare class CovalentTopAppBarFixed extends TopAppBarFixedBase {
|
8
|
+
static styles: import("lit").CSSResult[];
|
9
|
+
}
|
10
|
+
export default CovalentTopAppBarFixed;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { TopAppBarBase } from '@material/mwc-top-app-bar/mwc-top-app-bar-base';
|
2
|
+
declare global {
|
3
|
+
interface HTMLElementTagNameMap {
|
4
|
+
'cv-top-app-bar': CovalentTopAppBar;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
export declare class CovalentTopAppBar extends TopAppBarBase {
|
8
|
+
static styles: import("lit").CSSResult[];
|
9
|
+
}
|
10
|
+
export default CovalentTopAppBar;
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { LitElement } from 'lit';
|
2
|
+
import '../icon/icon';
|
3
|
+
declare global {
|
4
|
+
interface HTMLElementTagNameMap {
|
5
|
+
'cv-tree-list-item': CovalentTreeListItem;
|
6
|
+
}
|
7
|
+
}
|
8
|
+
export declare class CovalentTreeListItem extends LitElement {
|
9
|
+
static styles: import("lit").CSSResult[];
|
10
|
+
isOpen: boolean;
|
11
|
+
icon: string;
|
12
|
+
indentLevel: number;
|
13
|
+
indentMultiple: number;
|
14
|
+
render(): import("lit-html").TemplateResult<1>;
|
15
|
+
private _handleClick;
|
16
|
+
}
|
17
|
+
export default CovalentTreeListItem;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { LitElement } from 'lit';
|
2
|
+
declare global {
|
3
|
+
interface HTMLElementTagNameMap {
|
4
|
+
'cv-tree-list': CovalentTreeList;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
export declare class CovalentTreeList extends LitElement {
|
8
|
+
static styles: import("lit").CSSResult[];
|
9
|
+
render(): import("lit-html").TemplateResult<1>;
|
10
|
+
}
|
11
|
+
export default CovalentTreeList;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { LitElement } from 'lit';
|
2
|
+
declare global {
|
3
|
+
interface HTMLElementTagNameMap {
|
4
|
+
'cv-typography': CovalentTypography;
|
5
|
+
}
|
6
|
+
}
|
7
|
+
export declare class CovalentTypography extends LitElement {
|
8
|
+
static styles: import("lit").CSSResult[];
|
9
|
+
scale: string;
|
10
|
+
render(): import("lit-html").TemplateResult<1>;
|
11
|
+
}
|
12
|
+
export default CovalentTypography;
|