@vscode/component-explorer 0.1.1-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Explorer.d.ts +6 -0
- package/dist/components/Explorer.d.ts.map +1 -0
- package/dist/components/ExplorerModel.d.ts +50 -0
- package/dist/components/ExplorerModel.d.ts.map +1 -0
- package/dist/components/FixturePreviewItem.d.ts +8 -0
- package/dist/components/FixturePreviewItem.d.ts.map +1 -0
- package/dist/components/LeftSidebar.d.ts +5 -0
- package/dist/components/LeftSidebar.d.ts.map +1 -0
- package/dist/components/PreviewArea.d.ts +6 -0
- package/dist/components/PreviewArea.d.ts.map +1 -0
- package/dist/components/RightSidebar.d.ts +6 -0
- package/dist/components/RightSidebar.d.ts.map +1 -0
- package/dist/components/TitleBar.d.ts +5 -0
- package/dist/components/TitleBar.d.ts.map +1 -0
- package/dist/components/TitleBarButton.d.ts +9 -0
- package/dist/components/TitleBarButton.d.ts.map +1 -0
- package/dist/components/TreeView.d.ts +14 -0
- package/dist/components/TreeView.d.ts.map +1 -0
- package/dist/components/icons.d.ts +18 -0
- package/dist/components/icons.d.ts.map +1 -0
- package/dist/components/index.d.ts +15 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/styles.d.ts +192 -0
- package/dist/components/styles.d.ts.map +1 -0
- package/dist/components/types.d.ts +18 -0
- package/dist/components/types.d.ts.map +1 -0
- package/dist/core/ComponentDefinition.d.ts +70 -0
- package/dist/core/ComponentDefinition.d.ts.map +1 -0
- package/dist/core/DisplayMode.d.ts +65 -0
- package/dist/core/DisplayMode.d.ts.map +1 -0
- package/dist/core/FixtureNode.d.ts +31 -0
- package/dist/core/FixtureNode.d.ts.map +1 -0
- package/dist/core/FixtureRegistry.d.ts +37 -0
- package/dist/core/FixtureRegistry.d.ts.map +1 -0
- package/dist/core/PropertySchema.d.ts +40 -0
- package/dist/core/PropertySchema.d.ts.map +1 -0
- package/dist/core/defineFixture.d.ts +109 -0
- package/dist/core/defineFixture.d.ts.map +1 -0
- package/dist/core/index.d.ts +12 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1386 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/fixtureSizeCache.d.ts +12 -0
- package/dist/lib/fixtureSizeCache.d.ts.map +1 -0
- package/dist/lib/localStorageObservable.d.ts +16 -0
- package/dist/lib/localStorageObservable.d.ts.map +1 -0
- package/dist/lib/utils.d.ts +6 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/package.json +59 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FixtureRegistry.d.ts","sourceRoot":"","sources":["../../src/core/FixtureRegistry.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,KAAK,WAAW,EAAE,KAAK,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAC/F,OAAO,KAAK,EAAE,mBAAmB,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACnF,OAAO,EAAqC,KAAK,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEvF;;;GAGG;AACH,qBAAa,eAAe;IAC1B,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAgE;IAE1F,0CAA0C;IAC1C,QAAQ,CAAC,IAAI,EAAE,WAAW,CAAC,WAAW,CAAC,CAGpC;IAEH;;;;OAIG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,aAAa,EAAE,aAAa,GAAG,IAAI;IAM1D;;;OAGG;IACH,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAO9B;;OAEG;IACH,KAAK,IAAI,IAAI;IAIb;;OAEG;IACH,OAAO,CAAC,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,WAAW,GAAG,SAAS;IAKjE;;;OAGG;IACH,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,mBAAmB,GAAG,SAAS;CAMpE"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Schema for a component property.
|
|
3
|
+
* Defines the type, name, and default value of a configurable property.
|
|
4
|
+
*/
|
|
5
|
+
export type PropertySchema = BooleanProperty | StringProperty | NumberProperty | EnumProperty;
|
|
6
|
+
export interface BooleanProperty {
|
|
7
|
+
readonly type: 'boolean';
|
|
8
|
+
readonly name: string;
|
|
9
|
+
readonly defaultValue: boolean;
|
|
10
|
+
readonly description?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface StringProperty {
|
|
13
|
+
readonly type: 'string';
|
|
14
|
+
readonly name: string;
|
|
15
|
+
readonly defaultValue: string;
|
|
16
|
+
readonly description?: string;
|
|
17
|
+
/** If true, render as multiline textarea */
|
|
18
|
+
readonly multiline?: boolean;
|
|
19
|
+
}
|
|
20
|
+
export interface NumberProperty {
|
|
21
|
+
readonly type: 'number';
|
|
22
|
+
readonly name: string;
|
|
23
|
+
readonly defaultValue: number;
|
|
24
|
+
readonly description?: string;
|
|
25
|
+
readonly min?: number;
|
|
26
|
+
readonly max?: number;
|
|
27
|
+
readonly step?: number;
|
|
28
|
+
}
|
|
29
|
+
export interface EnumProperty {
|
|
30
|
+
readonly type: 'enum';
|
|
31
|
+
readonly name: string;
|
|
32
|
+
readonly defaultValue: string;
|
|
33
|
+
readonly description?: string;
|
|
34
|
+
readonly options: readonly string[];
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Gets the default values for a list of property schemas.
|
|
38
|
+
*/
|
|
39
|
+
export declare function getDefaultPropertyValues(properties: readonly PropertySchema[]): Record<string, unknown>;
|
|
40
|
+
//# sourceMappingURL=PropertySchema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PropertySchema.d.ts","sourceRoot":"","sources":["../../src/core/PropertySchema.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,MAAM,cAAc,GACtB,eAAe,GACf,cAAc,GACd,cAAc,GACd,YAAY,CAAC;AAEjB,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,IAAI,EAAE,SAAS,CAAC;IACzB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,YAAY,EAAE,OAAO,CAAC;IAC/B,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;CAC/B;AAED,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IACxB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B,4CAA4C;IAC5C,QAAQ,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IACxB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,YAAY;IAC3B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,OAAO,EAAE,SAAS,MAAM,EAAE,CAAC;CACrC;AAED;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,UAAU,EAAE,SAAS,cAAc,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAMvG"}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { FixtureExport, SingleFixtureExport, FixtureGroupExport, FixtureVariantsExport } from './ComponentDefinition.js';
|
|
2
|
+
import { DisplayMode, Disposable, StyleDefinition } from './DisplayMode.js';
|
|
3
|
+
import { PropertySchema } from './PropertySchema.js';
|
|
4
|
+
/**
|
|
5
|
+
* Options for defining a single component fixture.
|
|
6
|
+
*/
|
|
7
|
+
export interface DefineFixtureOptions {
|
|
8
|
+
/** Optional description for documentation */
|
|
9
|
+
description?: string;
|
|
10
|
+
/** How to isolate: 'iframe' for full isolation, 'shadow-dom' (default) for lighter isolation */
|
|
11
|
+
isolation?: 'iframe' | 'shadow-dom';
|
|
12
|
+
/** Display mode: defaults to { type: 'component' } */
|
|
13
|
+
displayMode?: DisplayMode;
|
|
14
|
+
/** Styles to inject (for shadow-dom isolation) */
|
|
15
|
+
styles?: StyleDefinition[];
|
|
16
|
+
/** Background pattern for the preview canvas: 'light' (default) or 'dark' for dark transparent pattern */
|
|
17
|
+
background?: 'light' | 'dark';
|
|
18
|
+
/** Property definitions */
|
|
19
|
+
properties?: PropertySchema[];
|
|
20
|
+
/** Render function */
|
|
21
|
+
render: (container: HTMLElement, props: Record<string, unknown>) => Disposable;
|
|
22
|
+
}
|
|
23
|
+
/** @deprecated Use DefineFixtureOptions instead */
|
|
24
|
+
export type DefineComponentOptions = DefineFixtureOptions;
|
|
25
|
+
/** Brand symbol to identify single fixtures */
|
|
26
|
+
export declare const singleFixtureBrand: unique symbol;
|
|
27
|
+
/** Brand symbol to identify fixture groups */
|
|
28
|
+
export declare const fixtureGroupBrand: unique symbol;
|
|
29
|
+
/** Brand symbol to identify fixture variants */
|
|
30
|
+
export declare const fixtureVariantsBrand: unique symbol;
|
|
31
|
+
/**
|
|
32
|
+
* Type guard for SingleFixtureExport.
|
|
33
|
+
*/
|
|
34
|
+
export declare function isSingleFixture(value: FixtureExport): value is SingleFixtureExport;
|
|
35
|
+
/**
|
|
36
|
+
* Type guard for FixtureGroupExport.
|
|
37
|
+
*/
|
|
38
|
+
export declare function isFixtureGroup(value: FixtureExport): value is FixtureGroupExport;
|
|
39
|
+
/**
|
|
40
|
+
* Type guard for FixtureVariantsExport.
|
|
41
|
+
*/
|
|
42
|
+
export declare function isFixtureVariants(value: FixtureExport): value is FixtureVariantsExport;
|
|
43
|
+
/**
|
|
44
|
+
* Defines a single fixture.
|
|
45
|
+
*
|
|
46
|
+
* @example
|
|
47
|
+
* ```ts
|
|
48
|
+
* export default defineFixture({
|
|
49
|
+
* properties: [
|
|
50
|
+
* { type: 'string', name: 'label', defaultValue: 'Click me' },
|
|
51
|
+
* ],
|
|
52
|
+
* render: (container, props) => {
|
|
53
|
+
* container.innerHTML = `<button>${props.label}</button>`;
|
|
54
|
+
* return { dispose: () => { container.innerHTML = ''; } };
|
|
55
|
+
* },
|
|
56
|
+
* });
|
|
57
|
+
* ```
|
|
58
|
+
*/
|
|
59
|
+
export declare function defineFixture(options: DefineFixtureOptions): SingleFixtureExport;
|
|
60
|
+
/**
|
|
61
|
+
* Group entry: either a single fixture, a nested group, or variants.
|
|
62
|
+
*/
|
|
63
|
+
export type FixtureGroupEntry = SingleFixtureExport | FixtureGroupExport | FixtureVariantsExport;
|
|
64
|
+
/**
|
|
65
|
+
* Input for defineFixtureGroup.
|
|
66
|
+
*/
|
|
67
|
+
export type FixtureGroupInput = {
|
|
68
|
+
[key: string]: FixtureGroupEntry;
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* Input for defineFixtureVariants (only single fixtures, no nesting).
|
|
72
|
+
*/
|
|
73
|
+
export type FixtureVariantsInput = {
|
|
74
|
+
[key: string]: SingleFixtureExport;
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* Defines a group of fixtures with support for nesting.
|
|
78
|
+
*
|
|
79
|
+
* @example
|
|
80
|
+
* ```ts
|
|
81
|
+
* export default defineFixtureGroup({
|
|
82
|
+
* Primary: defineFixture({
|
|
83
|
+
* render: (container) => { ... },
|
|
84
|
+
* }),
|
|
85
|
+
* Variants: defineFixtureGroup({
|
|
86
|
+
* Small: defineFixture({ ... }),
|
|
87
|
+
* Large: defineFixture({ ... }),
|
|
88
|
+
* }),
|
|
89
|
+
* });
|
|
90
|
+
* ```
|
|
91
|
+
*/
|
|
92
|
+
export declare function defineFixtureGroup(group: FixtureGroupInput): FixtureGroupExport;
|
|
93
|
+
/**
|
|
94
|
+
* Defines a group of fixture variants (no nesting allowed).
|
|
95
|
+
* Variants are rendered horizontally by default and have a distinct icon in the tree.
|
|
96
|
+
*
|
|
97
|
+
* @example
|
|
98
|
+
* ```ts
|
|
99
|
+
* export default defineFixtureGroup({
|
|
100
|
+
* Button: defineFixtureVariants({
|
|
101
|
+
* Small: defineFixture({ ... }),
|
|
102
|
+
* Medium: defineFixture({ ... }),
|
|
103
|
+
* Large: defineFixture({ ... }),
|
|
104
|
+
* }),
|
|
105
|
+
* });
|
|
106
|
+
* ```
|
|
107
|
+
*/
|
|
108
|
+
export declare function defineFixtureVariants(variants: FixtureVariantsInput): FixtureVariantsExport;
|
|
109
|
+
//# sourceMappingURL=defineFixture.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"defineFixture.d.ts","sourceRoot":"","sources":["../../src/core/defineFixture.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,qBAAqB,EAAuB,MAAM,0BAA0B,CAAC;AACnJ,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACjF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAE1D;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,6CAA6C;IAC7C,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,gGAAgG;IAChG,SAAS,CAAC,EAAE,QAAQ,GAAG,YAAY,CAAC;IAEpC,sDAAsD;IACtD,WAAW,CAAC,EAAE,WAAW,CAAC;IAE1B,kDAAkD;IAClD,MAAM,CAAC,EAAE,eAAe,EAAE,CAAC;IAE3B,0GAA0G;IAC1G,UAAU,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAE9B,2BAA2B;IAC3B,UAAU,CAAC,EAAE,cAAc,EAAE,CAAC;IAE9B,sBAAsB;IACtB,MAAM,EAAE,CAAC,SAAS,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,UAAU,CAAC;CAChF;AAED,mDAAmD;AACnD,MAAM,MAAM,sBAAsB,GAAG,oBAAoB,CAAC;AAE1D,+CAA+C;AAC/C,eAAO,MAAM,kBAAkB,eAA0B,CAAC;AAE1D,8CAA8C;AAC9C,eAAO,MAAM,iBAAiB,eAAyB,CAAC;AAExD,gDAAgD;AAChD,eAAO,MAAM,oBAAoB,eAA4B,CAAC;AAE9D;;GAEG;AACH,wBAAgB,eAAe,CAAC,KAAK,EAAE,aAAa,GAAG,KAAK,IAAI,mBAAmB,CAElF;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,aAAa,GAAG,KAAK,IAAI,kBAAkB,CAEhF;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,aAAa,GAAG,KAAK,IAAI,qBAAqB,CAEtF;AAuBD;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,aAAa,CAAC,OAAO,EAAE,oBAAoB,GAAG,mBAAmB,CAMhF;AAED;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,mBAAmB,GAAG,kBAAkB,GAAG,qBAAqB,CAAC;AAEjG;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,iBAAiB,CAAA;CAAE,CAAC;AAErE;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,mBAAmB,CAAA;CAAE,CAAC;AAE1E;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,iBAAiB,GAAG,kBAAkB,CAK/E;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,qBAAqB,CAAC,QAAQ,EAAE,oBAAoB,GAAG,qBAAqB,CAK3F"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type { Disposable, StyleDefinition, DisplayMode, PageMode, ComponentMode, ViewportPreset, ViewportPresetName, } from './DisplayMode.js';
|
|
2
|
+
export type { PropertySchema, BooleanProperty, StringProperty, NumberProperty, EnumProperty, } from './PropertySchema.js';
|
|
3
|
+
export type { ComponentDefinition, FixtureExport, SingleFixtureExport, FixtureGroupExport, FixtureVariantsExport, } from './ComponentDefinition.js';
|
|
4
|
+
export type { FixtureNode, } from './FixtureNode.js';
|
|
5
|
+
export type { DefineFixtureOptions, DefineComponentOptions, FixtureGroupEntry, FixtureGroupInput, FixtureVariantsInput, } from './defineFixture.js';
|
|
6
|
+
export { VIEWPORT_SIZES, resolveViewport } from './DisplayMode.js';
|
|
7
|
+
export { getDefaultPropertyValues } from './PropertySchema.js';
|
|
8
|
+
export { isComponentDefinition } from './ComponentDefinition.js';
|
|
9
|
+
export { createFixtureTree, findNodeByPath, collectComponents } from './FixtureNode.js';
|
|
10
|
+
export { defineFixture, defineFixtureGroup, defineFixtureVariants, isSingleFixture, isFixtureGroup, isFixtureVariants } from './defineFixture.js';
|
|
11
|
+
export { FixtureRegistry } from './FixtureRegistry.js';
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":"AACA,YAAY,EACV,UAAU,EACV,eAAe,EACf,WAAW,EACX,QAAQ,EACR,aAAa,EACb,cAAc,EACd,kBAAkB,GACnB,MAAM,kBAAkB,CAAC;AAE1B,YAAY,EACV,cAAc,EACd,eAAe,EACf,cAAc,EACd,cAAc,EACd,YAAY,GACb,MAAM,qBAAqB,CAAC;AAE7B,YAAY,EACV,mBAAmB,EACnB,aAAa,EACb,mBAAmB,EACnB,kBAAkB,EAClB,qBAAqB,GACtB,MAAM,0BAA0B,CAAC;AAElC,YAAY,EACV,WAAW,GACZ,MAAM,kBAAkB,CAAC;AAE1B,YAAY,EACV,oBAAoB,EACpB,sBAAsB,EACtB,iBAAiB,EACjB,iBAAiB,EACjB,oBAAoB,GACrB,MAAM,oBAAoB,CAAC;AAG5B,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnE,OAAO,EAAE,wBAAwB,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACxF,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,eAAe,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAGlJ,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC"}
|
package/dist/index.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-amber-400:oklch(82.8% .189 84.429);--color-amber-500:oklch(76.9% .188 70.08);--color-blue-400:oklch(70.7% .165 254.624);--spacing:.25rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height: 1.5 ;--font-weight-medium:500;--font-weight-semibold:600;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*{border-color:var(--vscode-panel-border)}body{background-color:var(--vscode-editor-background);color:var(--vscode-foreground);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:var(--vscode-font-family);font-size:var(--vscode-font-size)}::-webkit-scrollbar{width:10px;height:10px}::-webkit-scrollbar-track{background:0 0}::-webkit-scrollbar-thumb{background:var(--vscode-scrollbarSlider-background);border-radius:0}::-webkit-scrollbar-thumb:hover{background:var(--vscode-scrollbarSlider-hoverBackground)}}@layer components;@layer utilities{.visible{visibility:visible}.absolute{position:absolute}.relative{position:relative}.top-1\/2{top:50%}.right-2{right:calc(var(--spacing)*2)}.left-2\.5{left:calc(var(--spacing)*2.5)}.isolate{isolation:isolate}.z-50{z-index:50}.container{width:100%}@media(min-width:40rem){.container{max-width:40rem}}@media(min-width:48rem){.container{max-width:48rem}}@media(min-width:64rem){.container{max-width:64rem}}@media(min-width:80rem){.container{max-width:80rem}}@media(min-width:96rem){.container{max-width:96rem}}.-mx-1{margin-inline:calc(var(--spacing)*-1)}.my-1{margin-block:calc(var(--spacing)*1)}.mt-1{margin-top:calc(var(--spacing)*1)}.ml-3\.5{margin-left:calc(var(--spacing)*3.5)}.flex{display:flex}.hidden{display:none}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.h-2\.5{height:calc(var(--spacing)*2.5)}.h-3{height:calc(var(--spacing)*3)}.h-3\.5{height:calc(var(--spacing)*3.5)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-12{height:calc(var(--spacing)*12)}.h-\[var\(--radix-select-trigger-height\)\]{height:var(--radix-select-trigger-height)}.h-full{height:100%}.h-px{height:1px}.h-screen{height:100vh}.max-h-48{max-height:calc(var(--spacing)*48)}.max-h-96{max-height:calc(var(--spacing)*96)}.min-h-\[60px\]{min-height:60px}.w-2\.5{width:calc(var(--spacing)*2.5)}.w-3{width:calc(var(--spacing)*3)}.w-3\.5{width:calc(var(--spacing)*3.5)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-9{width:calc(var(--spacing)*9)}.w-64{width:calc(var(--spacing)*64)}.w-80{width:calc(var(--spacing)*80)}.w-full{width:100%}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\[8rem\]{min-width:8rem}.min-w-\[var\(--radix-select-trigger-width\)\]{min-width:var(--radix-select-trigger-width)}.flex-1{flex:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-90{rotate:90deg}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.touch-none{touch-action:none}.resize{resize:both}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-1\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1.5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1.5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-x-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*2)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-x-reverse)))}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-hidden{overflow:hidden}.rounded{border-radius:.25rem}.rounded-\[inherit\]{border-radius:inherit}.rounded-full{border-radius:3.40282e38px}.rounded-md{border-radius:4px}.rounded-sm{border-radius:2px}.border{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-amber-500\/30{border-color:#f99c004d}@supports (color:color-mix(in lab,red,red)){.border-amber-500\/30{border-color:color-mix(in oklab,var(--color-amber-500)30%,transparent)}}.border-border{border-color:var(--vscode-panel-border)}.border-destructive{border-color:var(--vscode-editorError-foreground)}.border-input{border-color:var(--vscode-input-background)}.border-primary{border-color:var(--vscode-focusBorder)}.border-transparent{border-color:#0000}.border-t-transparent{border-top-color:#0000}.border-l-transparent{border-left-color:#0000}.bg-amber-500\/10{background-color:#f99c001a}@supports (color:color-mix(in lab,red,red)){.bg-amber-500\/10{background-color:color-mix(in oklab,var(--color-amber-500)10%,transparent)}}.bg-amber-500\/15{background-color:#f99c0026}@supports (color:color-mix(in lab,red,red)){.bg-amber-500\/15{background-color:color-mix(in oklab,var(--color-amber-500)15%,transparent)}}.bg-background{background-color:var(--vscode-editor-background)}.bg-border{background-color:var(--vscode-panel-border)}.bg-card{background-color:var(--vscode-editorWidget-background)}.bg-destructive,.bg-destructive\/10{background-color:var(--vscode-editorError-foreground)}@supports (color:color-mix(in lab,red,red)){.bg-destructive\/10{background-color:color-mix(in oklab,var(--vscode-editorError-foreground)10%,transparent)}}.bg-muted{background-color:var(--vscode-input-background)}.bg-popover{background-color:var(--vscode-editorWidget-background)}.bg-primary,.bg-primary\/15{background-color:var(--vscode-focusBorder)}@supports (color:color-mix(in lab,red,red)){.bg-primary\/15{background-color:color-mix(in oklab,var(--vscode-focusBorder)15%,transparent)}}.bg-secondary{background-color:var(--vscode-button-secondaryBackground)}.bg-sidebar{background-color:var(--vscode-sideBar-background)}.bg-transparent{background-color:#0000}.p-1{padding:calc(var(--spacing)*1)}.p-2{padding:calc(var(--spacing)*2)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.p-\[1px\]{padding:1px}.px-1\.5{padding-inline:calc(var(--spacing)*1.5)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-2\.5{padding-inline:calc(var(--spacing)*2.5)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-8{padding-inline:calc(var(--spacing)*8)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.pr-8{padding-right:calc(var(--spacing)*8)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.pb-3{padding-bottom:calc(var(--spacing)*3)}.pl-2{padding-left:calc(var(--spacing)*2)}.pl-8{padding-left:calc(var(--spacing)*8)}.font-mono{font-family:var(--font-mono)}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[10px\]{font-size:10px}.leading-none{--tw-leading:1;line-height:1}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.break-all{word-break:break-all}.whitespace-nowrap{white-space:nowrap}.text-amber-400{color:var(--color-amber-400)}.text-amber-500{color:var(--color-amber-500)}.text-blue-400{color:var(--color-blue-400)}.text-current{color:currentColor}.text-destructive{color:var(--vscode-editorError-foreground)}.text-foreground{color:var(--vscode-foreground)}.text-muted-foreground{color:var(--vscode-descriptionForeground)}.text-popover-foreground{color:var(--vscode-editorWidget-foreground)}.text-primary{color:var(--vscode-focusBorder)}.text-primary-foreground{color:var(--vscode-button-foreground)}.text-secondary-foreground{color:var(--vscode-button-secondaryForeground)}.uppercase{text-transform:uppercase}.underline-offset-4{text-underline-offset:4px}.opacity-50{opacity:.5}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-offset-background{--tw-ring-offset-color:var(--vscode-editor-background)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled~*){cursor:not-allowed}.peer-disabled\:opacity-70:is(:where(.peer):disabled~*){opacity:.7}.file\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\:bg-transparent::file-selector-button{background-color:#0000}.file\:text-sm::file-selector-button{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.file\:text-foreground::file-selector-button{color:var(--vscode-foreground)}.placeholder\:text-muted-foreground::placeholder{color:var(--vscode-descriptionForeground)}@media(hover:hover){.hover\:bg-accent:hover{background-color:var(--vscode-list-hoverBackground)}.hover\:bg-destructive\/80:hover{background-color:var(--vscode-editorError-foreground)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-destructive\/80:hover{background-color:color-mix(in oklab,var(--vscode-editorError-foreground)80%,transparent)}}.hover\:bg-destructive\/90:hover{background-color:var(--vscode-editorError-foreground)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--vscode-editorError-foreground)90%,transparent)}}.hover\:bg-primary\/80:hover{background-color:var(--vscode-focusBorder)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-primary\/80:hover{background-color:color-mix(in oklab,var(--vscode-focusBorder)80%,transparent)}}.hover\:bg-primary\/90:hover{background-color:var(--vscode-focusBorder)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--vscode-focusBorder)90%,transparent)}}.hover\:bg-secondary\/80:hover{background-color:var(--vscode-button-secondaryBackground)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-secondary\/80:hover{background-color:color-mix(in oklab,var(--vscode-button-secondaryBackground)80%,transparent)}}.hover\:bg-sidebar-accent:hover{background-color:var(--vscode-list-hoverBackground)}.hover\:text-accent-foreground:hover{color:var(--vscode-foreground)}.hover\:underline:hover{text-decoration-line:underline}}.focus\:bg-accent:focus{background-color:var(--vscode-list-hoverBackground)}.focus\:text-accent-foreground:focus{color:var(--vscode-foreground)}.focus\:ring-1:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-ring:focus{--tw-ring-color:var(--vscode-focusBorder)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:ring-1:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-destructive:focus-visible{--tw-ring-color:var(--vscode-editorError-foreground)}.focus-visible\:ring-ring:focus-visible{--tw-ring-color:var(--vscode-focusBorder)}.focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom]{--tw-translate-y:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=left\]\:-translate-x-1[data-side=left]{--tw-translate-x:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=right\]\:translate-x-1[data-side=right]{--tw-translate-x:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=top\]\:-translate-y-1[data-side=top]{--tw-translate-y:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[state\=checked\]\:bg-primary[data-state=checked]{background-color:var(--vscode-focusBorder)}.data-\[state\=checked\]\:text-primary-foreground[data-state=checked]{color:var(--vscode-button-foreground)}@media(min-width:48rem){.md\:text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:size-4 svg{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&\>span\]\:line-clamp-1>span{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}.vscode-theme.default-dark-plus{scrollbar-color:var(--vscode-scrollbarSlider-background) var(--vscode-editor-background);font-family:var(--markdown-font-family, -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", system-ui, "Ubuntu", "Droid Sans", sans-serif);font-size:var(--markdown-font-size, 14px);line-height:var(--markdown-line-height, 22px);word-wrap:break-word;padding:0!important;--markdown-font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", system-ui, "Ubuntu", "Droid Sans", sans-serif;--markdown-font-size: 14px;--markdown-line-height: 1.6;--vscode-font-family: "Segoe WPC", "Segoe UI", sans-serif;--vscode-font-weight: normal;--vscode-font-size: 13px;--vscode-editor-font-family: "Cascadia Code", Consolas, "Courier New", monospace;--vscode-editor-font-weight: normal;--vscode-editor-font-size: 14px;--text-link-decoration: none;--vscode-foreground: #cccccc;--vscode-disabledForeground: rgba(204, 204, 204, .5);--vscode-errorForeground: #f48771;--vscode-descriptionForeground: rgba(204, 204, 204, .7);--vscode-icon-foreground: #c5c5c5;--vscode-focusBorder: #007fd4;--vscode-textLink-foreground: #3794ff;--vscode-textLink-activeForeground: #3794ff;--vscode-textSeparator-foreground: rgba(255, 255, 255, .18);--vscode-textPreformat-foreground: #d7ba7d;--vscode-textPreformat-background: rgba(255, 255, 255, .1);--vscode-textBlockQuote-background: #222222;--vscode-textBlockQuote-border: rgba(0, 122, 204, .5);--vscode-textCodeBlock-background: rgba(10, 10, 10, .4);--vscode-sash-hoverBorder: #007fd4;--vscode-badge-background: #4d4d4d;--vscode-badge-foreground: #ffffff;--vscode-activityWarningBadge-foreground: #ffffff;--vscode-activityWarningBadge-background: #b27c00;--vscode-activityErrorBadge-foreground: #000000;--vscode-activityErrorBadge-background: #f14c4c;--vscode-scrollbar-shadow: #000000;--vscode-scrollbarSlider-background: rgba(121, 121, 121, .4);--vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, .7);--vscode-scrollbarSlider-activeBackground: rgba(191, 191, 191, .4);--vscode-progressBar-background: #0e70c0;--vscode-chart-line: #236b8e;--vscode-chart-axis: rgba(191, 191, 191, .4);--vscode-chart-guide: rgba(191, 191, 191, .2);--vscode-editor-background: #1e1e1e;--vscode-editor-foreground: #d4d4d4;--vscode-editorStickyScroll-background: #1e1e1e;--vscode-editorStickyScrollGutter-background: #1e1e1e;--vscode-editorStickyScrollHover-background: #2a2d2e;--vscode-editorStickyScroll-shadow: #000000;--vscode-editorWidget-background: #252526;--vscode-editorWidget-foreground: #cccccc;--vscode-editorWidget-border: #454545;--vscode-editorError-foreground: #f14c4c;--vscode-editorWarning-foreground: #cca700;--vscode-editorInfo-foreground: #59a4f9;--vscode-editorHint-foreground: rgba(238, 238, 238, .7);--vscode-editorLink-activeForeground: #4e94ce;--vscode-editor-selectionBackground: #264f78;--vscode-editor-inactiveSelectionBackground: #3a3d41;--vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, .15);--vscode-editor-compositionBorder: #ffffff;--vscode-editor-findMatchBackground: #515c6a;--vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, .33);--vscode-editor-findRangeHighlightBackground: rgba(58, 61, 65, .4);--vscode-editor-hoverHighlightBackground: rgba(38, 79, 120, .25);--vscode-editorHoverWidget-background: #252526;--vscode-editorHoverWidget-foreground: #cccccc;--vscode-editorHoverWidget-border: #454545;--vscode-editorHoverWidget-statusBarBackground: #2c2c2d;--vscode-editorInlayHint-foreground: #969696;--vscode-editorInlayHint-background: rgba(77, 77, 77, .1);--vscode-editorInlayHint-typeForeground: #969696;--vscode-editorInlayHint-typeBackground: rgba(77, 77, 77, .1);--vscode-editorInlayHint-parameterForeground: #969696;--vscode-editorInlayHint-parameterBackground: rgba(77, 77, 77, .1);--vscode-editorLightBulb-foreground: #ffcc00;--vscode-editorLightBulbAutoFix-foreground: #75beff;--vscode-editorLightBulbAi-foreground: #ffcc00;--vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, .3);--vscode-editor-snippetFinalTabstopHighlightBorder: #525252;--vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, .2);--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, .2);--vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, .2);--vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, .2);--vscode-diffEditor-diagonalFill: rgba(204, 204, 204, .2);--vscode-diffEditor-unchangedRegionBackground: #252526;--vscode-diffEditor-unchangedRegionForeground: #cccccc;--vscode-diffEditor-unchangedCodeBackground: rgba(116, 116, 116, .16);--vscode-widget-shadow: rgba(0, 0, 0, .36);--vscode-widget-border: #303031;--vscode-toolbar-hoverBackground: rgba(90, 93, 94, .31);--vscode-toolbar-activeBackground: rgba(99, 102, 103, .31);--vscode-breadcrumb-foreground: rgba(204, 204, 204, .8);--vscode-breadcrumb-background: #1e1e1e;--vscode-breadcrumb-focusForeground: #e0e0e0;--vscode-breadcrumb-activeSelectionForeground: #e0e0e0;--vscode-breadcrumbPicker-background: #252526;--vscode-merge-currentHeaderBackground: rgba(64, 200, 174, .5);--vscode-merge-currentContentBackground: rgba(64, 200, 174, .2);--vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, .5);--vscode-merge-incomingContentBackground: rgba(64, 166, 255, .2);--vscode-merge-commonHeaderBackground: rgba(96, 96, 96, .4);--vscode-merge-commonContentBackground: rgba(96, 96, 96, .16);--vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, .5);--vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, .5);--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, .4);--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, .49);--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, .8);--vscode-problemsErrorIcon-foreground: #f14c4c;--vscode-problemsWarningIcon-foreground: #cca700;--vscode-problemsInfoIcon-foreground: #59a4f9;--vscode-minimap-findMatchHighlight: rgba(234, 92, 0, .33);--vscode-minimap-selectionOccurrenceHighlight: rgba(173, 214, 255, .15);--vscode-minimap-selectionHighlight: #264f78;--vscode-minimap-infoHighlight: #59a4f9;--vscode-minimap-warningHighlight: #cca700;--vscode-minimap-errorHighlight: rgba(255, 18, 18, .7);--vscode-minimap-foregroundOpacity: #000000;--vscode-minimapSlider-background: rgba(121, 121, 121, .2);--vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, .35);--vscode-minimapSlider-activeBackground: rgba(191, 191, 191, .2);--vscode-charts-foreground: #cccccc;--vscode-charts-lines: rgba(204, 204, 204, .5);--vscode-charts-red: #f14c4c;--vscode-charts-blue: #59a4f9;--vscode-charts-yellow: #cca700;--vscode-charts-orange: rgba(234, 92, 0, .33);--vscode-charts-green: #89d185;--vscode-charts-purple: #b180d7;--vscode-input-background: #3c3c3c;--vscode-input-foreground: #cccccc;--vscode-inputOption-activeBorder: #007acc;--vscode-inputOption-hoverBackground: rgba(90, 93, 94, .5);--vscode-inputOption-activeBackground: rgba(0, 127, 212, .4);--vscode-inputOption-activeForeground: #ffffff;--vscode-input-placeholderForeground: #a6a6a6;--vscode-inputValidation-infoBackground: #063b49;--vscode-inputValidation-infoBorder: #007acc;--vscode-inputValidation-warningBackground: #352a05;--vscode-inputValidation-warningBorder: #b89500;--vscode-inputValidation-errorBackground: #5a1d1d;--vscode-inputValidation-errorBorder: #be1100;--vscode-dropdown-background: #3c3c3c;--vscode-dropdown-foreground: #f0f0f0;--vscode-dropdown-border: #3c3c3c;--vscode-button-foreground: #ffffff;--vscode-button-separator: rgba(255, 255, 255, .4);--vscode-button-background: #0e639c;--vscode-button-hoverBackground: #1177bb;--vscode-button-secondaryForeground: #ffffff;--vscode-button-secondaryBackground: #3a3d41;--vscode-button-secondaryHoverBackground: #45494e;--vscode-radio-activeForeground: #ffffff;--vscode-radio-activeBackground: rgba(0, 127, 212, .4);--vscode-radio-activeBorder: #007acc;--vscode-radio-inactiveBorder: rgba(255, 255, 255, .2);--vscode-radio-inactiveHoverBackground: rgba(90, 93, 94, .5);--vscode-checkbox-background: #3c3c3c;--vscode-checkbox-selectBackground: #252526;--vscode-checkbox-foreground: #f0f0f0;--vscode-checkbox-border: #6b6b6b;--vscode-checkbox-selectBorder: #c5c5c5;--vscode-checkbox-disabled\.background: #777777;--vscode-checkbox-disabled\.foreground: #b4b4b4;--vscode-keybindingLabel-background: rgba(128, 128, 128, .17);--vscode-keybindingLabel-foreground: #cccccc;--vscode-keybindingLabel-border: rgba(51, 51, 51, .6);--vscode-keybindingLabel-bottomBorder: rgba(68, 68, 68, .6);--vscode-list-focusOutline: #007fd4;--vscode-list-activeSelectionBackground: #04395e;--vscode-list-activeSelectionForeground: #ffffff;--vscode-list-activeSelectionIconForeground: #ffffff;--vscode-list-inactiveSelectionBackground: #37373d;--vscode-list-hoverBackground: #2a2d2e;--vscode-list-dropBackground: #383b3d;--vscode-list-dropBetweenBackground: #c5c5c5;--vscode-list-highlightForeground: #2aaaff;--vscode-list-focusHighlightForeground: #2aaaff;--vscode-list-invalidItemForeground: #b89500;--vscode-list-errorForeground: #f88070;--vscode-list-warningForeground: #cca700;--vscode-listFilterWidget-background: #252526;--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);--vscode-listFilterWidget-noMatchesOutline: #be1100;--vscode-listFilterWidget-shadow: rgba(0, 0, 0, .36);--vscode-list-filterMatchBackground: rgba(234, 92, 0, .33);--vscode-list-deemphasizedForeground: #8c8c8c;--vscode-tree-indentGuidesStroke: #585858;--vscode-tree-inactiveIndentGuidesStroke: rgba(88, 88, 88, .4);--vscode-tree-tableColumnsBorder: rgba(204, 204, 204, .13);--vscode-tree-tableOddRowsBackground: rgba(204, 204, 204, .04);--vscode-editorActionList-background: #252526;--vscode-editorActionList-foreground: #cccccc;--vscode-editorActionList-focusForeground: #ffffff;--vscode-editorActionList-focusBackground: #04395e;--vscode-menu-border: #454545;--vscode-menu-foreground: #cccccc;--vscode-menu-background: #252526;--vscode-menu-selectionForeground: #ffffff;--vscode-menu-selectionBackground: #0078d4;--vscode-menu-separatorBackground: #454545;--vscode-quickInput-background: #252526;--vscode-quickInput-foreground: #cccccc;--vscode-quickInputTitle-background: rgba(255, 255, 255, .1);--vscode-pickerGroup-foreground: #3794ff;--vscode-pickerGroup-border: #3f3f46;--vscode-quickInputList-focusForeground: #ffffff;--vscode-quickInputList-focusIconForeground: #ffffff;--vscode-quickInputList-focusBackground: #04395e;--vscode-search-resultsInfoForeground: rgba(204, 204, 204, .65);--vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, .22);--vscode-editor-lineHighlightBorder: #282828;--vscode-editor-rangeHighlightBackground: rgba(255, 255, 255, .04);--vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, .33);--vscode-editorCursor-foreground: #aeafad;--vscode-editorMultiCursor-primary\.foreground: #aeafad;--vscode-editorMultiCursor-secondary\.foreground: #aeafad;--vscode-editorWhitespace-foreground: rgba(227, 228, 226, .16);--vscode-editorLineNumber-foreground: #858585;--vscode-editorIndentGuide-background: rgba(227, 228, 226, .16);--vscode-editorIndentGuide-activeBackground: rgba(227, 228, 226, .16);--vscode-editorIndentGuide-background1: #404040;--vscode-editorIndentGuide-background2: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-background3: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-background4: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-background5: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-background6: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-activeBackground1: #707070;--vscode-editorIndentGuide-activeBackground2: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-activeBackground3: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-activeBackground4: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-activeBackground5: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-activeBackground6: rgba(0, 0, 0, 0);--vscode-editorActiveLineNumber-foreground: #c6c6c6;--vscode-editorLineNumber-activeForeground: #c6c6c6;--vscode-editorRuler-foreground: #5a5a5a;--vscode-editorCodeLens-foreground: #999999;--vscode-editorBracketMatch-background: rgba(0, 100, 0, .1);--vscode-editorBracketMatch-border: #888888;--vscode-editorOverviewRuler-border: rgba(127, 127, 127, .3);--vscode-editorGutter-background: #1e1e1e;--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, .67);--vscode-editorGhostText-foreground: rgba(255, 255, 255, .34);--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, .6);--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, .7);--vscode-editorOverviewRuler-warningForeground: #cca700;--vscode-editorOverviewRuler-infoForeground: #59a4f9;--vscode-editorBracketHighlight-foreground1: #ffd700;--vscode-editorBracketHighlight-foreground2: #da70d6;--vscode-editorBracketHighlight-foreground3: #179fff;--vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);--vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);--vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);--vscode-editorBracketHighlight-unexpectedBracket\.foreground: rgba(255, 18, 18, .8);--vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);--vscode-editorUnicodeHighlight-border: #cca700;--vscode-diffEditor-move\.border: rgba(139, 139, 139, .61);--vscode-diffEditor-moveActive\.border: #ffa500;--vscode-diffEditor-unchangedRegionShadow: #000000;--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;--vscode-actionBar-toggledBackground: #383a49;--vscode-symbolIcon-arrayForeground: #cccccc;--vscode-symbolIcon-booleanForeground: #cccccc;--vscode-symbolIcon-classForeground: #ee9d28;--vscode-symbolIcon-colorForeground: #cccccc;--vscode-symbolIcon-constantForeground: #cccccc;--vscode-symbolIcon-constructorForeground: #b180d7;--vscode-symbolIcon-enumeratorForeground: #ee9d28;--vscode-symbolIcon-enumeratorMemberForeground: #75beff;--vscode-symbolIcon-eventForeground: #ee9d28;--vscode-symbolIcon-fieldForeground: #75beff;--vscode-symbolIcon-fileForeground: #cccccc;--vscode-symbolIcon-folderForeground: #cccccc;--vscode-symbolIcon-functionForeground: #b180d7;--vscode-symbolIcon-interfaceForeground: #75beff;--vscode-symbolIcon-keyForeground: #cccccc;--vscode-symbolIcon-keywordForeground: #cccccc;--vscode-symbolIcon-methodForeground: #b180d7;--vscode-symbolIcon-moduleForeground: #cccccc;--vscode-symbolIcon-namespaceForeground: #cccccc;--vscode-symbolIcon-nullForeground: #cccccc;--vscode-symbolIcon-numberForeground: #cccccc;--vscode-symbolIcon-objectForeground: #cccccc;--vscode-symbolIcon-operatorForeground: #cccccc;--vscode-symbolIcon-packageForeground: #cccccc;--vscode-symbolIcon-propertyForeground: #cccccc;--vscode-symbolIcon-referenceForeground: #cccccc;--vscode-symbolIcon-snippetForeground: #cccccc;--vscode-symbolIcon-stringForeground: #cccccc;--vscode-symbolIcon-structForeground: #cccccc;--vscode-symbolIcon-textForeground: #cccccc;--vscode-symbolIcon-typeParameterForeground: #cccccc;--vscode-symbolIcon-unitForeground: #cccccc;--vscode-symbolIcon-variableForeground: #75beff;--vscode-peekViewTitle-background: #252526;--vscode-peekViewTitleLabel-foreground: #ffffff;--vscode-peekViewTitleDescription-foreground: rgba(204, 204, 204, .7);--vscode-peekView-border: #59a4f9;--vscode-peekViewResult-background: #252526;--vscode-peekViewResult-lineForeground: #bbbbbb;--vscode-peekViewResult-fileForeground: #ffffff;--vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, .2);--vscode-peekViewResult-selectionForeground: #ffffff;--vscode-peekViewEditor-background: #001f33;--vscode-peekViewEditorGutter-background: #001f33;--vscode-peekViewEditorStickyScroll-background: #001f33;--vscode-peekViewEditorStickyScrollGutter-background: #001f33;--vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, .3);--vscode-peekViewEditor-matchHighlightBackground: rgba(255, 143, 0, .6);--vscode-editorMarkerNavigationError-background: #f14c4c;--vscode-editorMarkerNavigationError-headerBackground: rgba(241, 76, 76, .1);--vscode-editorMarkerNavigationWarning-background: #cca700;--vscode-editorMarkerNavigationWarning-headerBackground: rgba(204, 167, 0, .1);--vscode-editorMarkerNavigationInfo-background: #59a4f9;--vscode-editorMarkerNavigationInfo-headerBackground: rgba(89, 164, 249, .1);--vscode-editorMarkerNavigation-background: #1e1e1e;--vscode-editor-foldBackground: rgba(38, 79, 120, .3);--vscode-editor-foldPlaceholderForeground: #808080;--vscode-editorGutter-foldingControlForeground: #c5c5c5;--vscode-editorSuggestWidget-background: #252526;--vscode-editorSuggestWidget-border: #454545;--vscode-editorSuggestWidget-foreground: #d4d4d4;--vscode-editorSuggestWidget-selectedForeground: #ffffff;--vscode-editorSuggestWidget-selectedIconForeground: #ffffff;--vscode-editorSuggestWidget-selectedBackground: #04395e;--vscode-editorSuggestWidget-highlightForeground: #2aaaff;--vscode-editorSuggestWidget-focusHighlightForeground: #2aaaff;--vscode-editorSuggestWidgetStatus-foreground: rgba(212, 212, 212, .5);--vscode-inlineEdit-originalBackground: rgba(255, 0, 0, .04);--vscode-inlineEdit-modifiedBackground: rgba(156, 204, 44, .06);--vscode-inlineEdit-originalChangedLineBackground: rgba(255, 0, 0, .16);--vscode-inlineEdit-originalChangedTextBackground: rgba(255, 0, 0, .16);--vscode-inlineEdit-modifiedChangedLineBackground: rgba(155, 185, 85, .14);--vscode-inlineEdit-modifiedChangedTextBackground: rgba(156, 204, 44, .14);--vscode-inlineEdit-gutterIndicator\.primaryForeground: #ffffff;--vscode-inlineEdit-gutterIndicator\.primaryBorder: #0e639c;--vscode-inlineEdit-gutterIndicator\.primaryBackground: rgba(14, 99, 156, .4);--vscode-inlineEdit-gutterIndicator\.secondaryForeground: #ffffff;--vscode-inlineEdit-gutterIndicator\.secondaryBorder: #3a3d41;--vscode-inlineEdit-gutterIndicator\.secondaryBackground: #3a3d41;--vscode-inlineEdit-gutterIndicator\.successfulForeground: #ffffff;--vscode-inlineEdit-gutterIndicator\.successfulBorder: #0e639c;--vscode-inlineEdit-gutterIndicator\.successfulBackground: #0e639c;--vscode-inlineEdit-gutterIndicator\.background: rgba(45, 45, 45, .5);--vscode-inlineEdit-originalBorder: rgba(255, 0, 0, .2);--vscode-inlineEdit-modifiedBorder: rgba(156, 204, 44, .2);--vscode-inlineEdit-tabWillAcceptModifiedBorder: rgba(156, 204, 44, .2);--vscode-inlineEdit-tabWillAcceptOriginalBorder: rgba(255, 0, 0, .2);--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, .3);--vscode-editor-wordHighlightBackground: rgba(87, 87, 87, .72);--vscode-editor-wordHighlightStrongBackground: rgba(0, 73, 114, .72);--vscode-editor-wordHighlightTextBackground: rgba(87, 87, 87, .72);--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, .8);--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, .8);--vscode-editorOverviewRuler-wordHighlightTextForeground: rgba(160, 160, 160, .8);--vscode-editorHoverWidget-highlightForeground: #2aaaff;--vscode-editor-placeholder\.foreground: rgba(255, 255, 255, .34);--vscode-tab-activeBackground: #1e1e1e;--vscode-tab-unfocusedActiveBackground: #1e1e1e;--vscode-tab-inactiveBackground: #2d2d2d;--vscode-tab-unfocusedInactiveBackground: #2d2d2d;--vscode-tab-activeForeground: #ffffff;--vscode-tab-inactiveForeground: rgba(255, 255, 255, .5);--vscode-tab-unfocusedActiveForeground: rgba(255, 255, 255, .5);--vscode-tab-unfocusedInactiveForeground: rgba(255, 255, 255, .25);--vscode-tab-border: #252526;--vscode-tab-lastPinnedBorder: rgba(204, 204, 204, .2);--vscode-tab-selectedBackground: #222222;--vscode-tab-selectedForeground: rgba(255, 255, 255, .63);--vscode-tab-dragAndDropBorder: #ffffff;--vscode-tab-activeModifiedBorder: #3399cc;--vscode-tab-inactiveModifiedBorder: rgba(51, 153, 204, .5);--vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 153, 204, .5);--vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 153, 204, .25);--vscode-editorPane-background: #1e1e1e;--vscode-editorGroupHeader-tabsBackground: #252526;--vscode-editorGroupHeader-noTabsBackground: #1e1e1e;--vscode-editorGroup-border: #444444;--vscode-editorGroup-dropBackground: rgba(83, 89, 93, .5);--vscode-editorGroup-dropIntoPromptForeground: #cccccc;--vscode-editorGroup-dropIntoPromptBackground: #252526;--vscode-sideBySideEditor-horizontalBorder: #444444;--vscode-sideBySideEditor-verticalBorder: #444444;--vscode-banner-background: #04395e;--vscode-banner-foreground: #ffffff;--vscode-banner-iconForeground: #59a4f9;--vscode-statusBar-foreground: #ffffff;--vscode-statusBar-noFolderForeground: #ffffff;--vscode-statusBar-background: #007acc;--vscode-statusBar-noFolderBackground: #68217a;--vscode-statusBar-focusBorder: #ffffff;--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, .18);--vscode-statusBarItem-focusBorder: #ffffff;--vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, .12);--vscode-statusBarItem-hoverForeground: #ffffff;--vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, .12);--vscode-statusBarItem-prominentForeground: #ffffff;--vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, .5);--vscode-statusBarItem-prominentHoverForeground: #ffffff;--vscode-statusBarItem-prominentHoverBackground: rgba(255, 255, 255, .12);--vscode-statusBarItem-errorBackground: #c72e0f;--vscode-statusBarItem-errorForeground: #ffffff;--vscode-statusBarItem-errorHoverForeground: #ffffff;--vscode-statusBarItem-errorHoverBackground: rgba(255, 255, 255, .12);--vscode-statusBarItem-warningBackground: #7a6400;--vscode-statusBarItem-warningForeground: #ffffff;--vscode-statusBarItem-warningHoverForeground: #ffffff;--vscode-statusBarItem-warningHoverBackground: rgba(255, 255, 255, .12);--vscode-activityBar-background: #333333;--vscode-activityBar-foreground: #ffffff;--vscode-activityBar-inactiveForeground: rgba(255, 255, 255, .4);--vscode-activityBar-activeBorder: #ffffff;--vscode-activityBar-dropBorder: #ffffff;--vscode-activityBarBadge-background: #007acc;--vscode-activityBarBadge-foreground: #ffffff;--vscode-activityBarTop-foreground: #e7e7e7;--vscode-activityBarTop-activeBorder: #e7e7e7;--vscode-activityBarTop-inactiveForeground: rgba(231, 231, 231, .6);--vscode-activityBarTop-dropBorder: #e7e7e7;--vscode-panel-background: #1e1e1e;--vscode-panel-border: rgba(128, 128, 128, .35);--vscode-panelTitle-activeForeground: #e7e7e7;--vscode-panelTitle-inactiveForeground: rgba(231, 231, 231, .6);--vscode-panelTitle-activeBorder: #e7e7e7;--vscode-panelTitleBadge-background: #007acc;--vscode-panelTitleBadge-foreground: #ffffff;--vscode-panel-dropBorder: #e7e7e7;--vscode-panelSection-dropBackground: rgba(83, 89, 93, .5);--vscode-panelSectionHeader-background: rgba(128, 128, 128, .2);--vscode-panelSection-border: rgba(128, 128, 128, .35);--vscode-panelStickyScroll-background: #1e1e1e;--vscode-panelStickyScroll-shadow: #000000;--vscode-profileBadge-background: #4d4d4d;--vscode-profileBadge-foreground: #ffffff;--vscode-statusBarItem-remoteBackground: #16825d;--vscode-statusBarItem-remoteForeground: #ffffff;--vscode-statusBarItem-remoteHoverForeground: #ffffff;--vscode-statusBarItem-remoteHoverBackground: rgba(255, 255, 255, .12);--vscode-statusBarItem-offlineBackground: #6c1717;--vscode-statusBarItem-offlineForeground: #ffffff;--vscode-statusBarItem-offlineHoverForeground: #ffffff;--vscode-statusBarItem-offlineHoverBackground: rgba(255, 255, 255, .12);--vscode-extensionBadge-remoteBackground: #007acc;--vscode-extensionBadge-remoteForeground: #ffffff;--vscode-sideBar-background: #252526;--vscode-sideBarTitle-background: #252526;--vscode-sideBarTitle-foreground: #bbbbbb;--vscode-sideBar-dropBackground: rgba(83, 89, 93, .5);--vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);--vscode-sideBarSectionHeader-border: rgba(204, 204, 204, .2);--vscode-sideBarActivityBarTop-border: rgba(204, 204, 204, .2);--vscode-sideBarStickyScroll-background: #252526;--vscode-sideBarStickyScroll-shadow: #000000;--vscode-titleBar-activeForeground: #cccccc;--vscode-titleBar-inactiveForeground: rgba(204, 204, 204, .6);--vscode-titleBar-activeBackground: #3c3c3c;--vscode-titleBar-inactiveBackground: rgba(60, 60, 60, .6);--vscode-menubar-selectionForeground: #cccccc;--vscode-menubar-selectionBackground: rgba(90, 93, 94, .31);--vscode-commandCenter-foreground: #cccccc;--vscode-commandCenter-activeForeground: #cccccc;--vscode-commandCenter-inactiveForeground: rgba(204, 204, 204, .6);--vscode-commandCenter-background: rgba(255, 255, 255, .05);--vscode-commandCenter-activeBackground: rgba(255, 255, 255, .08);--vscode-commandCenter-border: rgba(204, 204, 204, .2);--vscode-commandCenter-activeBorder: rgba(204, 204, 204, .3);--vscode-commandCenter-inactiveBorder: rgba(204, 204, 204, .15);--vscode-notificationCenter-border: #303031;--vscode-notificationToast-border: #303031;--vscode-notifications-foreground: #cccccc;--vscode-notifications-background: #252526;--vscode-notificationLink-foreground: #3794ff;--vscode-notificationCenterHeader-background: #303031;--vscode-notifications-border: #303031;--vscode-notificationsErrorIcon-foreground: #f14c4c;--vscode-notificationsWarningIcon-foreground: #cca700;--vscode-notificationsInfoIcon-foreground: #59a4f9;--vscode-editorGutter-modifiedBackground: #1b81a8;--vscode-editorGutter-modifiedSecondaryBackground: #0d4054;--vscode-editorGutter-addedBackground: #487e02;--vscode-editorGutter-addedSecondaryBackground: #243f01;--vscode-editorGutter-deletedBackground: #f14c4c;--vscode-editorGutter-deletedSecondaryBackground: #b00e0e;--vscode-minimapGutter-modifiedBackground: #1b81a8;--vscode-minimapGutter-addedBackground: #487e02;--vscode-minimapGutter-deletedBackground: #f14c4c;--vscode-editorOverviewRuler-modifiedForeground: rgba(27, 129, 168, .6);--vscode-editorOverviewRuler-addedForeground: rgba(72, 126, 2, .6);--vscode-editorOverviewRuler-deletedForeground: rgba(241, 76, 76, .6);--vscode-editorGutter-itemGlyphForeground: #d4d4d4;--vscode-editorGutter-itemBackground: #37373d;--vscode-terminal-foreground: #cccccc;--vscode-terminal-selectionBackground: #264f78;--vscode-terminal-inactiveSelectionBackground: #3a3d41;--vscode-terminalCommandDecoration-defaultBackground: rgba(255, 255, 255, .25);--vscode-terminalCommandDecoration-successBackground: #1b81a8;--vscode-terminalCommandDecoration-errorBackground: #f14c4c;--vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, .8);--vscode-terminal-border: rgba(128, 128, 128, .35);--vscode-terminalOverviewRuler-border: rgba(127, 127, 127, .3);--vscode-terminal-findMatchBackground: #515c6a;--vscode-terminal-hoverHighlightBackground: rgba(38, 79, 120, .13);--vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, .33);--vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, .49);--vscode-terminal-dropBackground: rgba(83, 89, 93, .5);--vscode-terminal-initialHintForeground: rgba(255, 255, 255, .34);--vscode-scmGraph-historyItemRefColor: #59a4f9;--vscode-scmGraph-historyItemRemoteRefColor: #b180d7;--vscode-scmGraph-historyItemBaseRefColor: #ea5c00;--vscode-scmGraph-historyItemHoverDefaultLabelForeground: #cccccc;--vscode-scmGraph-historyItemHoverDefaultLabelBackground: #4d4d4d;--vscode-scmGraph-historyItemHoverLabelForeground: #1e1e1e;--vscode-scmGraph-historyItemHoverAdditionsForeground: #81b88b;--vscode-scmGraph-historyItemHoverDeletionsForeground: #c74e39;--vscode-scmGraph-foreground1: #ffb000;--vscode-scmGraph-foreground2: #dc267f;--vscode-scmGraph-foreground3: #994f00;--vscode-scmGraph-foreground4: #40b0a6;--vscode-scmGraph-foreground5: #b66dff;--vscode-commentsView-resolvedIcon: rgba(204, 204, 204, .5);--vscode-commentsView-unresolvedIcon: #007fd4;--vscode-editorCommentsWidget-replyInputBackground: #252526;--vscode-editorCommentsWidget-resolvedBorder: rgba(204, 204, 204, .5);--vscode-editorCommentsWidget-unresolvedBorder: #007fd4;--vscode-editorCommentsWidget-rangeBackground: rgba(0, 127, 212, .1);--vscode-editorCommentsWidget-rangeActiveBackground: rgba(0, 127, 212, .1);--vscode-editorGutter-commentRangeForeground: #37373d;--vscode-editorOverviewRuler-commentForeground: #37373d;--vscode-editorOverviewRuler-commentUnresolvedForeground: #37373d;--vscode-editorOverviewRuler-commentDraftForeground: #37373d;--vscode-editorGutter-commentGlyphForeground: #d4d4d4;--vscode-editorGutter-commentUnresolvedGlyphForeground: #d4d4d4;--vscode-editorGutter-commentDraftGlyphForeground: #d4d4d4;--vscode-agentSessionReadIndicator-foreground: rgba(204, 204, 204, .15);--vscode-agentSessionSelectedBadge-border: rgba(255, 255, 255, .3);--vscode-agentSessionSelectedUnfocusedBadge-border: rgba(204, 204, 204, .3);--vscode-ports-iconRunningProcessForeground: #369432;--vscode-settings-headerForeground: #e7e7e7;--vscode-settings-settingsHeaderHoverForeground: rgba(231, 231, 231, .7);--vscode-settings-modifiedItemIndicator: #0c7d9d;--vscode-settings-headerBorder: rgba(128, 128, 128, .35);--vscode-settings-sashBorder: rgba(128, 128, 128, .35);--vscode-settings-dropdownBackground: #3c3c3c;--vscode-settings-dropdownForeground: #f0f0f0;--vscode-settings-dropdownBorder: #3c3c3c;--vscode-settings-dropdownListBorder: #454545;--vscode-settings-checkboxBackground: #3c3c3c;--vscode-settings-checkboxForeground: #f0f0f0;--vscode-settings-checkboxBorder: #6b6b6b;--vscode-settings-textInputBackground: #3c3c3c;--vscode-settings-textInputForeground: #cccccc;--vscode-settings-numberInputBackground: #3c3c3c;--vscode-settings-numberInputForeground: #cccccc;--vscode-settings-focusedRowBackground: rgba(42, 45, 46, .6);--vscode-settings-rowHoverBackground: rgba(42, 45, 46, .3);--vscode-settings-focusedRowBorder: #007fd4;--vscode-keybindingTable-headerBackground: rgba(204, 204, 204, .04);--vscode-keybindingTable-rowsBackground: rgba(204, 204, 204, .04);--vscode-extensionButton-background: #3a3d41;--vscode-extensionButton-foreground: #ffffff;--vscode-extensionButton-hoverBackground: #45494e;--vscode-extensionButton-separator: rgba(255, 255, 255, .4);--vscode-extensionButton-prominentBackground: #0e639c;--vscode-extensionButton-prominentForeground: #ffffff;--vscode-extensionButton-prominentHoverBackground: #1177bb;--vscode-debugToolBar-background: #333333;--vscode-debugIcon-startForeground: #89d185;--vscode-notebook-cellBorderColor: #37373d;--vscode-notebook-focusedEditorBorder: #007fd4;--vscode-notebookStatusSuccessIcon-foreground: #89d185;--vscode-notebookEditorOverviewRuler-runningCellForeground: #89d185;--vscode-notebookStatusErrorIcon-foreground: #f48771;--vscode-notebookStatusRunningIcon-foreground: #cccccc;--vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, .35);--vscode-notebook-selectedCellBackground: #37373d;--vscode-notebook-selectedCellBorder: #37373d;--vscode-notebook-focusedCellBorder: #007fd4;--vscode-notebook-inactiveFocusedCellBorder: #37373d;--vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, .15);--vscode-notebook-cellInsertionIndicator: #007fd4;--vscode-notebookScrollbarSlider-background: rgba(121, 121, 121, .4);--vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, .7);--vscode-notebookScrollbarSlider-activeBackground: rgba(191, 191, 191, .4);--vscode-notebook-symbolHighlightBackground: rgba(255, 255, 255, .04);--vscode-notebook-cellEditorBackground: #252526;--vscode-notebook-editorBackground: #1e1e1e;--vscode-inlineChat-foreground: #cccccc;--vscode-inlineChat-background: #252526;--vscode-inlineChat-border: #454545;--vscode-inlineChat-shadow: rgba(0, 0, 0, .36);--vscode-inlineChatInput-border: #454545;--vscode-inlineChatInput-focusBorder: #007fd4;--vscode-inlineChatInput-placeholderForeground: #a6a6a6;--vscode-inlineChatInput-background: #3c3c3c;--vscode-inlineChatDiff-inserted: rgba(156, 204, 44, .1);--vscode-editorOverviewRuler-inlineChatInserted: rgba(156, 204, 44, .12);--vscode-editorMinimap-inlineChatInserted: rgba(156, 204, 44, .12);--vscode-inlineChatDiff-removed: rgba(255, 0, 0, .1);--vscode-editorOverviewRuler-inlineChatRemoved: rgba(255, 0, 0, .12);--vscode-multiDiffEditor-headerBackground: #262626;--vscode-multiDiffEditor-background: #1e1e1e;--vscode-multiDiffEditor-border: rgba(204, 204, 204, .2);--vscode-extensionIcon-verifiedForeground: #3794ff;--vscode-chat-requestBorder: rgba(255, 255, 255, .1);--vscode-chat-requestBackground: rgba(30, 30, 30, .62);--vscode-chat-slashCommandBackground: rgba(38, 71, 120, .4);--vscode-chat-slashCommandForeground: #85b6ff;--vscode-chat-avatarBackground: #1f1f1f;--vscode-chat-avatarForeground: #cccccc;--vscode-chat-editedFileForeground: #e2c08d;--vscode-chat-requestCodeBorder: rgba(0, 73, 114, .72);--vscode-chat-requestBubbleBackground: rgba(38, 79, 120, .3);--vscode-chat-requestBubbleHoverBackground: rgba(38, 79, 120, .6);--vscode-chat-checkpointSeparator: #585858;--vscode-chat-linesAddedForeground: #54b054;--vscode-chat-linesRemovedForeground: #fc6a6a;--vscode-chat-thinkingShimmer: #ffffff;--vscode-extensionIcon-starForeground: #ff8e00;--vscode-extensionIcon-preReleaseForeground: #1d9271;--vscode-extensionIcon-sponsorForeground: #d758b3;--vscode-extensionIcon-privateForeground: rgba(255, 255, 255, .38);--vscode-debugExceptionWidget-border: #a31515;--vscode-debugExceptionWidget-background: #420b0d;--vscode-editor-inlineValuesForeground: rgba(255, 255, 255, .5);--vscode-editor-inlineValuesBackground: rgba(255, 200, 0, .2);--vscode-debugIcon-breakpointForeground: #e51400;--vscode-debugIcon-breakpointDisabledForeground: #848484;--vscode-debugIcon-breakpointUnverifiedForeground: #848484;--vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;--vscode-debugIcon-breakpointStackframeForeground: #89d185;--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, .2);--vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, .3);--vscode-minimap-chatEditHighlight: rgba(30, 30, 30, .6);--vscode-chatManagement-sashBorder: rgba(128, 128, 128, .35);--vscode-gauge-foreground: #007acc;--vscode-gauge-background: rgba(0, 122, 204, .3);--vscode-gauge-warningForeground: #b89500;--vscode-gauge-warningBackground: rgba(184, 149, 0, .3);--vscode-gauge-errorForeground: #be1100;--vscode-gauge-errorBackground: rgba(190, 17, 0, .3);--vscode-mcpIcon-starForeground: #ff8e00;--vscode-interactive-activeCodeBorder: #007acc;--vscode-interactive-inactiveCodeBorder: #37373d;--vscode-testing-iconFailed: #f14c4c;--vscode-testing-iconErrored: #f14c4c;--vscode-testing-iconPassed: #73c991;--vscode-testing-runAction: #73c991;--vscode-testing-iconQueued: #cca700;--vscode-testing-iconUnset: #848484;--vscode-testing-iconSkipped: #848484;--vscode-testing-peekBorder: #f14c4c;--vscode-testing-messagePeekBorder: #59a4f9;--vscode-testing-peekHeaderBackground: rgba(241, 76, 76, .1);--vscode-testing-messagePeekHeaderBackground: rgba(89, 164, 249, .1);--vscode-testing-coveredBackground: rgba(156, 204, 44, .2);--vscode-testing-coveredBorder: rgba(156, 204, 44, .15);--vscode-testing-coveredGutterBackground: rgba(156, 204, 44, .12);--vscode-testing-uncoveredBranchBackground: #781212;--vscode-testing-uncoveredBackground: rgba(255, 0, 0, .2);--vscode-testing-uncoveredBorder: rgba(255, 0, 0, .15);--vscode-testing-uncoveredGutterBackground: rgba(255, 0, 0, .3);--vscode-testing-coverCountBadgeBackground: #4d4d4d;--vscode-testing-coverCountBadgeForeground: #ffffff;--vscode-testing-message\.error\.badgeBackground: #f14c4c;--vscode-testing-message\.error\.badgeBorder: #f14c4c;--vscode-testing-message\.error\.badgeForeground: #000000;--vscode-testing-message\.info\.decorationForeground: rgba(212, 212, 212, .5);--vscode-testing-iconErrored\.retired: rgba(241, 76, 76, .7);--vscode-testing-iconFailed\.retired: rgba(241, 76, 76, .7);--vscode-testing-iconPassed\.retired: rgba(115, 201, 145, .7);--vscode-testing-iconQueued\.retired: rgba(204, 167, 0, .7);--vscode-testing-iconUnset\.retired: rgba(132, 132, 132, .7);--vscode-testing-iconSkipped\.retired: rgba(132, 132, 132, .7);--vscode-statusBar-debuggingBackground: #cc6633;--vscode-statusBar-debuggingForeground: #ffffff;--vscode-commandCenter-debuggingBackground: rgba(204, 102, 51, .26);--vscode-debugTokenExpression-name: #c586c0;--vscode-debugTokenExpression-type: #4a90e2;--vscode-debugTokenExpression-value: rgba(204, 204, 204, .6);--vscode-debugTokenExpression-string: #ce9178;--vscode-debugTokenExpression-boolean: #4e94ce;--vscode-debugTokenExpression-number: #b5cea8;--vscode-debugTokenExpression-error: #f48771;--vscode-debugView-exceptionLabelForeground: #cccccc;--vscode-debugView-exceptionLabelBackground: #6c2022;--vscode-debugView-stateLabelForeground: #cccccc;--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, .27);--vscode-debugView-valueChangedHighlight: #569cd6;--vscode-debugConsole-infoForeground: #59a4f9;--vscode-debugConsole-warningForeground: #cca700;--vscode-debugConsole-errorForeground: #f48771;--vscode-debugConsole-sourceForeground: #cccccc;--vscode-debugConsoleInputIcon-foreground: #cccccc;--vscode-debugIcon-pauseForeground: #75beff;--vscode-debugIcon-stopForeground: #f48771;--vscode-debugIcon-disconnectForeground: #f48771;--vscode-debugIcon-restartForeground: #89d185;--vscode-debugIcon-stepOverForeground: #75beff;--vscode-debugIcon-stepIntoForeground: #75beff;--vscode-debugIcon-stepOutForeground: #75beff;--vscode-debugIcon-continueForeground: #75beff;--vscode-debugIcon-stepBackForeground: #75beff;--vscode-mergeEditor-change\.background: rgba(155, 185, 85, .2);--vscode-mergeEditor-change\.word\.background: rgba(156, 204, 44, .2);--vscode-mergeEditor-changeBase\.background: #4b1818;--vscode-mergeEditor-changeBase\.word\.background: #6f1313;--vscode-mergeEditor-conflict\.unhandledUnfocused\.border: rgba(255, 166, 0, .48);--vscode-mergeEditor-conflict\.unhandledFocused\.border: #ffa600;--vscode-mergeEditor-conflict\.handledUnfocused\.border: rgba(134, 134, 134, .29);--vscode-mergeEditor-conflict\.handledFocused\.border: rgba(193, 193, 193, .8);--vscode-mergeEditor-conflict\.handled\.minimapOverViewRuler: rgba(173, 172, 168, .93);--vscode-mergeEditor-conflict\.unhandled\.minimapOverViewRuler: #fcba03;--vscode-mergeEditor-conflictingLines\.background: rgba(255, 234, 0, .28);--vscode-mergeEditor-conflict\.input1\.background: rgba(64, 200, 174, .2);--vscode-mergeEditor-conflict\.input2\.background: rgba(64, 166, 255, .2);--vscode-terminal-ansiBlack: #000000;--vscode-terminal-ansiRed: #cd3131;--vscode-terminal-ansiGreen: #0dbc79;--vscode-terminal-ansiYellow: #e5e510;--vscode-terminal-ansiBlue: #2472c8;--vscode-terminal-ansiMagenta: #bc3fbc;--vscode-terminal-ansiCyan: #11a8cd;--vscode-terminal-ansiWhite: #e5e5e5;--vscode-terminal-ansiBrightBlack: #666666;--vscode-terminal-ansiBrightRed: #f14c4c;--vscode-terminal-ansiBrightGreen: #23d18b;--vscode-terminal-ansiBrightYellow: #f5f543;--vscode-terminal-ansiBrightBlue: #3b8eea;--vscode-terminal-ansiBrightMagenta: #d670d6;--vscode-terminal-ansiBrightCyan: #29b8db;--vscode-terminal-ansiBrightWhite: #e5e5e5;--vscode-simpleFindWidget-sashBorder: #454545;--vscode-terminalStickyScrollHover-background: #2a2d2e;--vscode-terminalCommandGuide-foreground: #37373d;--vscode-terminalSymbolIcon-flagForeground: #ee9d28;--vscode-terminalSymbolIcon-aliasForeground: #b180d7;--vscode-terminalSymbolIcon-optionValueForeground: #75beff;--vscode-terminalSymbolIcon-methodForeground: #b180d7;--vscode-terminalSymbolIcon-argumentForeground: #75beff;--vscode-terminalSymbolIcon-optionForeground: #ee9d28;--vscode-terminalSymbolIcon-fileForeground: #cccccc;--vscode-terminalSymbolIcon-folderForeground: #cccccc;--vscode-terminalSymbolIcon-commitForeground: #cccccc;--vscode-terminalSymbolIcon-branchForeground: #cccccc;--vscode-terminalSymbolIcon-tagForeground: #cccccc;--vscode-terminalSymbolIcon-stashForeground: #cccccc;--vscode-terminalSymbolIcon-remoteForeground: #cccccc;--vscode-terminalSymbolIcon-pullRequestForeground: #cccccc;--vscode-terminalSymbolIcon-pullRequestDoneForeground: #cccccc;--vscode-terminalSymbolIcon-symbolicLinkFileForeground: #cccccc;--vscode-terminalSymbolIcon-symbolicLinkFolderForeground: #cccccc;--vscode-terminalSymbolIcon-symbolText: #cccccc;--vscode-markdownAlert-note\.foreground: #59a4f9;--vscode-markdownAlert-tip\.foreground: #89d185;--vscode-markdownAlert-important\.foreground: #b180d7;--vscode-markdownAlert-warning\.foreground: #cca700;--vscode-markdownAlert-caution\.foreground: #f14c4c;--vscode-welcomePage-tileBackground: #252526;--vscode-welcomePage-tileHoverBackground: #2c2c2d;--vscode-welcomePage-tileBorder: rgba(255, 255, 255, .1);--vscode-welcomePage-progress\.background: #3c3c3c;--vscode-welcomePage-progress\.foreground: #3794ff;--vscode-walkthrough-stepTitle\.foreground: #ffffff;--vscode-walkThrough-embeddedEditorBackground: rgba(0, 0, 0, .4);--vscode-profiles-sashBorder: rgba(128, 128, 128, .35);--vscode-gitDecoration-addedResourceForeground: #81b88b;--vscode-gitDecoration-modifiedResourceForeground: #e2c08d;--vscode-gitDecoration-deletedResourceForeground: #c74e39;--vscode-gitDecoration-renamedResourceForeground: #73c991;--vscode-gitDecoration-untrackedResourceForeground: #73c991;--vscode-gitDecoration-ignoredResourceForeground: #8c8c8c;--vscode-gitDecoration-stageModifiedResourceForeground: #e2c08d;--vscode-gitDecoration-stageDeletedResourceForeground: #c74e39;--vscode-gitDecoration-conflictingResourceForeground: #e4676b;--vscode-gitDecoration-submoduleResourceForeground: #8db9e2;--vscode-git-blame\.editorDecorationForeground: #969696;--vscode-gitlens-gutterBackgroundColor: rgba(255, 255, 255, .07);--vscode-gitlens-gutterForegroundColor: #bebebe;--vscode-gitlens-gutterUncommittedForegroundColor: rgba(0, 188, 242, .6);--vscode-gitlens-trailingLineBackgroundColor: rgba(0, 0, 0, 0);--vscode-gitlens-trailingLineForegroundColor: rgba(153, 153, 153, .35);--vscode-gitlens-lineHighlightBackgroundColor: rgba(0, 188, 242, .2);--vscode-gitlens-lineHighlightOverviewRulerColor: rgba(0, 188, 242, .6);--vscode-gitlens-openAutolinkedIssueIconColor: #3fb950;--vscode-gitlens-closedAutolinkedIssueIconColor: #a371f7;--vscode-gitlens-closedPullRequestIconColor: #f85149;--vscode-gitlens-openPullRequestIconColor: #3fb950;--vscode-gitlens-mergedPullRequestIconColor: #a371f7;--vscode-gitlens-unpublishedChangesIconColor: #35b15e;--vscode-gitlens-unpublishedCommitIconColor: #35b15e;--vscode-gitlens-unpulledChangesIconColor: #b15e35;--vscode-gitlens-decorations\.addedForegroundColor: #81b88b;--vscode-gitlens-decorations\.copiedForegroundColor: #73c991;--vscode-gitlens-decorations\.deletedForegroundColor: #c74e39;--vscode-gitlens-decorations\.ignoredForegroundColor: #8c8c8c;--vscode-gitlens-decorations\.modifiedForegroundColor: #e2c08d;--vscode-gitlens-decorations\.untrackedForegroundColor: #73c991;--vscode-gitlens-decorations\.renamedForegroundColor: #73c991;--vscode-gitlens-decorations\.branchAheadForegroundColor: #35b15e;--vscode-gitlens-decorations\.branchBehindForegroundColor: #b15e35;--vscode-gitlens-decorations\.branchDivergedForegroundColor: #d8af1b;--vscode-gitlens-decorations\.branchMissingUpstreamForegroundColor: #c74e39;--vscode-gitlens-decorations\.statusMergingOrRebasingConflictForegroundColor: #c74e39;--vscode-gitlens-decorations\.statusMergingOrRebasingForegroundColor: #d8af1b;--vscode-gitlens-decorations\.workspaceRepoMissingForegroundColor: #909090;--vscode-gitlens-decorations\.workspaceCurrentForegroundColor: #35b15e;--vscode-gitlens-decorations\.workspaceRepoOpenForegroundColor: #35b15e;--vscode-gitlens-decorations\.worktreeHasUncommittedChangesForegroundColor: #e2c08d;--vscode-gitlens-decorations\.worktreeMissingForegroundColor: #c74e39;--vscode-gitlens-graphLane1Color: #15a0bf;--vscode-gitlens-graphLane2Color: #0669f7;--vscode-gitlens-graphLane3Color: #8e00c2;--vscode-gitlens-graphLane4Color: #c517b6;--vscode-gitlens-graphLane5Color: #d90171;--vscode-gitlens-graphLane6Color: #cd0101;--vscode-gitlens-graphLane7Color: #f25d2e;--vscode-gitlens-graphLane8Color: #f2ca33;--vscode-gitlens-graphLane9Color: #7bd938;--vscode-gitlens-graphLane10Color: #2ece9d;--vscode-gitlens-graphChangesColumnAddedColor: #347d39;--vscode-gitlens-graphChangesColumnDeletedColor: #c93c37;--vscode-gitlens-graphMinimapMarkerHeadColor: #05e617;--vscode-gitlens-graphScrollMarkerHeadColor: #05e617;--vscode-gitlens-graphMinimapMarkerUpstreamColor: #09ae17;--vscode-gitlens-graphScrollMarkerUpstreamColor: #09ae17;--vscode-gitlens-graphMinimapMarkerHighlightsColor: #fbff0a;--vscode-gitlens-graphScrollMarkerHighlightsColor: #fbff0a;--vscode-gitlens-graphMinimapMarkerLocalBranchesColor: #3087cf;--vscode-gitlens-graphScrollMarkerLocalBranchesColor: #3087cf;--vscode-gitlens-graphMinimapMarkerPullRequestsColor: #c76801;--vscode-gitlens-graphScrollMarkerPullRequestsColor: #c76801;--vscode-gitlens-graphMinimapMarkerRemoteBranchesColor: #2b5e88;--vscode-gitlens-graphScrollMarkerRemoteBranchesColor: #2b5e88;--vscode-gitlens-graphMinimapMarkerStashesColor: #b34db3;--vscode-gitlens-graphScrollMarkerStashesColor: #b34db3;--vscode-gitlens-graphMinimapMarkerTagsColor: #6b562e;--vscode-gitlens-graphScrollMarkerTagsColor: #6b562e;--vscode-gitlens-launchpadIndicatorMergeableColor: #3fb950;--vscode-gitlens-launchpadIndicatorMergeableHoverColor: #3fb950;--vscode-gitlens-launchpadIndicatorBlockedColor: #c74e39;--vscode-gitlens-launchpadIndicatorBlockedHoverColor: #c74e39;--vscode-gitlens-launchpadIndicatorAttentionColor: #d8af1b;--vscode-gitlens-launchpadIndicatorAttentionHoverColor: #d8af1b;--vscode-issues-newIssueDecoration: rgba(255, 255, 255, .28);--vscode-issues-open: #3fb950;--vscode-issues-closed: #8957e5;--vscode-github-issues\.closed: #8957e5;--vscode-pullRequests-merged: #8957e5;--vscode-pullRequests-draft: #6e7681;--vscode-pullRequests-open: #3fb950;--vscode-pullRequests-closed: #cb2431;--vscode-pullRequests-notification: #59a4f9;--vscode-testExplorer-errorDecorationBackground: #5a1d1d;--vscode-remoteHub-decorations\.addedForegroundColor: #81b88b;--vscode-remoteHub-decorations\.modifiedForegroundColor: #e2c08d;--vscode-remoteHub-decorations\.deletedForegroundColor: #c74e39;--vscode-remoteHub-decorations\.submoduleForegroundColor: #8db9e2;--vscode-remoteHub-decorations\.conflictForegroundColor: #e4676b;--vscode-remoteHub-decorations\.incomingAddedForegroundColor: #81b88b;--vscode-remoteHub-decorations\.incomingModifiedForegroundColor: #e2c08d;--vscode-remoteHub-decorations\.incomingDeletedForegroundColor: #c74e39;--vscode-remoteHub-decorations\.incomingRenamedForegroundColor: #73c991;--vscode-remoteHub-decorations\.possibleConflictForegroundColor: #cca700;--vscode-remoteHub-decorations\.ignoredResourceForeground: #8c8c8c;--vscode-remoteHub-decorations\.workspaceRepositoriesView\.hasUncommittedChangesForegroundColor: #e2c08d;--vscode-editor-font-feature-settings: "liga" on,"calt" on}.vscode-theme.default-light-plus{scrollbar-color:var(--vscode-scrollbarSlider-background) var(--vscode-editor-background);font-family:var(--markdown-font-family, -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", system-ui, "Ubuntu", "Droid Sans", sans-serif);font-size:var(--markdown-font-size, 14px);line-height:var(--markdown-line-height, 22px);word-wrap:break-word;padding:0!important;--markdown-font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", system-ui, "Ubuntu", "Droid Sans", sans-serif;--markdown-font-size: 14px;--markdown-line-height: 1.6;--vscode-font-family: "Segoe WPC", "Segoe UI", sans-serif;--vscode-font-weight: normal;--vscode-font-size: 13px;--vscode-editor-font-family: "Cascadia Code", Consolas, "Courier New", monospace;--vscode-editor-font-weight: normal;--vscode-editor-font-size: 14px;--text-link-decoration: none;--vscode-foreground: #616161;--vscode-disabledForeground: rgba(97, 97, 97, .5);--vscode-errorForeground: #a1260d;--vscode-descriptionForeground: #717171;--vscode-icon-foreground: #424242;--vscode-focusBorder: #0090f1;--vscode-textLink-foreground: #006ab1;--vscode-textLink-activeForeground: #006ab1;--vscode-textSeparator-foreground: rgba(0, 0, 0, .18);--vscode-textPreformat-foreground: #a31515;--vscode-textPreformat-background: rgba(0, 0, 0, .1);--vscode-textBlockQuote-background: #f2f2f2;--vscode-textBlockQuote-border: rgba(0, 122, 204, .5);--vscode-textCodeBlock-background: rgba(220, 220, 220, .4);--vscode-sash-hoverBorder: #0090f1;--vscode-badge-background: #c4c4c4;--vscode-badge-foreground: #333333;--vscode-activityWarningBadge-foreground: #ffffff;--vscode-activityWarningBadge-background: #b27c00;--vscode-activityErrorBadge-foreground: #ffffff;--vscode-activityErrorBadge-background: #e51400;--vscode-scrollbar-shadow: #dddddd;--vscode-scrollbarSlider-background: rgba(100, 100, 100, .4);--vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, .7);--vscode-scrollbarSlider-activeBackground: rgba(0, 0, 0, .6);--vscode-progressBar-background: #0e70c0;--vscode-chart-line: #236b8e;--vscode-chart-axis: rgba(0, 0, 0, .6);--vscode-chart-guide: rgba(0, 0, 0, .2);--vscode-editor-background: #ffffff;--vscode-editor-foreground: #000000;--vscode-editorStickyScroll-background: #ffffff;--vscode-editorStickyScrollGutter-background: #ffffff;--vscode-editorStickyScrollHover-background: #f0f0f0;--vscode-editorStickyScroll-shadow: #dddddd;--vscode-editorWidget-background: #f3f3f3;--vscode-editorWidget-foreground: #616161;--vscode-editorWidget-border: #c8c8c8;--vscode-editorError-foreground: #e51400;--vscode-editorWarning-foreground: #bf8803;--vscode-editorInfo-foreground: #0063d3;--vscode-editorHint-foreground: #6c6c6c;--vscode-editorLink-activeForeground: #0000ff;--vscode-editor-selectionBackground: #add6ff;--vscode-editor-inactiveSelectionBackground: #e5ebf1;--vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, .5);--vscode-editor-compositionBorder: #000000;--vscode-editor-findMatchBackground: #a8ac94;--vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, .33);--vscode-editor-findRangeHighlightBackground: rgba(180, 180, 180, .3);--vscode-editor-hoverHighlightBackground: rgba(173, 214, 255, .15);--vscode-editorHoverWidget-background: #f3f3f3;--vscode-editorHoverWidget-foreground: #616161;--vscode-editorHoverWidget-border: #c8c8c8;--vscode-editorHoverWidget-statusBarBackground: #e7e7e7;--vscode-editorInlayHint-foreground: #969696;--vscode-editorInlayHint-background: rgba(196, 196, 196, .1);--vscode-editorInlayHint-typeForeground: #969696;--vscode-editorInlayHint-typeBackground: rgba(196, 196, 196, .1);--vscode-editorInlayHint-parameterForeground: #969696;--vscode-editorInlayHint-parameterBackground: rgba(196, 196, 196, .1);--vscode-editorLightBulb-foreground: #ddb100;--vscode-editorLightBulbAutoFix-foreground: #007acc;--vscode-editorLightBulbAi-foreground: #ddb100;--vscode-editor-snippetTabstopHighlightBackground: rgba(10, 50, 100, .2);--vscode-editor-snippetFinalTabstopHighlightBorder: rgba(10, 50, 100, .5);--vscode-diffEditor-insertedTextBackground: rgba(23, 149, 44, .37);--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, .35);--vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, .2);--vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, .2);--vscode-diffEditor-diagonalFill: rgba(34, 34, 34, .2);--vscode-diffEditor-unchangedRegionBackground: #f8f8f8;--vscode-diffEditor-unchangedRegionForeground: #616161;--vscode-diffEditor-unchangedCodeBackground: rgba(184, 184, 184, .16);--vscode-widget-shadow: rgba(0, 0, 0, .16);--vscode-widget-border: #d4d4d4;--vscode-toolbar-hoverBackground: rgba(184, 184, 184, .31);--vscode-toolbar-activeBackground: rgba(166, 166, 166, .31);--vscode-breadcrumb-foreground: rgba(97, 97, 97, .8);--vscode-breadcrumb-background: #ffffff;--vscode-breadcrumb-focusForeground: #4e4e4e;--vscode-breadcrumb-activeSelectionForeground: #4e4e4e;--vscode-breadcrumbPicker-background: #f3f3f3;--vscode-merge-currentHeaderBackground: rgba(64, 200, 174, .5);--vscode-merge-currentContentBackground: rgba(64, 200, 174, .2);--vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, .5);--vscode-merge-incomingContentBackground: rgba(64, 166, 255, .2);--vscode-merge-commonHeaderBackground: rgba(96, 96, 96, .4);--vscode-merge-commonContentBackground: rgba(96, 96, 96, .16);--vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, .5);--vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, .5);--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, .4);--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, .49);--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, .8);--vscode-problemsErrorIcon-foreground: #e51400;--vscode-problemsWarningIcon-foreground: #bf8803;--vscode-problemsInfoIcon-foreground: #0063d3;--vscode-minimap-findMatchHighlight: rgba(234, 92, 0, .33);--vscode-minimap-selectionOccurrenceHighlight: rgba(173, 214, 255, .5);--vscode-minimap-selectionHighlight: #add6ff;--vscode-minimap-infoHighlight: #0063d3;--vscode-minimap-warningHighlight: #bf8803;--vscode-minimap-errorHighlight: rgba(255, 18, 18, .7);--vscode-minimap-foregroundOpacity: #000000;--vscode-minimapSlider-background: rgba(100, 100, 100, .2);--vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, .35);--vscode-minimapSlider-activeBackground: rgba(0, 0, 0, .3);--vscode-charts-foreground: #616161;--vscode-charts-lines: rgba(97, 97, 97, .5);--vscode-charts-red: #e51400;--vscode-charts-blue: #0063d3;--vscode-charts-yellow: #bf8803;--vscode-charts-orange: rgba(234, 92, 0, .33);--vscode-charts-green: #388a34;--vscode-charts-purple: #652d90;--vscode-list-focusOutline: #0090f1;--vscode-list-focusAndSelectionOutline: #90c2f9;--vscode-list-activeSelectionBackground: #0060c0;--vscode-list-activeSelectionForeground: #ffffff;--vscode-list-activeSelectionIconForeground: #ffffff;--vscode-list-inactiveSelectionBackground: #e4e6f1;--vscode-list-hoverBackground: #e8e8e8;--vscode-list-dropBackground: #d6ebff;--vscode-list-dropBetweenBackground: #424242;--vscode-list-highlightForeground: #0066bf;--vscode-list-focusHighlightForeground: #bbe7ff;--vscode-list-invalidItemForeground: #b89500;--vscode-list-errorForeground: #b01011;--vscode-list-warningForeground: #855f00;--vscode-listFilterWidget-background: #f3f3f3;--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);--vscode-listFilterWidget-noMatchesOutline: #be1100;--vscode-listFilterWidget-shadow: rgba(0, 0, 0, .16);--vscode-list-filterMatchBackground: rgba(234, 92, 0, .33);--vscode-list-deemphasizedForeground: #8e8e90;--vscode-tree-indentGuidesStroke: #a9a9a9;--vscode-tree-inactiveIndentGuidesStroke: rgba(169, 169, 169, .4);--vscode-tree-tableColumnsBorder: rgba(97, 97, 97, .13);--vscode-tree-tableOddRowsBackground: rgba(97, 97, 97, .04);--vscode-editorActionList-background: #f3f3f3;--vscode-editorActionList-foreground: #616161;--vscode-editorActionList-focusForeground: #ffffff;--vscode-editorActionList-focusBackground: #0060c0;--vscode-input-background: #ffffff;--vscode-input-foreground: #616161;--vscode-inputOption-activeBorder: #007acc;--vscode-inputOption-hoverBackground: rgba(184, 184, 184, .31);--vscode-inputOption-activeBackground: rgba(0, 144, 241, .2);--vscode-inputOption-activeForeground: #000000;--vscode-input-placeholderForeground: #767676;--vscode-inputValidation-infoBackground: #d6ecf2;--vscode-inputValidation-infoBorder: #007acc;--vscode-inputValidation-warningBackground: #f6f5d2;--vscode-inputValidation-warningBorder: #b89500;--vscode-inputValidation-errorBackground: #f2dede;--vscode-inputValidation-errorBorder: #be1100;--vscode-dropdown-background: #ffffff;--vscode-dropdown-foreground: #616161;--vscode-dropdown-border: #cecece;--vscode-button-foreground: #ffffff;--vscode-button-separator: rgba(255, 255, 255, .4);--vscode-button-background: #007acc;--vscode-button-hoverBackground: #0062a3;--vscode-button-secondaryForeground: #616161;--vscode-button-secondaryBorder: rgba(97, 97, 97, .2);--vscode-button-secondaryHoverBackground: #e8e8e8;--vscode-radio-activeForeground: #000000;--vscode-radio-activeBackground: rgba(0, 144, 241, .2);--vscode-radio-activeBorder: #007acc;--vscode-radio-inactiveBorder: rgba(0, 0, 0, .2);--vscode-radio-inactiveHoverBackground: rgba(184, 184, 184, .31);--vscode-checkbox-background: #ffffff;--vscode-checkbox-selectBackground: #f3f3f3;--vscode-checkbox-foreground: #616161;--vscode-checkbox-border: #919191;--vscode-checkbox-selectBorder: #424242;--vscode-checkbox-disabled\.background: #cacaca;--vscode-checkbox-disabled\.foreground: #959595;--vscode-keybindingLabel-background: rgba(221, 221, 221, .4);--vscode-keybindingLabel-foreground: #555555;--vscode-keybindingLabel-border: rgba(204, 204, 204, .4);--vscode-keybindingLabel-bottomBorder: rgba(187, 187, 187, .4);--vscode-menu-border: #d4d4d4;--vscode-menu-foreground: #616161;--vscode-menu-background: #ffffff;--vscode-menu-selectionForeground: #ffffff;--vscode-menu-selectionBackground: #0060c0;--vscode-menu-separatorBackground: #d4d4d4;--vscode-quickInput-background: #f3f3f3;--vscode-quickInput-foreground: #616161;--vscode-quickInputTitle-background: rgba(0, 0, 0, .06);--vscode-pickerGroup-foreground: #0066bf;--vscode-pickerGroup-border: #cccedb;--vscode-quickInputList-focusForeground: #ffffff;--vscode-quickInputList-focusIconForeground: #ffffff;--vscode-quickInputList-focusBackground: #0060c0;--vscode-search-resultsInfoForeground: #616161;--vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, .22);--vscode-editor-lineHighlightBorder: #eeeeee;--vscode-editor-rangeHighlightBackground: rgba(253, 255, 0, .2);--vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, .33);--vscode-editorCursor-foreground: #000000;--vscode-editorMultiCursor-primary\.foreground: #000000;--vscode-editorMultiCursor-secondary\.foreground: #000000;--vscode-editorWhitespace-foreground: rgba(51, 51, 51, .2);--vscode-editorLineNumber-foreground: #237893;--vscode-editorIndentGuide-background: rgba(51, 51, 51, .2);--vscode-editorIndentGuide-activeBackground: rgba(51, 51, 51, .2);--vscode-editorIndentGuide-background1: #d3d3d3;--vscode-editorIndentGuide-background2: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-background3: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-background4: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-background5: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-background6: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-activeBackground1: #939393;--vscode-editorIndentGuide-activeBackground2: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-activeBackground3: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-activeBackground4: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-activeBackground5: rgba(0, 0, 0, 0);--vscode-editorIndentGuide-activeBackground6: rgba(0, 0, 0, 0);--vscode-editorActiveLineNumber-foreground: #0b216f;--vscode-editorLineNumber-activeForeground: #0b216f;--vscode-editorRuler-foreground: rgba(177, 177, 177, .17);--vscode-editorCodeLens-foreground: #919191;--vscode-editorBracketMatch-background: rgba(0, 100, 0, .1);--vscode-editorBracketMatch-border: #b9b9b9;--vscode-editorOverviewRuler-border: rgba(127, 127, 127, .3);--vscode-editorGutter-background: #ffffff;--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, .47);--vscode-editorGhostText-foreground: rgba(0, 0, 0, .47);--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, .6);--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, .7);--vscode-editorOverviewRuler-warningForeground: #bf8803;--vscode-editorOverviewRuler-infoForeground: #0063d3;--vscode-editorBracketHighlight-foreground1: #0431fa;--vscode-editorBracketHighlight-foreground2: #319331;--vscode-editorBracketHighlight-foreground3: #7b3814;--vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);--vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);--vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);--vscode-editorBracketHighlight-unexpectedBracket\.foreground: rgba(255, 18, 18, .8);--vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);--vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);--vscode-editorUnicodeHighlight-border: #bf8803;--vscode-diffEditor-move\.border: rgba(139, 139, 139, .61);--vscode-diffEditor-moveActive\.border: #ffa500;--vscode-diffEditor-unchangedRegionShadow: rgba(115, 115, 115, .75);--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;--vscode-actionBar-toggledBackground: #dddddd;--vscode-symbolIcon-arrayForeground: #616161;--vscode-symbolIcon-booleanForeground: #616161;--vscode-symbolIcon-classForeground: #d67e00;--vscode-symbolIcon-colorForeground: #616161;--vscode-symbolIcon-constantForeground: #616161;--vscode-symbolIcon-constructorForeground: #652d90;--vscode-symbolIcon-enumeratorForeground: #d67e00;--vscode-symbolIcon-enumeratorMemberForeground: #007acc;--vscode-symbolIcon-eventForeground: #d67e00;--vscode-symbolIcon-fieldForeground: #007acc;--vscode-symbolIcon-fileForeground: #616161;--vscode-symbolIcon-folderForeground: #616161;--vscode-symbolIcon-functionForeground: #652d90;--vscode-symbolIcon-interfaceForeground: #007acc;--vscode-symbolIcon-keyForeground: #616161;--vscode-symbolIcon-keywordForeground: #616161;--vscode-symbolIcon-methodForeground: #652d90;--vscode-symbolIcon-moduleForeground: #616161;--vscode-symbolIcon-namespaceForeground: #616161;--vscode-symbolIcon-nullForeground: #616161;--vscode-symbolIcon-numberForeground: #616161;--vscode-symbolIcon-objectForeground: #616161;--vscode-symbolIcon-operatorForeground: #616161;--vscode-symbolIcon-packageForeground: #616161;--vscode-symbolIcon-propertyForeground: #616161;--vscode-symbolIcon-referenceForeground: #616161;--vscode-symbolIcon-snippetForeground: #616161;--vscode-symbolIcon-stringForeground: #616161;--vscode-symbolIcon-structForeground: #616161;--vscode-symbolIcon-textForeground: #616161;--vscode-symbolIcon-typeParameterForeground: #616161;--vscode-symbolIcon-unitForeground: #616161;--vscode-symbolIcon-variableForeground: #007acc;--vscode-peekViewTitle-background: #f3f3f3;--vscode-peekViewTitleLabel-foreground: #000000;--vscode-peekViewTitleDescription-foreground: #616161;--vscode-peekView-border: #0063d3;--vscode-peekViewResult-background: #f3f3f3;--vscode-peekViewResult-lineForeground: #646465;--vscode-peekViewResult-fileForeground: #1e1e1e;--vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, .2);--vscode-peekViewResult-selectionForeground: #6c6c6c;--vscode-peekViewEditor-background: #f2f8fc;--vscode-peekViewEditorGutter-background: #f2f8fc;--vscode-peekViewEditorStickyScroll-background: #f2f8fc;--vscode-peekViewEditorStickyScrollGutter-background: #f2f8fc;--vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, .3);--vscode-peekViewEditor-matchHighlightBackground: rgba(245, 216, 2, .87);--vscode-editorMarkerNavigationError-background: #e51400;--vscode-editorMarkerNavigationError-headerBackground: rgba(229, 20, 0, .1);--vscode-editorMarkerNavigationWarning-background: #bf8803;--vscode-editorMarkerNavigationWarning-headerBackground: rgba(191, 136, 3, .1);--vscode-editorMarkerNavigationInfo-background: #0063d3;--vscode-editorMarkerNavigationInfo-headerBackground: rgba(0, 99, 211, .1);--vscode-editorMarkerNavigation-background: #ffffff;--vscode-editor-foldBackground: rgba(173, 214, 255, .3);--vscode-editor-foldPlaceholderForeground: #808080;--vscode-editorGutter-foldingControlForeground: #424242;--vscode-editorSuggestWidget-background: #f3f3f3;--vscode-editorSuggestWidget-border: #c8c8c8;--vscode-editorSuggestWidget-foreground: #000000;--vscode-editorSuggestWidget-selectedForeground: #ffffff;--vscode-editorSuggestWidget-selectedIconForeground: #ffffff;--vscode-editorSuggestWidget-selectedBackground: #0060c0;--vscode-editorSuggestWidget-highlightForeground: #0066bf;--vscode-editorSuggestWidget-focusHighlightForeground: #bbe7ff;--vscode-editorSuggestWidgetStatus-foreground: rgba(0, 0, 0, .5);--vscode-inlineEdit-originalBackground: rgba(255, 0, 0, .07);--vscode-inlineEdit-modifiedBackground: rgba(23, 149, 44, .11);--vscode-inlineEdit-originalChangedLineBackground: rgba(255, 0, 0, .28);--vscode-inlineEdit-originalChangedTextBackground: rgba(255, 0, 0, .28);--vscode-inlineEdit-modifiedChangedLineBackground: rgba(155, 185, 85, .14);--vscode-inlineEdit-modifiedChangedTextBackground: rgba(23, 149, 44, .26);--vscode-inlineEdit-gutterIndicator\.primaryForeground: #ffffff;--vscode-inlineEdit-gutterIndicator\.primaryBorder: #007acc;--vscode-inlineEdit-gutterIndicator\.primaryBackground: rgba(0, 122, 204, .5);--vscode-inlineEdit-gutterIndicator\.secondaryForeground: #616161;--vscode-inlineEdit-gutterIndicator\.successfulForeground: #ffffff;--vscode-inlineEdit-gutterIndicator\.successfulBorder: #007acc;--vscode-inlineEdit-gutterIndicator\.successfulBackground: #007acc;--vscode-inlineEdit-gutterIndicator\.background: rgba(95, 95, 95, .09);--vscode-inlineEdit-originalBorder: rgba(255, 0, 0, .35);--vscode-inlineEdit-modifiedBorder: rgba(9, 60, 18, .37);--vscode-inlineEdit-tabWillAcceptModifiedBorder: rgba(9, 60, 18, .37);--vscode-inlineEdit-tabWillAcceptOriginalBorder: rgba(255, 0, 0, .35);--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, .3);--vscode-editor-wordHighlightBackground: rgba(87, 87, 87, .25);--vscode-editor-wordHighlightStrongBackground: rgba(14, 99, 156, .25);--vscode-editor-wordHighlightTextBackground: rgba(87, 87, 87, .25);--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, .8);--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, .8);--vscode-editorOverviewRuler-wordHighlightTextForeground: rgba(160, 160, 160, .8);--vscode-editorHoverWidget-highlightForeground: #0066bf;--vscode-editor-placeholder\.foreground: rgba(0, 0, 0, .47);--vscode-tab-activeBackground: #ffffff;--vscode-tab-unfocusedActiveBackground: #ffffff;--vscode-tab-inactiveBackground: #ececec;--vscode-tab-unfocusedInactiveBackground: #ececec;--vscode-tab-activeForeground: #333333;--vscode-tab-inactiveForeground: rgba(51, 51, 51, .7);--vscode-tab-unfocusedActiveForeground: rgba(51, 51, 51, .7);--vscode-tab-unfocusedInactiveForeground: rgba(51, 51, 51, .35);--vscode-tab-border: #f3f3f3;--vscode-tab-lastPinnedBorder: rgba(97, 97, 97, .19);--vscode-tab-selectedBackground: rgba(255, 255, 255, .65);--vscode-tab-selectedForeground: rgba(51, 51, 51, .7);--vscode-tab-dragAndDropBorder: #333333;--vscode-tab-activeModifiedBorder: #33aaee;--vscode-tab-inactiveModifiedBorder: rgba(51, 170, 238, .5);--vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 170, 238, .7);--vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 170, 238, .25);--vscode-editorPane-background: #ffffff;--vscode-editorGroupHeader-tabsBackground: #f3f3f3;--vscode-editorGroupHeader-noTabsBackground: #ffffff;--vscode-editorGroup-border: #e7e7e7;--vscode-editorGroup-dropBackground: rgba(38, 119, 203, .18);--vscode-editorGroup-dropIntoPromptForeground: #616161;--vscode-editorGroup-dropIntoPromptBackground: #f3f3f3;--vscode-sideBySideEditor-horizontalBorder: #e7e7e7;--vscode-sideBySideEditor-verticalBorder: #e7e7e7;--vscode-banner-background: #004386;--vscode-banner-foreground: #ffffff;--vscode-banner-iconForeground: #0063d3;--vscode-statusBar-foreground: #ffffff;--vscode-statusBar-noFolderForeground: #ffffff;--vscode-statusBar-background: #007acc;--vscode-statusBar-noFolderBackground: #68217a;--vscode-statusBar-focusBorder: #ffffff;--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, .18);--vscode-statusBarItem-focusBorder: #ffffff;--vscode-statusBarItem-hoverBackground: rgba(0, 0, 0, .12);--vscode-statusBarItem-hoverForeground: #ffffff;--vscode-statusBarItem-compactHoverBackground: rgba(0, 0, 0, .12);--vscode-statusBarItem-prominentForeground: #ffffff;--vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, .5);--vscode-statusBarItem-prominentHoverForeground: #ffffff;--vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, .12);--vscode-statusBarItem-errorBackground: #c72e0f;--vscode-statusBarItem-errorForeground: #ffffff;--vscode-statusBarItem-errorHoverForeground: #ffffff;--vscode-statusBarItem-errorHoverBackground: rgba(0, 0, 0, .12);--vscode-statusBarItem-warningBackground: #725102;--vscode-statusBarItem-warningForeground: #ffffff;--vscode-statusBarItem-warningHoverForeground: #ffffff;--vscode-statusBarItem-warningHoverBackground: rgba(0, 0, 0, .12);--vscode-activityBar-background: #2c2c2c;--vscode-activityBar-foreground: #ffffff;--vscode-activityBar-inactiveForeground: rgba(255, 255, 255, .4);--vscode-activityBar-activeBorder: #ffffff;--vscode-activityBar-dropBorder: #ffffff;--vscode-activityBarBadge-background: #007acc;--vscode-activityBarBadge-foreground: #ffffff;--vscode-activityBarTop-foreground: #424242;--vscode-activityBarTop-activeBorder: #424242;--vscode-activityBarTop-inactiveForeground: rgba(66, 66, 66, .75);--vscode-activityBarTop-dropBorder: #424242;--vscode-panel-background: #ffffff;--vscode-panel-border: rgba(128, 128, 128, .35);--vscode-panelTitle-activeForeground: #424242;--vscode-panelTitle-inactiveForeground: rgba(66, 66, 66, .75);--vscode-panelTitle-activeBorder: #424242;--vscode-panelTitleBadge-background: #007acc;--vscode-panelTitleBadge-foreground: #ffffff;--vscode-panelInput-border: #dddddd;--vscode-panel-dropBorder: #424242;--vscode-panelSection-dropBackground: rgba(38, 119, 203, .18);--vscode-panelSectionHeader-background: rgba(128, 128, 128, .2);--vscode-panelSection-border: rgba(128, 128, 128, .35);--vscode-panelStickyScroll-background: #ffffff;--vscode-panelStickyScroll-shadow: #dddddd;--vscode-profileBadge-background: #c4c4c4;--vscode-profileBadge-foreground: #333333;--vscode-statusBarItem-remoteBackground: #16825d;--vscode-statusBarItem-remoteForeground: #ffffff;--vscode-statusBarItem-remoteHoverForeground: #ffffff;--vscode-statusBarItem-remoteHoverBackground: rgba(0, 0, 0, .12);--vscode-statusBarItem-offlineBackground: #6c1717;--vscode-statusBarItem-offlineForeground: #ffffff;--vscode-statusBarItem-offlineHoverForeground: #ffffff;--vscode-statusBarItem-offlineHoverBackground: rgba(0, 0, 0, .12);--vscode-extensionBadge-remoteBackground: #007acc;--vscode-extensionBadge-remoteForeground: #ffffff;--vscode-sideBar-background: #f3f3f3;--vscode-sideBarTitle-background: #f3f3f3;--vscode-sideBarTitle-foreground: #6f6f6f;--vscode-sideBar-dropBackground: rgba(38, 119, 203, .18);--vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);--vscode-sideBarSectionHeader-border: rgba(97, 97, 97, .19);--vscode-sideBarActivityBarTop-border: rgba(97, 97, 97, .19);--vscode-sideBarStickyScroll-background: #f3f3f3;--vscode-sideBarStickyScroll-shadow: #dddddd;--vscode-titleBar-activeForeground: #333333;--vscode-titleBar-inactiveForeground: rgba(51, 51, 51, .6);--vscode-titleBar-activeBackground: #dddddd;--vscode-titleBar-inactiveBackground: rgba(221, 221, 221, .6);--vscode-menubar-selectionForeground: #333333;--vscode-menubar-selectionBackground: rgba(184, 184, 184, .31);--vscode-commandCenter-foreground: #333333;--vscode-commandCenter-activeForeground: #333333;--vscode-commandCenter-inactiveForeground: rgba(51, 51, 51, .6);--vscode-commandCenter-background: rgba(0, 0, 0, .05);--vscode-commandCenter-activeBackground: rgba(0, 0, 0, .08);--vscode-commandCenter-border: rgba(51, 51, 51, .2);--vscode-commandCenter-activeBorder: rgba(51, 51, 51, .3);--vscode-commandCenter-inactiveBorder: rgba(51, 51, 51, .15);--vscode-notificationCenter-border: #d4d4d4;--vscode-notificationToast-border: #d4d4d4;--vscode-notifications-foreground: #616161;--vscode-notifications-background: #f3f3f3;--vscode-notificationLink-foreground: #006ab1;--vscode-notificationCenterHeader-background: #e7e7e7;--vscode-notifications-border: #e7e7e7;--vscode-notificationsErrorIcon-foreground: #e51400;--vscode-notificationsWarningIcon-foreground: #bf8803;--vscode-notificationsInfoIcon-foreground: #0063d3;--vscode-editorGutter-modifiedBackground: #2090d3;--vscode-editorGutter-modifiedSecondaryBackground: #aad8f2;--vscode-editorGutter-addedBackground: #48985d;--vscode-editorGutter-addedSecondaryBackground: #a7d5b3;--vscode-editorGutter-deletedBackground: #e51400;--vscode-editorGutter-deletedSecondaryBackground: #ff3d2b;--vscode-minimapGutter-modifiedBackground: #2090d3;--vscode-minimapGutter-addedBackground: #48985d;--vscode-minimapGutter-deletedBackground: #e51400;--vscode-editorOverviewRuler-modifiedForeground: rgba(32, 144, 211, .6);--vscode-editorOverviewRuler-addedForeground: rgba(72, 152, 93, .6);--vscode-editorOverviewRuler-deletedForeground: rgba(229, 20, 0, .6);--vscode-editorGutter-itemGlyphForeground: #000000;--vscode-editorGutter-itemBackground: #d5d8e9;--vscode-terminal-foreground: #333333;--vscode-terminal-selectionBackground: #add6ff;--vscode-terminal-inactiveSelectionBackground: #e5ebf1;--vscode-terminalCommandDecoration-defaultBackground: rgba(0, 0, 0, .25);--vscode-terminalCommandDecoration-successBackground: #2090d3;--vscode-terminalCommandDecoration-errorBackground: #e51400;--vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, .8);--vscode-terminal-border: rgba(128, 128, 128, .35);--vscode-terminalOverviewRuler-border: rgba(127, 127, 127, .3);--vscode-terminal-findMatchBackground: #a8ac94;--vscode-terminal-hoverHighlightBackground: rgba(173, 214, 255, .07);--vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, .33);--vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, .49);--vscode-terminal-dropBackground: rgba(38, 119, 203, .18);--vscode-terminal-initialHintForeground: rgba(0, 0, 0, .47);--vscode-scmGraph-historyItemRefColor: #0063d3;--vscode-scmGraph-historyItemRemoteRefColor: #652d90;--vscode-scmGraph-historyItemBaseRefColor: #ea5c00;--vscode-scmGraph-historyItemHoverDefaultLabelForeground: #616161;--vscode-scmGraph-historyItemHoverDefaultLabelBackground: #c4c4c4;--vscode-scmGraph-historyItemHoverLabelForeground: #ffffff;--vscode-scmGraph-historyItemHoverAdditionsForeground: #587c0c;--vscode-scmGraph-historyItemHoverDeletionsForeground: #ad0707;--vscode-scmGraph-foreground1: #ffb000;--vscode-scmGraph-foreground2: #dc267f;--vscode-scmGraph-foreground3: #994f00;--vscode-scmGraph-foreground4: #40b0a6;--vscode-scmGraph-foreground5: #b66dff;--vscode-commentsView-resolvedIcon: rgba(97, 97, 97, .5);--vscode-commentsView-unresolvedIcon: #0090f1;--vscode-editorCommentsWidget-replyInputBackground: #f3f3f3;--vscode-editorCommentsWidget-resolvedBorder: rgba(97, 97, 97, .5);--vscode-editorCommentsWidget-unresolvedBorder: #0090f1;--vscode-editorCommentsWidget-rangeBackground: rgba(0, 144, 241, .1);--vscode-editorCommentsWidget-rangeActiveBackground: rgba(0, 144, 241, .1);--vscode-editorGutter-commentRangeForeground: #d5d8e9;--vscode-editorOverviewRuler-commentForeground: #d5d8e9;--vscode-editorOverviewRuler-commentUnresolvedForeground: #d5d8e9;--vscode-editorOverviewRuler-commentDraftForeground: #d5d8e9;--vscode-editorGutter-commentGlyphForeground: #000000;--vscode-editorGutter-commentUnresolvedGlyphForeground: #000000;--vscode-editorGutter-commentDraftGlyphForeground: #000000;--vscode-agentSessionReadIndicator-foreground: rgba(97, 97, 97, .15);--vscode-agentSessionSelectedBadge-border: rgba(255, 255, 255, .3);--vscode-agentSessionSelectedUnfocusedBadge-border: rgba(97, 97, 97, .3);--vscode-ports-iconRunningProcessForeground: #369432;--vscode-settings-headerForeground: #444444;--vscode-settings-settingsHeaderHoverForeground: rgba(68, 68, 68, .7);--vscode-settings-modifiedItemIndicator: #66afe0;--vscode-settings-headerBorder: rgba(128, 128, 128, .35);--vscode-settings-sashBorder: rgba(128, 128, 128, .35);--vscode-settings-dropdownBackground: #ffffff;--vscode-settings-dropdownForeground: #616161;--vscode-settings-dropdownBorder: #cecece;--vscode-settings-dropdownListBorder: #c8c8c8;--vscode-settings-checkboxBackground: #ffffff;--vscode-settings-checkboxForeground: #616161;--vscode-settings-checkboxBorder: #919191;--vscode-settings-textInputBackground: #ffffff;--vscode-settings-textInputForeground: #616161;--vscode-settings-textInputBorder: #cecece;--vscode-settings-numberInputBackground: #ffffff;--vscode-settings-numberInputForeground: #616161;--vscode-settings-numberInputBorder: #cecece;--vscode-settings-focusedRowBackground: rgba(232, 232, 232, .6);--vscode-settings-rowHoverBackground: rgba(232, 232, 232, .3);--vscode-settings-focusedRowBorder: #0090f1;--vscode-keybindingTable-headerBackground: rgba(97, 97, 97, .04);--vscode-keybindingTable-rowsBackground: rgba(97, 97, 97, .04);--vscode-extensionButton-foreground: #616161;--vscode-extensionButton-hoverBackground: #e8e8e8;--vscode-extensionButton-border: rgba(97, 97, 97, .2);--vscode-extensionButton-separator: rgba(255, 255, 255, .4);--vscode-extensionButton-prominentBackground: #007acc;--vscode-extensionButton-prominentForeground: #ffffff;--vscode-extensionButton-prominentHoverBackground: #0062a3;--vscode-debugToolBar-background: #f3f3f3;--vscode-debugIcon-startForeground: #388a34;--vscode-notebook-cellBorderColor: #e8e8e8;--vscode-notebook-focusedEditorBorder: #0090f1;--vscode-notebookStatusSuccessIcon-foreground: #388a34;--vscode-notebookEditorOverviewRuler-runningCellForeground: #388a34;--vscode-notebookStatusErrorIcon-foreground: #a1260d;--vscode-notebookStatusRunningIcon-foreground: #616161;--vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, .35);--vscode-notebook-selectedCellBackground: rgba(200, 221, 241, .31);--vscode-notebook-selectedCellBorder: #e8e8e8;--vscode-notebook-focusedCellBorder: #0090f1;--vscode-notebook-inactiveFocusedCellBorder: #e8e8e8;--vscode-notebook-cellStatusBarItemHoverBackground: rgba(0, 0, 0, .08);--vscode-notebook-cellInsertionIndicator: #0090f1;--vscode-notebookScrollbarSlider-background: rgba(100, 100, 100, .4);--vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, .7);--vscode-notebookScrollbarSlider-activeBackground: rgba(0, 0, 0, .6);--vscode-notebook-symbolHighlightBackground: rgba(253, 255, 0, .2);--vscode-notebook-cellEditorBackground: #f3f3f3;--vscode-notebook-editorBackground: #ffffff;--vscode-inlineChat-foreground: #616161;--vscode-inlineChat-background: #f3f3f3;--vscode-inlineChat-border: #c8c8c8;--vscode-inlineChat-shadow: rgba(0, 0, 0, .16);--vscode-inlineChatInput-border: #c8c8c8;--vscode-inlineChatInput-focusBorder: #0090f1;--vscode-inlineChatInput-placeholderForeground: #767676;--vscode-inlineChatInput-background: #ffffff;--vscode-inlineChatDiff-inserted: rgba(23, 149, 44, .19);--vscode-editorOverviewRuler-inlineChatInserted: rgba(23, 149, 44, .3);--vscode-editorMinimap-inlineChatInserted: rgba(23, 149, 44, .3);--vscode-inlineChatDiff-removed: rgba(255, 0, 0, .17);--vscode-editorOverviewRuler-inlineChatRemoved: rgba(255, 0, 0, .28);--vscode-multiDiffEditor-headerBackground: #ececec;--vscode-multiDiffEditor-background: #ffffff;--vscode-multiDiffEditor-border: #cccccc;--vscode-extensionIcon-verifiedForeground: #006ab1;--vscode-chat-requestBorder: rgba(0, 0, 0, .1);--vscode-chat-requestBackground: rgba(255, 255, 255, .62);--vscode-chat-slashCommandBackground: rgba(173, 206, 255, .48);--vscode-chat-slashCommandForeground: #26569e;--vscode-chat-avatarBackground: #f2f2f2;--vscode-chat-avatarForeground: #616161;--vscode-chat-editedFileForeground: #895503;--vscode-chat-requestCodeBorder: rgba(14, 99, 156, .25);--vscode-chat-requestBubbleBackground: rgba(173, 214, 255, .3);--vscode-chat-requestBubbleHoverBackground: rgba(173, 214, 255, .6);--vscode-chat-checkpointSeparator: #a9a9a9;--vscode-chat-linesAddedForeground: #107c10;--vscode-chat-linesRemovedForeground: #bc2f32;--vscode-chat-thinkingShimmer: #000000;--vscode-extensionIcon-starForeground: #df6100;--vscode-extensionIcon-preReleaseForeground: #1d9271;--vscode-extensionIcon-sponsorForeground: #b51e78;--vscode-extensionIcon-privateForeground: rgba(0, 0, 0, .38);--vscode-debugExceptionWidget-border: #a31515;--vscode-debugExceptionWidget-background: #f1dfde;--vscode-editor-inlineValuesForeground: rgba(0, 0, 0, .5);--vscode-editor-inlineValuesBackground: rgba(255, 200, 0, .2);--vscode-debugIcon-breakpointForeground: #e51400;--vscode-debugIcon-breakpointDisabledForeground: #848484;--vscode-debugIcon-breakpointUnverifiedForeground: #848484;--vscode-debugIcon-breakpointCurrentStackframeForeground: #be8700;--vscode-debugIcon-breakpointStackframeForeground: #89d185;--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 102, .45);--vscode-editor-focusedStackFrameHighlightBackground: rgba(206, 231, 206, .45);--vscode-minimap-chatEditHighlight: rgba(255, 255, 255, .6);--vscode-chatManagement-sashBorder: rgba(128, 128, 128, .35);--vscode-gauge-foreground: #007acc;--vscode-gauge-background: rgba(0, 122, 204, .3);--vscode-gauge-warningForeground: #b89500;--vscode-gauge-warningBackground: rgba(184, 149, 0, .3);--vscode-gauge-errorForeground: #be1100;--vscode-gauge-errorBackground: rgba(190, 17, 0, .3);--vscode-mcpIcon-starForeground: #df6100;--vscode-interactive-activeCodeBorder: #007acc;--vscode-interactive-inactiveCodeBorder: #e4e6f1;--vscode-testing-iconFailed: #f14c4c;--vscode-testing-iconErrored: #f14c4c;--vscode-testing-iconPassed: #73c991;--vscode-testing-runAction: #73c991;--vscode-testing-iconQueued: #cca700;--vscode-testing-iconUnset: #848484;--vscode-testing-iconSkipped: #848484;--vscode-testing-peekBorder: #e51400;--vscode-testing-messagePeekBorder: #0063d3;--vscode-testing-peekHeaderBackground: rgba(229, 20, 0, .1);--vscode-testing-messagePeekHeaderBackground: rgba(0, 99, 211, .1);--vscode-testing-coveredBackground: rgba(23, 149, 44, .37);--vscode-testing-coveredBorder: rgba(23, 149, 44, .28);--vscode-testing-coveredGutterBackground: rgba(23, 149, 44, .22);--vscode-testing-uncoveredBranchBackground: #ff4d4d;--vscode-testing-uncoveredBackground: rgba(255, 0, 0, .35);--vscode-testing-uncoveredBorder: rgba(255, 0, 0, .26);--vscode-testing-uncoveredGutterBackground: rgba(255, 0, 0, .52);--vscode-testing-coverCountBadgeBackground: #c4c4c4;--vscode-testing-coverCountBadgeForeground: #333333;--vscode-testing-message\.error\.badgeBackground: #e51400;--vscode-testing-message\.error\.badgeBorder: #e51400;--vscode-testing-message\.error\.badgeForeground: #ffffff;--vscode-testing-message\.info\.decorationForeground: rgba(0, 0, 0, .5);--vscode-testing-iconErrored\.retired: rgba(241, 76, 76, .7);--vscode-testing-iconFailed\.retired: rgba(241, 76, 76, .7);--vscode-testing-iconPassed\.retired: rgba(115, 201, 145, .7);--vscode-testing-iconQueued\.retired: rgba(204, 167, 0, .7);--vscode-testing-iconUnset\.retired: rgba(132, 132, 132, .7);--vscode-testing-iconSkipped\.retired: rgba(132, 132, 132, .7);--vscode-searchEditor-textInputBorder: #cecece;--vscode-statusBar-debuggingBackground: #cc6633;--vscode-statusBar-debuggingForeground: #ffffff;--vscode-commandCenter-debuggingBackground: rgba(204, 102, 51, .26);--vscode-debugTokenExpression-name: #9b46b0;--vscode-debugTokenExpression-type: #4a90e2;--vscode-debugTokenExpression-value: rgba(108, 108, 108, .8);--vscode-debugTokenExpression-string: #a31515;--vscode-debugTokenExpression-boolean: #0000ff;--vscode-debugTokenExpression-number: #098658;--vscode-debugTokenExpression-error: #e51400;--vscode-debugView-exceptionLabelForeground: #ffffff;--vscode-debugView-exceptionLabelBackground: #a31515;--vscode-debugView-stateLabelForeground: #616161;--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, .27);--vscode-debugView-valueChangedHighlight: #569cd6;--vscode-debugConsole-infoForeground: #0063d3;--vscode-debugConsole-warningForeground: #bf8803;--vscode-debugConsole-errorForeground: #a1260d;--vscode-debugConsole-sourceForeground: #616161;--vscode-debugConsoleInputIcon-foreground: #616161;--vscode-debugIcon-pauseForeground: #007acc;--vscode-debugIcon-stopForeground: #a1260d;--vscode-debugIcon-disconnectForeground: #a1260d;--vscode-debugIcon-restartForeground: #388a34;--vscode-debugIcon-stepOverForeground: #007acc;--vscode-debugIcon-stepIntoForeground: #007acc;--vscode-debugIcon-stepOutForeground: #007acc;--vscode-debugIcon-continueForeground: #007acc;--vscode-debugIcon-stepBackForeground: #007acc;--vscode-mergeEditor-change\.background: rgba(155, 185, 85, .2);--vscode-mergeEditor-change\.word\.background: rgba(156, 204, 44, .4);--vscode-mergeEditor-changeBase\.background: #ffcccc;--vscode-mergeEditor-changeBase\.word\.background: #ffa3a3;--vscode-mergeEditor-conflict\.unhandledUnfocused\.border: #ffa600;--vscode-mergeEditor-conflict\.unhandledFocused\.border: #ffa600;--vscode-mergeEditor-conflict\.handledUnfocused\.border: rgba(134, 134, 134, .29);--vscode-mergeEditor-conflict\.handledFocused\.border: rgba(193, 193, 193, .8);--vscode-mergeEditor-conflict\.handled\.minimapOverViewRuler: rgba(173, 172, 168, .93);--vscode-mergeEditor-conflict\.unhandled\.minimapOverViewRuler: #fcba03;--vscode-mergeEditor-conflictingLines\.background: rgba(255, 234, 0, .28);--vscode-mergeEditor-conflict\.input1\.background: rgba(64, 200, 174, .2);--vscode-mergeEditor-conflict\.input2\.background: rgba(64, 166, 255, .2);--vscode-terminal-ansiBlack: #000000;--vscode-terminal-ansiRed: #cd3131;--vscode-terminal-ansiGreen: #107c10;--vscode-terminal-ansiYellow: #949800;--vscode-terminal-ansiBlue: #0451a5;--vscode-terminal-ansiMagenta: #bc05bc;--vscode-terminal-ansiCyan: #0598bc;--vscode-terminal-ansiWhite: #555555;--vscode-terminal-ansiBrightBlack: #666666;--vscode-terminal-ansiBrightRed: #cd3131;--vscode-terminal-ansiBrightGreen: #14ce14;--vscode-terminal-ansiBrightYellow: #b5ba00;--vscode-terminal-ansiBrightBlue: #0451a5;--vscode-terminal-ansiBrightMagenta: #bc05bc;--vscode-terminal-ansiBrightCyan: #0598bc;--vscode-terminal-ansiBrightWhite: #a5a5a5;--vscode-simpleFindWidget-sashBorder: #c8c8c8;--vscode-terminalStickyScrollHover-background: #f0f0f0;--vscode-terminalCommandGuide-foreground: #e4e6f1;--vscode-terminalSymbolIcon-flagForeground: #d67e00;--vscode-terminalSymbolIcon-aliasForeground: #652d90;--vscode-terminalSymbolIcon-optionValueForeground: #007acc;--vscode-terminalSymbolIcon-methodForeground: #652d90;--vscode-terminalSymbolIcon-argumentForeground: #007acc;--vscode-terminalSymbolIcon-optionForeground: #d67e00;--vscode-terminalSymbolIcon-fileForeground: #616161;--vscode-terminalSymbolIcon-folderForeground: #616161;--vscode-terminalSymbolIcon-commitForeground: #616161;--vscode-terminalSymbolIcon-branchForeground: #616161;--vscode-terminalSymbolIcon-tagForeground: #616161;--vscode-terminalSymbolIcon-stashForeground: #616161;--vscode-terminalSymbolIcon-remoteForeground: #616161;--vscode-terminalSymbolIcon-pullRequestForeground: #616161;--vscode-terminalSymbolIcon-pullRequestDoneForeground: #616161;--vscode-terminalSymbolIcon-symbolicLinkFileForeground: #616161;--vscode-terminalSymbolIcon-symbolicLinkFolderForeground: #616161;--vscode-terminalSymbolIcon-symbolText: #616161;--vscode-markdownAlert-note\.foreground: #0063d3;--vscode-markdownAlert-tip\.foreground: #388a34;--vscode-markdownAlert-important\.foreground: #652d90;--vscode-markdownAlert-warning\.foreground: #bf8803;--vscode-markdownAlert-caution\.foreground: #e51400;--vscode-welcomePage-tileBackground: #f3f3f3;--vscode-welcomePage-tileHoverBackground: #dbdbdb;--vscode-welcomePage-tileBorder: rgba(0, 0, 0, .1);--vscode-welcomePage-progress\.background: #ffffff;--vscode-welcomePage-progress\.foreground: #006ab1;--vscode-walkthrough-stepTitle\.foreground: #000000;--vscode-walkThrough-embeddedEditorBackground: #f4f4f4;--vscode-profiles-sashBorder: rgba(128, 128, 128, .35);--vscode-gitDecoration-addedResourceForeground: #587c0c;--vscode-gitDecoration-modifiedResourceForeground: #895503;--vscode-gitDecoration-deletedResourceForeground: #ad0707;--vscode-gitDecoration-renamedResourceForeground: #007100;--vscode-gitDecoration-untrackedResourceForeground: #007100;--vscode-gitDecoration-ignoredResourceForeground: #8e8e90;--vscode-gitDecoration-stageModifiedResourceForeground: #895503;--vscode-gitDecoration-stageDeletedResourceForeground: #ad0707;--vscode-gitDecoration-conflictingResourceForeground: #ad0707;--vscode-gitDecoration-submoduleResourceForeground: #1258a7;--vscode-git-blame\.editorDecorationForeground: #969696;--vscode-gitlens-gutterBackgroundColor: rgba(0, 0, 0, .05);--vscode-gitlens-gutterForegroundColor: #747474;--vscode-gitlens-gutterUncommittedForegroundColor: rgba(0, 188, 242, .6);--vscode-gitlens-trailingLineBackgroundColor: rgba(0, 0, 0, 0);--vscode-gitlens-trailingLineForegroundColor: rgba(153, 153, 153, .35);--vscode-gitlens-lineHighlightBackgroundColor: rgba(0, 188, 242, .2);--vscode-gitlens-lineHighlightOverviewRulerColor: rgba(0, 188, 242, .6);--vscode-gitlens-openAutolinkedIssueIconColor: #1a7f37;--vscode-gitlens-closedAutolinkedIssueIconColor: #8250df;--vscode-gitlens-closedPullRequestIconColor: #cf222e;--vscode-gitlens-openPullRequestIconColor: #1a7f37;--vscode-gitlens-mergedPullRequestIconColor: #8250df;--vscode-gitlens-unpublishedChangesIconColor: #35b15e;--vscode-gitlens-unpublishedCommitIconColor: #35b15e;--vscode-gitlens-unpulledChangesIconColor: #b15e35;--vscode-gitlens-decorations\.addedForegroundColor: #587c0c;--vscode-gitlens-decorations\.copiedForegroundColor: #007100;--vscode-gitlens-decorations\.deletedForegroundColor: #ad0707;--vscode-gitlens-decorations\.ignoredForegroundColor: #8e8e90;--vscode-gitlens-decorations\.modifiedForegroundColor: #895503;--vscode-gitlens-decorations\.untrackedForegroundColor: #007100;--vscode-gitlens-decorations\.renamedForegroundColor: #007100;--vscode-gitlens-decorations\.branchAheadForegroundColor: #35b15e;--vscode-gitlens-decorations\.branchBehindForegroundColor: #b15e35;--vscode-gitlens-decorations\.branchDivergedForegroundColor: #d8af1b;--vscode-gitlens-decorations\.branchMissingUpstreamForegroundColor: #ad0707;--vscode-gitlens-decorations\.statusMergingOrRebasingConflictForegroundColor: #ad0707;--vscode-gitlens-decorations\.statusMergingOrRebasingForegroundColor: #d8af1b;--vscode-gitlens-decorations\.workspaceRepoMissingForegroundColor: #949494;--vscode-gitlens-decorations\.workspaceCurrentForegroundColor: #35b15e;--vscode-gitlens-decorations\.workspaceRepoOpenForegroundColor: #35b15e;--vscode-gitlens-decorations\.worktreeHasUncommittedChangesForegroundColor: #895503;--vscode-gitlens-decorations\.worktreeMissingForegroundColor: #ad0707;--vscode-gitlens-graphLane1Color: #15a0bf;--vscode-gitlens-graphLane2Color: #0669f7;--vscode-gitlens-graphLane3Color: #8e00c2;--vscode-gitlens-graphLane4Color: #c517b6;--vscode-gitlens-graphLane5Color: #d90171;--vscode-gitlens-graphLane6Color: #cd0101;--vscode-gitlens-graphLane7Color: #f25d2e;--vscode-gitlens-graphLane8Color: #f2ca33;--vscode-gitlens-graphLane9Color: #7bd938;--vscode-gitlens-graphLane10Color: #2ece9d;--vscode-gitlens-graphChangesColumnAddedColor: #2da44e;--vscode-gitlens-graphChangesColumnDeletedColor: #cf222e;--vscode-gitlens-graphMinimapMarkerHeadColor: #04c814;--vscode-gitlens-graphScrollMarkerHeadColor: #04c814;--vscode-gitlens-graphMinimapMarkerUpstreamColor: #8cd993;--vscode-gitlens-graphScrollMarkerUpstreamColor: #8cd993;--vscode-gitlens-graphMinimapMarkerHighlightsColor: #f5cc00;--vscode-gitlens-graphScrollMarkerHighlightsColor: #f5cc00;--vscode-gitlens-graphMinimapMarkerLocalBranchesColor: #3095e8;--vscode-gitlens-graphScrollMarkerLocalBranchesColor: #3095e8;--vscode-gitlens-graphMinimapMarkerPullRequestsColor: #ff8f18;--vscode-gitlens-graphScrollMarkerPullRequestsColor: #ff8f18;--vscode-gitlens-graphMinimapMarkerRemoteBranchesColor: #67ace4;--vscode-gitlens-graphScrollMarkerRemoteBranchesColor: #67ace4;--vscode-gitlens-graphMinimapMarkerStashesColor: #e467e4;--vscode-gitlens-graphScrollMarkerStashesColor: #e467e4;--vscode-gitlens-graphMinimapMarkerTagsColor: #d2a379;--vscode-gitlens-graphScrollMarkerTagsColor: #d2a379;--vscode-gitlens-launchpadIndicatorMergeableColor: #42c954;--vscode-gitlens-launchpadIndicatorMergeableHoverColor: #42c954;--vscode-gitlens-launchpadIndicatorBlockedColor: #ad0707;--vscode-gitlens-launchpadIndicatorBlockedHoverColor: #ad0707;--vscode-gitlens-launchpadIndicatorAttentionColor: #cc9b15;--vscode-gitlens-launchpadIndicatorAttentionHoverColor: #cc9b15;--vscode-issues-newIssueDecoration: rgba(0, 0, 0, .28);--vscode-issues-open: #3fb950;--vscode-issues-closed: #8957e5;--vscode-github-issues\.closed: #8957e5;--vscode-pullRequests-merged: #8957e5;--vscode-pullRequests-draft: #6e7681;--vscode-pullRequests-open: #3fb950;--vscode-pullRequests-closed: #cb2431;--vscode-pullRequests-notification: #0063d3;--vscode-testExplorer-errorDecorationBackground: #f2dede;--vscode-remoteHub-decorations\.addedForegroundColor: #587c0c;--vscode-remoteHub-decorations\.modifiedForegroundColor: #895503;--vscode-remoteHub-decorations\.deletedForegroundColor: #ad0707;--vscode-remoteHub-decorations\.submoduleForegroundColor: #1258a7;--vscode-remoteHub-decorations\.conflictForegroundColor: #ad0707;--vscode-remoteHub-decorations\.incomingAddedForegroundColor: #587c0c;--vscode-remoteHub-decorations\.incomingModifiedForegroundColor: #895503;--vscode-remoteHub-decorations\.incomingDeletedForegroundColor: #ad0707;--vscode-remoteHub-decorations\.incomingRenamedForegroundColor: #007100;--vscode-remoteHub-decorations\.possibleConflictForegroundColor: #855f00;--vscode-remoteHub-decorations\.ignoredResourceForeground: #8e8e90;--vscode-remoteHub-decorations\.workspaceRepositoriesView\.hasUncommittedChangesForegroundColor: #895503;--vscode-editor-font-feature-settings: "liga" on, "calt" on}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export * from './core/index.js';
|
|
2
|
+
export { Explorer, ExplorerWithDefaults, ExplorerModel } from './components/index.js';
|
|
3
|
+
export type { ExplorerTreeNode } from './components/index.js';
|
|
4
|
+
export { toExplorerTree } from './components/index.js';
|
|
5
|
+
export { TitleBar, TitleBarButton, LeftSidebar, RightSidebar, TreeView, TreeItem, } from './components/index.js';
|
|
6
|
+
export * from './components/icons.js';
|
|
7
|
+
export { styles, mergeStyles } from './components/index.js';
|
|
8
|
+
export interface FixtureModules {
|
|
9
|
+
[path: string]: {
|
|
10
|
+
default?: unknown;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* The main Component Explorer application.
|
|
15
|
+
* Create with `new ExplorerApp(element, fixtureModules)`.
|
|
16
|
+
*/
|
|
17
|
+
export declare class ExplorerApp {
|
|
18
|
+
private readonly _root;
|
|
19
|
+
private readonly _registry;
|
|
20
|
+
constructor(element: HTMLElement, fixtureModules: FixtureModules);
|
|
21
|
+
private _populateRegistry;
|
|
22
|
+
/**
|
|
23
|
+
* Updates the fixtures. The UI will update automatically since the registry is observable.
|
|
24
|
+
*/
|
|
25
|
+
updateFixtures(fixtureModules: FixtureModules): void;
|
|
26
|
+
/**
|
|
27
|
+
* Unmounts the explorer and cleans up resources.
|
|
28
|
+
*/
|
|
29
|
+
dispose(): void;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,iBAAiB,CAAC;AAGhC,OAAO,cAAc,CAAC;AAEtB,OAAO,uCAAuC,CAAC;AAC/C,OAAO,wCAAwC,CAAC;AAMhD,OAAO,EAAE,QAAQ,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtF,YAAY,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAGvD,OAAO,EACL,QAAQ,EACR,cAAc,EACd,WAAW,EACX,YAAY,EACZ,QAAQ,EACR,QAAQ,GACT,MAAM,uBAAuB,CAAC;AAG/B,cAAc,uBAAuB,CAAC;AAGtC,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAE5D,MAAM,WAAW,cAAc;IAC7B,CAAC,IAAI,EAAE,MAAM,GAAG;QAAE,OAAO,CAAC,EAAE,OAAO,CAAA;KAAE,CAAC;CACvC;AAED;;;GAGG;AACH,qBAAa,WAAW;IACtB,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAgC;IACtD,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAyB;gBAEvC,OAAO,EAAE,WAAW,EAAE,cAAc,EAAE,cAAc;IAMhE,OAAO,CAAC,iBAAiB;IAUzB;;OAEG;IACH,cAAc,CAAC,cAAc,EAAE,cAAc,GAAG,IAAI;IAIpD;;OAEG;IACH,OAAO,IAAI,IAAI;CAGhB"}
|