@forgeax/interface 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/NOTICE +9 -0
- package/README.md +111 -0
- package/dist/package/browser/App.css +192 -0
- package/dist/package/browser/App.d.ts +11 -0
- package/dist/package/browser/App.js +11 -0
- package/dist/package/browser/ApplicationDetachedShell.d.ts +13 -0
- package/dist/package/browser/ApplicationDetachedShell.js +10 -0
- package/dist/package/browser/ApplicationShell.d.ts +19 -0
- package/dist/package/browser/ApplicationShell.js +62 -0
- package/dist/package/browser/app-kit.d.ts +1 -0
- package/dist/package/browser/app-kit.js +4 -0
- package/dist/package/browser/appHostBootstrap.d.ts +16 -0
- package/dist/package/browser/appHostBootstrap.js +145 -0
- package/dist/package/browser/application.d.ts +35 -0
- package/dist/package/browser/application.js +64 -0
- package/dist/package/browser/assets/icons/agent-icon.png +0 -0
- package/dist/package/browser/assets/icons/at.svg +3 -0
- package/dist/package/browser/assets/icons/chevron-collapse.svg +3 -0
- package/dist/package/browser/assets/icons/chevron-expand.svg +3 -0
- package/dist/package/browser/assets/icons/chevron-up.svg +3 -0
- package/dist/package/browser/assets/icons/close-x.svg +3 -0
- package/dist/package/browser/assets/icons/close.svg +3 -0
- package/dist/package/browser/assets/icons/copy.svg +4 -0
- package/dist/package/browser/assets/icons/edit.svg +3 -0
- package/dist/package/browser/assets/icons/fullscreen.svg +3 -0
- package/dist/package/browser/assets/icons/pause.svg +4 -0
- package/dist/package/browser/assets/icons/play.svg +3 -0
- package/dist/package/browser/assets/icons/select.svg +3 -0
- package/dist/package/browser/assets/icons/sendMessage-enable.svg +4 -0
- package/dist/package/browser/assets/icons/sendMessage.svg +4 -0
- package/dist/package/browser/assets/icons/status-done.svg +11 -0
- package/dist/package/browser/assets/icons/status-running.svg +10 -0
- package/dist/package/browser/assets/icons/status-waiting.svg +10 -0
- package/dist/package/browser/assets/icons/tool-execute-script.svg +3 -0
- package/dist/package/browser/assets/icons/tool-other.svg +10 -0
- package/dist/package/browser/assets/icons/tool-read-file.svg +3 -0
- package/dist/package/browser/assets/icons/tool-resource-search.svg +3 -0
- package/dist/package/browser/assets/icons/tool-task-todo.svg +4 -0
- package/dist/package/browser/assets/icons/tool-write-file.svg +3 -0
- package/dist/package/browser/boot/SettingsSection.d.ts +14 -0
- package/dist/package/browser/boot/SettingsSection.js +82 -0
- package/dist/package/browser/boot/broadcast.d.ts +2 -0
- package/dist/package/browser/boot/broadcast.js +32 -0
- package/dist/package/browser/boot/driver.d.ts +22 -0
- package/dist/package/browser/boot/driver.js +47 -0
- package/dist/package/browser/boot/store.d.ts +29 -0
- package/dist/package/browser/boot/store.js +114 -0
- package/dist/package/browser/boot/themes.d.ts +19 -0
- package/dist/package/browser/boot/themes.js +21 -0
- package/dist/package/browser/boot/types.d.ts +22 -0
- package/dist/package/browser/boot/types.js +30 -0
- package/dist/package/browser/brand/BrandProvider.d.ts +19 -0
- package/dist/package/browser/brand/BrandProvider.js +35 -0
- package/dist/package/browser/brand/index.d.ts +4 -0
- package/dist/package/browser/brand/index.js +3 -0
- package/dist/package/browser/brand/runtime.d.ts +17 -0
- package/dist/package/browser/brand/runtime.js +71 -0
- package/dist/package/browser/brand/types.d.ts +77 -0
- package/dist/package/browser/brand/types.js +9 -0
- package/dist/package/browser/components/ActivityRail/ActivityRail.css +294 -0
- package/dist/package/browser/components/ActivityRail/ActivityRail.d.ts +2 -0
- package/dist/package/browser/components/ActivityRail/ActivityRail.js +164 -0
- package/dist/package/browser/components/ActivityRail/activity-rail-model.d.ts +18 -0
- package/dist/package/browser/components/ActivityRail/activity-rail-model.js +144 -0
- package/dist/package/browser/components/AgentAvatar/AgentAvatar.d.ts +17 -0
- package/dist/package/browser/components/AgentAvatar/AgentAvatar.js +50 -0
- package/dist/package/browser/components/BuildBadge/BuildBadge.d.ts +1 -0
- package/dist/package/browser/components/BuildBadge/BuildBadge.js +279 -0
- package/dist/package/browser/components/Bus/BusAdminPanel.css +2425 -0
- package/dist/package/browser/components/Bus/BusAdminPanel.d.ts +2 -0
- package/dist/package/browser/components/Bus/BusAdminPanel.js +1385 -0
- package/dist/package/browser/components/Bus/CapabilityOverview.d.ts +3 -0
- package/dist/package/browser/components/Bus/CapabilityOverview.js +50 -0
- package/dist/package/browser/components/ChatColumn/ChatColumn.d.ts +2 -0
- package/dist/package/browser/components/ChatColumn/ChatColumn.js +18 -0
- package/dist/package/browser/components/ChatColumn/SessionTabStrip.d.ts +1 -0
- package/dist/package/browser/components/ChatColumn/SessionTabStrip.js +103 -0
- package/dist/package/browser/components/ChatColumn/useChatWidth.d.ts +5 -0
- package/dist/package/browser/components/ChatColumn/useChatWidth.js +13 -0
- package/dist/package/browser/components/CommandPalette/CommandPalette.css +199 -0
- package/dist/package/browser/components/CommandPalette/CommandPalette.d.ts +2 -0
- package/dist/package/browser/components/CommandPalette/CommandPalette.js +242 -0
- package/dist/package/browser/components/Confirm/ConfirmDialog.d.ts +2 -0
- package/dist/package/browser/components/Confirm/ConfirmDialog.js +113 -0
- package/dist/package/browser/components/ContextMenu/ContextMenu.d.ts +10 -0
- package/dist/package/browser/components/ContextMenu/ContextMenu.js +218 -0
- package/dist/package/browser/components/ContextMenu/menuRegistry.d.ts +18 -0
- package/dist/package/browser/components/ContextMenu/menuRegistry.js +152 -0
- package/dist/package/browser/components/DetachedSurface.d.ts +20 -0
- package/dist/package/browser/components/DetachedSurface.js +102 -0
- package/dist/package/browser/components/DockShell/DockPanelHost.d.ts +4 -0
- package/dist/package/browser/components/DockShell/DockPanelHost.js +7 -0
- package/dist/package/browser/components/DockShell/DockRegion.d.ts +7 -0
- package/dist/package/browser/components/DockShell/DockRegion.js +315 -0
- package/dist/package/browser/components/DockShell/DockShell.css +1018 -0
- package/dist/package/browser/components/DockShell/DockTab.d.ts +3 -0
- package/dist/package/browser/components/DockShell/DockTab.js +139 -0
- package/dist/package/browser/components/DockShell/ExtensionHostPanel.d.ts +9 -0
- package/dist/package/browser/components/DockShell/ExtensionHostPanel.js +68 -0
- package/dist/package/browser/components/DockShell/ExtensionRuntimeFrame.d.ts +14 -0
- package/dist/package/browser/components/DockShell/ExtensionRuntimeFrame.js +56 -0
- package/dist/package/browser/components/DockShell/PanelWindowingBoundary.d.ts +6 -0
- package/dist/package/browser/components/DockShell/PanelWindowingBoundary.js +9 -0
- package/dist/package/browser/components/DockShell/chatDockAnimation.d.ts +45 -0
- package/dist/package/browser/components/DockShell/chatDockAnimation.js +101 -0
- package/dist/package/browser/components/DockShell/chatDockFullscreen.d.ts +17 -0
- package/dist/package/browser/components/DockShell/chatDockFullscreen.js +22 -0
- package/dist/package/browser/components/DockShell/chatDockLayout.d.ts +10 -0
- package/dist/package/browser/components/DockShell/chatDockLayout.js +11 -0
- package/dist/package/browser/components/DockShell/compact-empty-dock-groups.d.ts +16 -0
- package/dist/package/browser/components/DockShell/compact-empty-dock-groups.js +28 -0
- package/dist/package/browser/components/DockShell/crossInstanceDrop.d.ts +1 -0
- package/dist/package/browser/components/DockShell/crossInstanceDrop.js +1 -0
- package/dist/package/browser/components/DockShell/dockResetEpoch.d.ts +2 -0
- package/dist/package/browser/components/DockShell/dockResetEpoch.js +13 -0
- package/dist/package/browser/components/DockShell/dockTitle.d.ts +12 -0
- package/dist/package/browser/components/DockShell/dockTitle.js +36 -0
- package/dist/package/browser/components/DockShell/dockviewRegistry.d.ts +1 -0
- package/dist/package/browser/components/DockShell/dockviewRegistry.js +1 -0
- package/dist/package/browser/components/DockShell/edgeDrawer.d.ts +24 -0
- package/dist/package/browser/components/DockShell/edgeDrawer.js +1144 -0
- package/dist/package/browser/components/DockShell/edgePinStore.d.ts +12 -0
- package/dist/package/browser/components/DockShell/edgePinStore.js +37 -0
- package/dist/package/browser/components/DockShell/extension-editor-bridge.d.ts +13 -0
- package/dist/package/browser/components/DockShell/extension-editor-bridge.js +100 -0
- package/dist/package/browser/components/DockShell/extension-runtime-selection.d.ts +8 -0
- package/dist/package/browser/components/DockShell/extension-runtime-selection.js +6 -0
- package/dist/package/browser/components/DockShell/extensionRuntime.d.ts +17 -0
- package/dist/package/browser/components/DockShell/extensionRuntime.js +84 -0
- package/dist/package/browser/components/DockShell/footer-panel-visibility.d.ts +7 -0
- package/dist/package/browser/components/DockShell/footer-panel-visibility.js +43 -0
- package/dist/package/browser/components/DockShell/footer-panels.d.ts +2 -0
- package/dist/package/browser/components/DockShell/footer-panels.js +7 -0
- package/dist/package/browser/components/DockShell/panelRegistry.d.ts +37 -0
- package/dist/package/browser/components/DockShell/panelRegistry.js +126 -0
- package/dist/package/browser/components/DockShell/panelRenderers.d.ts +325 -0
- package/dist/package/browser/components/DockShell/panelRenderers.js +25 -0
- package/dist/package/browser/components/DockShell/panelTabCommands.d.ts +18 -0
- package/dist/package/browser/components/DockShell/panelTabCommands.js +133 -0
- package/dist/package/browser/components/DockShell/panelWindowing.d.ts +32 -0
- package/dist/package/browser/components/DockShell/panelWindowing.js +42 -0
- package/dist/package/browser/components/DockShell/regions.d.ts +1 -0
- package/dist/package/browser/components/DockShell/regions.js +1 -0
- package/dist/package/browser/components/DockShell/resolveRegion.d.ts +1 -0
- package/dist/package/browser/components/DockShell/resolveRegion.js +1 -0
- package/dist/package/browser/components/DockShell/sanitizeDockLayout.d.ts +3 -0
- package/dist/package/browser/components/DockShell/sanitizeDockLayout.js +46 -0
- package/dist/package/browser/components/DockShell/sideEdgeMove.d.ts +1 -0
- package/dist/package/browser/components/DockShell/sideEdgeMove.js +1 -0
- package/dist/package/browser/components/DockShell/studioTabMenuProvider.d.ts +13 -0
- package/dist/package/browser/components/DockShell/studioTabMenuProvider.js +39 -0
- package/dist/package/browser/components/DockShell/tabContextMenu.d.ts +29 -0
- package/dist/package/browser/components/DockShell/tabContextMenu.js +68 -0
- package/dist/package/browser/components/DockShell/ueDrag/controller.d.ts +80 -0
- package/dist/package/browser/components/DockShell/ueDrag/controller.js +785 -0
- package/dist/package/browser/components/DockShell/ueDrag/geometry.d.ts +94 -0
- package/dist/package/browser/components/DockShell/ueDrag/geometry.js +217 -0
- package/dist/package/browser/components/DockShell/ueDrag/overlay.d.ts +32 -0
- package/dist/package/browser/components/DockShell/ueDrag/overlay.js +206 -0
- package/dist/package/browser/components/DockShell/ueDrag/ueDrag.css +199 -0
- package/dist/package/browser/components/DockShell/useAuxBarWidth.d.ts +5 -0
- package/dist/package/browser/components/DockShell/useAuxBarWidth.js +13 -0
- package/dist/package/browser/components/Drawer/DrawerHostView.css +143 -0
- package/dist/package/browser/components/Drawer/DrawerHostView.d.ts +19 -0
- package/dist/package/browser/components/Drawer/DrawerHostView.js +93 -0
- package/dist/package/browser/components/Drawer/DrawerLauncher.d.ts +12 -0
- package/dist/package/browser/components/Drawer/DrawerLauncher.js +22 -0
- package/dist/package/browser/components/Drawer/useDrawerStore.d.ts +15 -0
- package/dist/package/browser/components/Drawer/useDrawerStore.js +80 -0
- package/dist/package/browser/components/ErrorBoundary.d.ts +55 -0
- package/dist/package/browser/components/ErrorBoundary.js +131 -0
- package/dist/package/browser/components/ExtensionHost/ExtensionIframeHost.d.ts +28 -0
- package/dist/package/browser/components/ExtensionHost/ExtensionIframeHost.js +179 -0
- package/dist/package/browser/components/ExtensionHost/NativeExtensionHost.d.ts +14 -0
- package/dist/package/browser/components/ExtensionHost/NativeExtensionHost.js +152 -0
- package/dist/package/browser/components/Feedback/FeedbackPanel.css +640 -0
- package/dist/package/browser/components/Feedback/FeedbackPanel.d.ts +8 -0
- package/dist/package/browser/components/Feedback/FeedbackPanel.js +118 -0
- package/dist/package/browser/components/Feedback/PassiveFeedback.css +179 -0
- package/dist/package/browser/components/Feedback/PassiveFeedback.d.ts +2 -0
- package/dist/package/browser/components/Feedback/PassiveFeedback.js +218 -0
- package/dist/package/browser/components/Feedback/collect.d.ts +15 -0
- package/dist/package/browser/components/Feedback/collect.js +80 -0
- package/dist/package/browser/components/Feedback/store.d.ts +61 -0
- package/dist/package/browser/components/Feedback/store.js +174 -0
- package/dist/package/browser/components/LangSwitcher/LangSwitcher.css +78 -0
- package/dist/package/browser/components/LangSwitcher/LangSwitcher.d.ts +14 -0
- package/dist/package/browser/components/LangSwitcher/LangSwitcher.js +44 -0
- package/dist/package/browser/components/MainArea/ConsolePanel.d.ts +1 -0
- package/dist/package/browser/components/MainArea/ConsolePanel.js +16 -0
- package/dist/package/browser/components/MainArea/MainArea.css +2130 -0
- package/dist/package/browser/components/MainArea/MainArea.d.ts +2 -0
- package/dist/package/browser/components/MainArea/MainArea.js +20 -0
- package/dist/package/browser/components/MainArea/StandaloneExtensionIframe.d.ts +25 -0
- package/dist/package/browser/components/MainArea/StandaloneExtensionIframe.js +155 -0
- package/dist/package/browser/components/MainArea/SurfacePanels.d.ts +3 -0
- package/dist/package/browser/components/MainArea/SurfacePanels.js +27 -0
- package/dist/package/browser/components/MainArea/TelemetryViewer.css +122 -0
- package/dist/package/browser/components/MainArea/TelemetryViewer.d.ts +36 -0
- package/dist/package/browser/components/MainArea/TelemetryViewer.js +116 -0
- package/dist/package/browser/components/MenuBar/MenuBar.css +186 -0
- package/dist/package/browser/components/MenuBar/MenuBar.d.ts +27 -0
- package/dist/package/browser/components/MenuBar/MenuBar.js +286 -0
- package/dist/package/browser/components/MenuBar/index.d.ts +1 -0
- package/dist/package/browser/components/MenuBar/index.js +1 -0
- package/dist/package/browser/components/MenuBar/menubar-open-state.d.ts +8 -0
- package/dist/package/browser/components/MenuBar/menubar-open-state.js +11 -0
- package/dist/package/browser/components/MenuBar/menubar-surface.d.ts +30 -0
- package/dist/package/browser/components/MenuBar/menubar-surface.js +201 -0
- package/dist/package/browser/components/ModelPicker/index.d.ts +1 -0
- package/dist/package/browser/components/ModelPicker/index.js +1 -0
- package/dist/package/browser/components/ModelPicker/useModelCatalog.d.ts +22 -0
- package/dist/package/browser/components/ModelPicker/useModelCatalog.js +100 -0
- package/dist/package/browser/components/Onboarding/ConnectModelPrompt.d.ts +2 -0
- package/dist/package/browser/components/Onboarding/ConnectModelPrompt.js +40 -0
- package/dist/package/browser/components/Onboarding/Onboarding.css +232 -0
- package/dist/package/browser/components/Onboarding/OnboardingController.d.ts +10 -0
- package/dist/package/browser/components/Onboarding/OnboardingController.js +549 -0
- package/dist/package/browser/components/Onboarding/connect-selection.d.ts +17 -0
- package/dist/package/browser/components/Onboarding/connect-selection.js +18 -0
- package/dist/package/browser/components/Onboarding/home-transition.d.ts +9 -0
- package/dist/package/browser/components/Onboarding/home-transition.js +20 -0
- package/dist/package/browser/components/Onboarding/index.d.ts +4 -0
- package/dist/package/browser/components/Onboarding/index.js +3 -0
- package/dist/package/browser/components/Onboarding/prepareTourShell.d.ts +5 -0
- package/dist/package/browser/components/Onboarding/prepareTourShell.js +11 -0
- package/dist/package/browser/components/Onboarding/project-name.d.ts +17 -0
- package/dist/package/browser/components/Onboarding/project-name.js +29 -0
- package/dist/package/browser/components/Onboarding/types.d.ts +31 -0
- package/dist/package/browser/components/Onboarding/types.js +77 -0
- package/dist/package/browser/components/PageTabs/PageTabStrip.css +221 -0
- package/dist/package/browser/components/PageTabs/PageTabStrip.d.ts +3 -0
- package/dist/package/browser/components/PageTabs/PageTabStrip.js +214 -0
- package/dist/package/browser/components/PageTabs/openablePageTypes.d.ts +9 -0
- package/dist/package/browser/components/PageTabs/openablePageTypes.js +13 -0
- package/dist/package/browser/components/PanelShell/PanelShell.css +517 -0
- package/dist/package/browser/components/PanelShell/PanelShell.d.ts +7 -0
- package/dist/package/browser/components/PanelShell/PanelShell.js +459 -0
- package/dist/package/browser/components/Resize/ResizeHandle.d.ts +1 -0
- package/dist/package/browser/components/Resize/ResizeHandle.js +1 -0
- package/dist/package/browser/components/SceneBackground/SceneBackground.d.ts +2 -0
- package/dist/package/browser/components/SceneBackground/SceneBackground.js +5 -0
- package/dist/package/browser/components/SchemaForm/SchemaForm.css +138 -0
- package/dist/package/browser/components/SchemaForm/SchemaForm.d.ts +17 -0
- package/dist/package/browser/components/SchemaForm/SchemaForm.js +86 -0
- package/dist/package/browser/components/SchemaForm/schema-form-utils.d.ts +30 -0
- package/dist/package/browser/components/SchemaForm/schema-form-utils.js +51 -0
- package/dist/package/browser/components/SettingsPrimitives.d.ts +24 -0
- package/dist/package/browser/components/SettingsPrimitives.js +145 -0
- package/dist/package/browser/components/Sidebar/BusHealthLamp.d.ts +1 -0
- package/dist/package/browser/components/Sidebar/BusHealthLamp.js +72 -0
- package/dist/package/browser/components/Sidebar/FilesPanel.d.ts +1 -0
- package/dist/package/browser/components/Sidebar/FilesPanel.js +234 -0
- package/dist/package/browser/components/Sidebar/Sidebar.css +1393 -0
- package/dist/package/browser/components/Sidebar/Sidebar.d.ts +3 -0
- package/dist/package/browser/components/Sidebar/Sidebar.js +8 -0
- package/dist/package/browser/components/Sidebar/sidebar-types.d.ts +18 -0
- package/dist/package/browser/components/Sidebar/sidebar-types.js +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/SlotDebugOverlay.d.ts +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/SlotDebugOverlay.js +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/hashHue.d.ts +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/hashHue.js +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/index.d.ts +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/index.js +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/isSlotDebugEnabled.d.ts +1 -0
- package/dist/package/browser/components/SlotDebugOverlay/isSlotDebugEnabled.js +1 -0
- package/dist/package/browser/components/StatusBar/FatalBanner.d.ts +25 -0
- package/dist/package/browser/components/StatusBar/FatalBanner.js +52 -0
- package/dist/package/browser/components/StatusBar/GlobalStatusBar.css +304 -0
- package/dist/package/browser/components/StatusBar/InfoPanel.css +174 -0
- package/dist/package/browser/components/StatusBar/InfoPanel.d.ts +19 -0
- package/dist/package/browser/components/StatusBar/InfoPanel.js +128 -0
- package/dist/package/browser/components/StatusBar/StatusChip.css +52 -0
- package/dist/package/browser/components/StatusBar/StatusChip.d.ts +40 -0
- package/dist/package/browser/components/StatusBar/StatusChip.js +13 -0
- package/dist/package/browser/components/StatusBar/StripHostView.d.ts +2 -0
- package/dist/package/browser/components/StatusBar/StripHostView.js +91 -0
- package/dist/package/browser/components/StatusBar/StripPopover.css +58 -0
- package/dist/package/browser/components/StatusBar/StripPopover.d.ts +16 -0
- package/dist/package/browser/components/StatusBar/StripPopover.js +15 -0
- package/dist/package/browser/components/StatusBar/feeds/PulseFeeds.d.ts +16 -0
- package/dist/package/browser/components/StatusBar/feeds/PulseFeeds.js +88 -0
- package/dist/package/browser/components/StatusBar/footer/CheckpointsDrawer.d.ts +4 -0
- package/dist/package/browser/components/StatusBar/footer/CheckpointsDrawer.js +77 -0
- package/dist/package/browser/components/StatusBar/footer/DiagnosticsPopover.d.ts +4 -0
- package/dist/package/browser/components/StatusBar/footer/DiagnosticsPopover.js +108 -0
- package/dist/package/browser/components/StatusBar/footer/EventsDrawer.d.ts +14 -0
- package/dist/package/browser/components/StatusBar/footer/EventsDrawer.js +25 -0
- package/dist/package/browser/components/StatusBar/footer/ForgeaxBuildPopover.d.ts +4 -0
- package/dist/package/browser/components/StatusBar/footer/ForgeaxBuildPopover.js +62 -0
- package/dist/package/browser/components/StatusBar/footer/footer.css +178 -0
- package/dist/package/browser/components/StatusBar/healthBridge.d.ts +38 -0
- package/dist/package/browser/components/StatusBar/healthBridge.js +245 -0
- package/dist/package/browser/components/StatusBar/healthStore.d.ts +80 -0
- package/dist/package/browser/components/StatusBar/healthStore.js +129 -0
- package/dist/package/browser/components/StatusBar/useStatusItem.d.ts +10 -0
- package/dist/package/browser/components/StatusBar/useStatusItem.js +35 -0
- package/dist/package/browser/components/Surfaces/SurfaceKeepAlive.css +34 -0
- package/dist/package/browser/components/Surfaces/SurfaceKeepAliveLayer.d.ts +3 -0
- package/dist/package/browser/components/Surfaces/SurfaceKeepAliveLayer.js +218 -0
- package/dist/package/browser/components/Surfaces/SurfaceOverlay.css +160 -0
- package/dist/package/browser/components/Surfaces/SurfaceOverlay.d.ts +9 -0
- package/dist/package/browser/components/Surfaces/SurfaceOverlay.js +144 -0
- package/dist/package/browser/components/TopBar/AndroidPackageDialog.d.ts +23 -0
- package/dist/package/browser/components/TopBar/AndroidPackageDialog.js +115 -0
- package/dist/package/browser/components/TopBar/FsBrowser.css +156 -0
- package/dist/package/browser/components/TopBar/FsBrowser.d.ts +8 -0
- package/dist/package/browser/components/TopBar/FsBrowser.js +93 -0
- package/dist/package/browser/components/TopBar/GameSwitcher.d.ts +29 -0
- package/dist/package/browser/components/TopBar/GameSwitcher.js +157 -0
- package/dist/package/browser/components/TopBar/IosPackageDialog.d.ts +23 -0
- package/dist/package/browser/components/TopBar/IosPackageDialog.js +115 -0
- package/dist/package/browser/components/TopBar/ProjectSwitcher.d.ts +3 -0
- package/dist/package/browser/components/TopBar/ProjectSwitcher.js +41 -0
- package/dist/package/browser/components/TopBar/PublishOnboarding.css +133 -0
- package/dist/package/browser/components/TopBar/PublishOnboarding.d.ts +10 -0
- package/dist/package/browser/components/TopBar/PublishOnboarding.js +144 -0
- package/dist/package/browser/components/TopBar/SessionSwitcher.d.ts +2 -0
- package/dist/package/browser/components/TopBar/SessionSwitcher.js +124 -0
- package/dist/package/browser/components/TopBar/TopBar.css +1672 -0
- package/dist/package/browser/components/TopBar/TopBar.d.ts +2 -0
- package/dist/package/browser/components/TopBar/TopBar.js +606 -0
- package/dist/package/browser/components/TopBar/publish-options.d.ts +20 -0
- package/dist/package/browser/components/TopBar/publish-options.js +28 -0
- package/dist/package/browser/components/TourOverlay/TourOverlay.css +122 -0
- package/dist/package/browser/components/TourOverlay/TourOverlay.d.ts +26 -0
- package/dist/package/browser/components/TourOverlay/TourOverlay.js +233 -0
- package/dist/package/browser/components/TourOverlay/index.d.ts +2 -0
- package/dist/package/browser/components/TourOverlay/index.js +1 -0
- package/dist/package/browser/components/ownership.d.ts +7 -0
- package/dist/package/browser/components/ownership.js +7 -0
- package/dist/package/browser/components/ui/SearchableMenu.css +143 -0
- package/dist/package/browser/components/ui/SearchableMenu.d.ts +30 -0
- package/dist/package/browser/components/ui/SearchableMenu.js +40 -0
- package/dist/package/browser/components/ui/alert-dialog.d.ts +20 -0
- package/dist/package/browser/components/ui/alert-dialog.js +38 -0
- package/dist/package/browser/components/ui/button.d.ts +11 -0
- package/dist/package/browser/components/ui/button.js +33 -0
- package/dist/package/browser/components/ui/checkbox.d.ts +4 -0
- package/dist/package/browser/components/ui/checkbox.js +8 -0
- package/dist/package/browser/components/ui/command.d.ts +74 -0
- package/dist/package/browser/components/ui/command.js +20 -0
- package/dist/package/browser/components/ui/dialog.d.ts +21 -0
- package/dist/package/browser/components/ui/dialog.js +34 -0
- package/dist/package/browser/components/ui/dropdown-menu.d.ts +18 -0
- package/dist/package/browser/components/ui/dropdown-menu.js +30 -0
- package/dist/package/browser/components/ui/input.d.ts +3 -0
- package/dist/package/browser/components/ui/input.js +8 -0
- package/dist/package/browser/components/ui/label.d.ts +4 -0
- package/dist/package/browser/components/ui/label.js +7 -0
- package/dist/package/browser/components/ui/popover.d.ts +7 -0
- package/dist/package/browser/components/ui/popover.js +10 -0
- package/dist/package/browser/components/ui/select.d.ts +11 -0
- package/dist/package/browser/components/ui/select.js +31 -0
- package/dist/package/browser/components/ui/tabs.d.ts +7 -0
- package/dist/package/browser/components/ui/tabs.js +12 -0
- package/dist/package/browser/components/ui/textarea.d.ts +3 -0
- package/dist/package/browser/components/ui/textarea.js +8 -0
- package/dist/package/browser/components/ui/tooltip.d.ts +7 -0
- package/dist/package/browser/components/ui/tooltip.js +10 -0
- package/dist/package/browser/core/app-shell/catalog-page-extensions.d.ts +28 -0
- package/dist/package/browser/core/app-shell/catalog-page-extensions.js +234 -0
- package/dist/package/browser/core/app-shell/derive-panel-renderers.d.ts +2 -0
- package/dist/package/browser/core/app-shell/derive-panel-renderers.js +17 -0
- package/dist/package/browser/core/app-shell/host.d.ts +31 -0
- package/dist/package/browser/core/app-shell/host.js +188 -0
- package/dist/package/browser/core/app-shell/index.d.ts +7 -0
- package/dist/package/browser/core/app-shell/index.js +8 -0
- package/dist/package/browser/core/app-shell/logger.d.ts +2 -0
- package/dist/package/browser/core/app-shell/logger.js +6 -0
- package/dist/package/browser/core/app-shell/ownership.d.ts +7 -0
- package/dist/package/browser/core/app-shell/ownership.js +7 -0
- package/dist/package/browser/core/app-shell/react/HostProvider.d.ts +10 -0
- package/dist/package/browser/core/app-shell/react/HostProvider.js +35 -0
- package/dist/package/browser/core/app-shell/surface-extension.d.ts +17 -0
- package/dist/package/browser/core/app-shell/surface-extension.js +33 -0
- package/dist/package/browser/core/app-shell/types.d.ts +176 -0
- package/dist/package/browser/core/app-shell/types.js +1 -0
- package/dist/package/browser/core/contextual-keybindings.d.ts +71 -0
- package/dist/package/browser/core/contextual-keybindings.js +198 -0
- package/dist/package/browser/core/extension-foundation/bus.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/bus.js +3 -0
- package/dist/package/browser/core/extension-foundation/capabilities.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/capabilities.js +3 -0
- package/dist/package/browser/core/extension-foundation/commands.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/commands.js +3 -0
- package/dist/package/browser/core/extension-foundation/context-keys.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/context-keys.js +3 -0
- package/dist/package/browser/core/extension-foundation/contribution-registry.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/contribution-registry.js +3 -0
- package/dist/package/browser/core/extension-foundation/errors.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/errors.js +3 -0
- package/dist/package/browser/core/extension-foundation/index.d.ts +8 -0
- package/dist/package/browser/core/extension-foundation/index.js +9 -0
- package/dist/package/browser/core/extension-foundation/loader.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/loader.js +3 -0
- package/dist/package/browser/core/extension-foundation/storage.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/storage.js +3 -0
- package/dist/package/browser/core/extension-foundation/types.d.ts +2 -0
- package/dist/package/browser/core/extension-foundation/types.js +1 -0
- package/dist/package/browser/core/extensions/builtin-commands.d.ts +2 -0
- package/dist/package/browser/core/extensions/builtin-commands.js +256 -0
- package/dist/package/browser/core/extensions/builtin-menus.d.ts +2 -0
- package/dist/package/browser/core/extensions/builtin-menus.js +252 -0
- package/dist/package/browser/core/extensions/chrome-drawer.d.ts +3 -0
- package/dist/package/browser/core/extensions/chrome-drawer.js +45 -0
- package/dist/package/browser/core/extensions/chrome-statusbar.d.ts +6 -0
- package/dist/package/browser/core/extensions/chrome-statusbar.js +26 -0
- package/dist/package/browser/core/extensions/detached-agents-browser.d.ts +3 -0
- package/dist/package/browser/core/extensions/detached-agents-browser.js +9 -0
- package/dist/package/browser/core/extensions/detached-files-browser.d.ts +3 -0
- package/dist/package/browser/core/extensions/detached-files-browser.js +6 -0
- package/dist/package/browser/core/extensions/editor-commands.d.ts +2 -0
- package/dist/package/browser/core/extensions/editor-commands.js +182 -0
- package/dist/package/browser/core/extensions/foundation-bus.d.ts +2 -0
- package/dist/package/browser/core/extensions/foundation-bus.js +3 -0
- package/dist/package/browser/core/extensions/foundation-commands.d.ts +2 -0
- package/dist/package/browser/core/extensions/foundation-commands.js +6 -0
- package/dist/package/browser/core/extensions/foundation-storage.d.ts +2 -0
- package/dist/package/browser/core/extensions/foundation-storage.js +3 -0
- package/dist/package/browser/core/extensions/host-commands.d.ts +18 -0
- package/dist/package/browser/core/extensions/host-commands.js +52 -0
- package/dist/package/browser/core/extensions/observability.d.ts +14 -0
- package/dist/package/browser/core/extensions/observability.js +18 -0
- package/dist/package/browser/core/extensions/panels-chat.d.ts +2 -0
- package/dist/package/browser/core/extensions/panels-chat.js +41 -0
- package/dist/package/browser/core/extensions/panels-editor.d.ts +8 -0
- package/dist/package/browser/core/extensions/panels-editor.js +26 -0
- package/dist/package/browser/core/extensions/panels-viewport.d.ts +2 -0
- package/dist/package/browser/core/extensions/panels-viewport.js +20 -0
- package/dist/package/browser/core/extensions/session-client.d.ts +29 -0
- package/dist/package/browser/core/extensions/session-client.js +42 -0
- package/dist/package/browser/core/extensions/slots-corner-agent-picker.d.ts +5 -0
- package/dist/package/browser/core/extensions/slots-corner-agent-picker.js +6 -0
- package/dist/package/browser/core/extensions/slots-main-area-body.d.ts +3 -0
- package/dist/package/browser/core/extensions/slots-main-area-body.js +6 -0
- package/dist/package/browser/core/extensions/slots-sidebar-agents.d.ts +3 -0
- package/dist/package/browser/core/extensions/slots-sidebar-agents.js +6 -0
- package/dist/package/browser/core/extensions/studio-domain-clients.d.ts +12 -0
- package/dist/package/browser/core/extensions/studio-domain-clients.js +15 -0
- package/dist/package/browser/core/extensions/surfaces-scene-editor.d.ts +3 -0
- package/dist/package/browser/core/extensions/surfaces-scene-editor.js +6 -0
- package/dist/package/browser/core/extensions/trajectory.d.ts +2 -0
- package/dist/package/browser/core/extensions/trajectory.js +50 -0
- package/dist/package/browser/core/page-navigation.d.ts +1 -0
- package/dist/package/browser/core/page-navigation.js +1 -0
- package/dist/package/browser/core/page-platform/activity.d.ts +4 -0
- package/dist/package/browser/core/page-platform/activity.js +46 -0
- package/dist/package/browser/core/page-platform/dockview-layout.d.ts +7 -0
- package/dist/package/browser/core/page-platform/dockview-layout.js +63 -0
- package/dist/package/browser/core/page-platform/index.d.ts +8 -0
- package/dist/package/browser/core/page-platform/index.js +8 -0
- package/dist/package/browser/core/page-platform/layout-store.d.ts +18 -0
- package/dist/package/browser/core/page-platform/layout-store.js +54 -0
- package/dist/package/browser/core/page-platform/page-dirty-probe.d.ts +1 -0
- package/dist/package/browser/core/page-platform/page-dirty-probe.js +4 -0
- package/dist/package/browser/core/page-platform/registry.d.ts +3 -0
- package/dist/package/browser/core/page-platform/registry.js +194 -0
- package/dist/package/browser/core/page-platform/resource-editor.d.ts +3 -0
- package/dist/package/browser/core/page-platform/resource-editor.js +74 -0
- package/dist/package/browser/core/page-platform/session.d.ts +10 -0
- package/dist/package/browser/core/page-platform/session.js +327 -0
- package/dist/package/browser/core/page-platform/types.d.ts +242 -0
- package/dist/package/browser/core/page-platform/types.js +10 -0
- package/dist/package/browser/core/panels/context-expression.d.ts +1 -0
- package/dist/package/browser/core/panels/context-expression.js +1 -0
- package/dist/package/browser/core/panels/drawer.d.ts +23 -0
- package/dist/package/browser/core/panels/drawer.js +1 -0
- package/dist/package/browser/core/panels/index.d.ts +7 -0
- package/dist/package/browser/core/panels/index.js +7 -0
- package/dist/package/browser/core/panels/panel-action-registry.d.ts +6 -0
- package/dist/package/browser/core/panels/panel-action-registry.js +62 -0
- package/dist/package/browser/core/panels/panel-control-registry.d.ts +6 -0
- package/dist/package/browser/core/panels/panel-control-registry.js +54 -0
- package/dist/package/browser/core/panels/resolve-panel-action-state.d.ts +10 -0
- package/dist/package/browser/core/panels/resolve-panel-action-state.js +9 -0
- package/dist/package/browser/core/panels/strip.d.ts +40 -0
- package/dist/package/browser/core/panels/strip.js +1 -0
- package/dist/package/browser/core/panels/types.d.ts +143 -0
- package/dist/package/browser/core/panels/types.js +1 -0
- package/dist/package/browser/i18n/index.d.ts +50 -0
- package/dist/package/browser/i18n/index.js +207 -0
- package/dist/package/browser/i18n/locales/en.json +1959 -0
- package/dist/package/browser/i18n/locales/zh.json +1959 -0
- package/dist/package/browser/index.d.ts +2 -0
- package/dist/package/browser/index.js +2 -0
- package/dist/package/browser/lib/a11y-summary.d.ts +17 -0
- package/dist/package/browser/lib/a11y-summary.js +66 -0
- package/dist/package/browser/lib/action-dom-discovery.d.ts +2 -0
- package/dist/package/browser/lib/action-dom-discovery.js +84 -0
- package/dist/package/browser/lib/action-registry.d.ts +94 -0
- package/dist/package/browser/lib/action-registry.js +210 -0
- package/dist/package/browser/lib/aegis.d.ts +40 -0
- package/dist/package/browser/lib/aegis.js +230 -0
- package/dist/package/browser/lib/agent-catalog-url.d.ts +9 -0
- package/dist/package/browser/lib/agent-catalog-url.js +24 -0
- package/dist/package/browser/lib/agent-cli-provider.d.ts +10 -0
- package/dist/package/browser/lib/agent-cli-provider.js +81 -0
- package/dist/package/browser/lib/ai-intents.d.ts +30 -0
- package/dist/package/browser/lib/ai-intents.js +52 -0
- package/dist/package/browser/lib/broadcast-stream.d.ts +17 -0
- package/dist/package/browser/lib/broadcast-stream.js +163 -0
- package/dist/package/browser/lib/browser-prefs-sync.d.ts +16 -0
- package/dist/package/browser/lib/browser-prefs-sync.js +151 -0
- package/dist/package/browser/lib/builtin-actions.d.ts +2 -0
- package/dist/package/browser/lib/builtin-actions.js +558 -0
- package/dist/package/browser/lib/bus.d.ts +25 -0
- package/dist/package/browser/lib/bus.js +71 -0
- package/dist/package/browser/lib/checkpoint-api.d.ts +54 -0
- package/dist/package/browser/lib/checkpoint-api.js +41 -0
- package/dist/package/browser/lib/cli-providers.d.ts +33 -0
- package/dist/package/browser/lib/cli-providers.js +61 -0
- package/dist/package/browser/lib/command-palette-store.d.ts +5 -0
- package/dist/package/browser/lib/command-palette-store.js +22 -0
- package/dist/package/browser/lib/composer-bridge.d.ts +103 -0
- package/dist/package/browser/lib/composer-bridge.js +448 -0
- package/dist/package/browser/lib/dashboard-api.d.ts +104 -0
- package/dist/package/browser/lib/dashboard-api.js +125 -0
- package/dist/package/browser/lib/deep-link-bus.d.ts +10 -0
- package/dist/package/browser/lib/deep-link-bus.js +35 -0
- package/dist/package/browser/lib/dialog.d.ts +40 -0
- package/dist/package/browser/lib/dialog.js +103 -0
- package/dist/package/browser/lib/editor-facts-bus.d.ts +27 -0
- package/dist/package/browser/lib/editor-facts-bus.js +25 -0
- package/dist/package/browser/lib/extension-api.d.ts +140 -0
- package/dist/package/browser/lib/extension-api.js +90 -0
- package/dist/package/browser/lib/file-activity-stream.d.ts +54 -0
- package/dist/package/browser/lib/file-activity-stream.js +123 -0
- package/dist/package/browser/lib/file-family.d.ts +15 -0
- package/dist/package/browser/lib/file-family.js +25 -0
- package/dist/package/browser/lib/game-templates.d.ts +7 -0
- package/dist/package/browser/lib/game-templates.js +15 -0
- package/dist/package/browser/lib/global-shortcuts.d.ts +121 -0
- package/dist/package/browser/lib/global-shortcuts.js +551 -0
- package/dist/package/browser/lib/logSink.d.ts +16 -0
- package/dist/package/browser/lib/logSink.js +128 -0
- package/dist/package/browser/lib/lucide-icon.d.ts +5 -0
- package/dist/package/browser/lib/lucide-icon.js +20 -0
- package/dist/package/browser/lib/menu-registry.d.ts +113 -0
- package/dist/package/browser/lib/menu-registry.js +197 -0
- package/dist/package/browser/lib/model-config.d.ts +89 -0
- package/dist/package/browser/lib/model-config.js +72 -0
- package/dist/package/browser/lib/model-prefs.d.ts +5 -0
- package/dist/package/browser/lib/model-prefs.js +53 -0
- package/dist/package/browser/lib/model-route/index.d.ts +81 -0
- package/dist/package/browser/lib/model-route/index.js +175 -0
- package/dist/package/browser/lib/narrative-copilot.d.ts +20 -0
- package/dist/package/browser/lib/narrative-copilot.js +105 -0
- package/dist/package/browser/lib/native-menu-bridge.d.ts +37 -0
- package/dist/package/browser/lib/native-menu-bridge.js +151 -0
- package/dist/package/browser/lib/page-tab-icons.d.ts +21 -0
- package/dist/package/browser/lib/page-tab-icons.js +64 -0
- package/dist/package/browser/lib/panel-tab-icons.d.ts +21 -0
- package/dist/package/browser/lib/panel-tab-icons.js +49 -0
- package/dist/package/browser/lib/passive-feedback.d.ts +50 -0
- package/dist/package/browser/lib/passive-feedback.js +171 -0
- package/dist/package/browser/lib/perception-stream.d.ts +27 -0
- package/dist/package/browser/lib/perception-stream.js +42 -0
- package/dist/package/browser/lib/platform/index.d.ts +14 -0
- package/dist/package/browser/lib/platform/index.js +13 -0
- package/dist/package/browser/lib/platform/runtime.d.ts +22 -0
- package/dist/package/browser/lib/platform/runtime.js +42 -0
- package/dist/package/browser/lib/platform/shell-adapter.d.ts +24 -0
- package/dist/package/browser/lib/platform/shell-adapter.js +74 -0
- package/dist/package/browser/lib/platform/surface-windowing.d.ts +4 -0
- package/dist/package/browser/lib/platform/surface-windowing.js +16 -0
- package/dist/package/browser/lib/platform/surface.d.ts +13 -0
- package/dist/package/browser/lib/platform/surface.js +27 -0
- package/dist/package/browser/lib/platform/use-surface-windowing.d.ts +1 -0
- package/dist/package/browser/lib/platform/use-surface-windowing.js +6 -0
- package/dist/package/browser/lib/platform/window-manager.d.ts +2 -0
- package/dist/package/browser/lib/platform/window-manager.js +82 -0
- package/dist/package/browser/lib/project-context.d.ts +4 -0
- package/dist/package/browser/lib/project-context.js +42 -0
- package/dist/package/browser/lib/project.d.ts +5 -0
- package/dist/package/browser/lib/project.js +8 -0
- package/dist/package/browser/lib/recent-games.d.ts +24 -0
- package/dist/package/browser/lib/recent-games.js +50 -0
- package/dist/package/browser/lib/repair-builtin-menus.d.ts +6 -0
- package/dist/package/browser/lib/repair-builtin-menus.js +18 -0
- package/dist/package/browser/lib/reply-language.d.ts +9 -0
- package/dist/package/browser/lib/reply-language.js +11 -0
- package/dist/package/browser/lib/resilient-polling.d.ts +9 -0
- package/dist/package/browser/lib/resilient-polling.js +16 -0
- package/dist/package/browser/lib/session-time.d.ts +8 -0
- package/dist/package/browser/lib/session-time.js +40 -0
- package/dist/package/browser/lib/shell-live-data.d.ts +12 -0
- package/dist/package/browser/lib/shell-live-data.js +66 -0
- package/dist/package/browser/lib/sse.d.ts +5 -0
- package/dist/package/browser/lib/sse.js +42 -0
- package/dist/package/browser/lib/storageKeys.d.ts +70 -0
- package/dist/package/browser/lib/storageKeys.js +89 -0
- package/dist/package/browser/lib/surface-store.d.ts +38 -0
- package/dist/package/browser/lib/surface-store.js +62 -0
- package/dist/package/browser/lib/surface.d.ts +56 -0
- package/dist/package/browser/lib/surface.js +225 -0
- package/dist/package/browser/lib/surfaceAnchors.d.ts +16 -0
- package/dist/package/browser/lib/surfaceAnchors.js +76 -0
- package/dist/package/browser/lib/surfaceKeepAliveLayout.d.ts +7 -0
- package/dist/package/browser/lib/surfaceKeepAliveLayout.js +12 -0
- package/dist/package/browser/lib/telemetry-test-prelude.d.ts +0 -0
- package/dist/package/browser/lib/telemetry-test-prelude.js +14 -0
- package/dist/package/browser/lib/text-edit-actions.d.ts +14 -0
- package/dist/package/browser/lib/text-edit-actions.js +184 -0
- package/dist/package/browser/lib/trace.d.ts +34 -0
- package/dist/package/browser/lib/trace.js +273 -0
- package/dist/package/browser/lib/trustedOrigins.d.ts +4 -0
- package/dist/package/browser/lib/trustedOrigins.js +36 -0
- package/dist/package/browser/lib/ui-action-highlight.d.ts +2 -0
- package/dist/package/browser/lib/ui-action-highlight.js +93 -0
- package/dist/package/browser/lib/ui-bridge.d.ts +2 -0
- package/dist/package/browser/lib/ui-bridge.js +224 -0
- package/dist/package/browser/lib/ui-screenshot.d.ts +31 -0
- package/dist/package/browser/lib/ui-screenshot.js +155 -0
- package/dist/package/browser/lib/ui-trajectory.d.ts +47 -0
- package/dist/package/browser/lib/ui-trajectory.js +99 -0
- package/dist/package/browser/lib/use-bus-snapshot.d.ts +3 -0
- package/dist/package/browser/lib/use-bus-snapshot.js +13 -0
- package/dist/package/browser/lib/use-extension-manifest.d.ts +19 -0
- package/dist/package/browser/lib/use-extension-manifest.js +67 -0
- package/dist/package/browser/lib/useConfirmToast.d.ts +26 -0
- package/dist/package/browser/lib/useConfirmToast.js +120 -0
- package/dist/package/browser/lib/utils.d.ts +2 -0
- package/dist/package/browser/lib/utils.js +5 -0
- package/dist/package/browser/lib/vag-action-bridge.d.ts +2 -0
- package/dist/package/browser/lib/vag-action-bridge.js +130 -0
- package/dist/package/browser/main.d.ts +1 -0
- package/dist/package/browser/main.js +157 -0
- package/dist/package/browser/store-parts/domain-clients.d.ts +149 -0
- package/dist/package/browser/store-parts/domain-clients.js +17 -0
- package/dist/package/browser/store-parts/observability.d.ts +4 -0
- package/dist/package/browser/store-parts/observability.js +35 -0
- package/dist/package/browser/store-parts/persistence.d.ts +40 -0
- package/dist/package/browser/store-parts/persistence.js +245 -0
- package/dist/package/browser/store-parts/session-client.d.ts +73 -0
- package/dist/package/browser/store-parts/session-client.js +17 -0
- package/dist/package/browser/store-parts/session-pick.d.ts +8 -0
- package/dist/package/browser/store-parts/session-pick.js +21 -0
- package/dist/package/browser/store-parts/shell.d.ts +5 -0
- package/dist/package/browser/store-parts/shell.js +37 -0
- package/dist/package/browser/store.d.ts +455 -0
- package/dist/package/browser/store.js +890 -0
- package/dist/package/browser/styles/forgeax-preview/agent-avatar.css +69 -0
- package/dist/package/browser/styles/forgeax-preview/aliases.css +21 -0
- package/dist/package/browser/styles/forgeax-preview/chat-popover.css +141 -0
- package/dist/package/browser/styles/forgeax-preview/chat-session.css +896 -0
- package/dist/package/browser/styles/forgeax-preview/composer-port.css +531 -0
- package/dist/package/browser/styles/forgeax-preview/design-tokens.css +25 -0
- package/dist/package/browser/styles/forgeax-preview/index.css +9 -0
- package/dist/package/browser/styles/forgeax-preview/scene-fx.css +117 -0
- package/dist/package/browser/styles/forgeax-preview/shell-layout.css +280 -0
- package/dist/package/browser/styles/forgeax-preview/shell-skin.css +128 -0
- package/dist/package/browser/styles/foundation.tokens.json +2755 -0
- package/dist/package/browser/styles/global.css +196 -0
- package/dist/package/browser/styles/motion.css +558 -0
- package/dist/package/browser/styles/plugin-token-bridge.css +19 -0
- package/dist/package/browser/styles/primitive.css +197 -0
- package/dist/package/browser/styles/semantic.tokens.json +1524 -0
- package/dist/package/browser/styles/tokens.css +304 -0
- package/dist/package/node/App.js +11 -0
- package/dist/package/node/ApplicationDetachedShell.js +10 -0
- package/dist/package/node/ApplicationShell.js +62 -0
- package/dist/package/node/app-kit.js +4 -0
- package/dist/package/node/appHostBootstrap.js +145 -0
- package/dist/package/node/application.js +64 -0
- package/dist/package/node/boot/SettingsSection.js +82 -0
- package/dist/package/node/boot/broadcast.js +32 -0
- package/dist/package/node/boot/driver.js +47 -0
- package/dist/package/node/boot/store.js +114 -0
- package/dist/package/node/boot/themes.js +21 -0
- package/dist/package/node/boot/types.js +30 -0
- package/dist/package/node/brand/BrandProvider.js +35 -0
- package/dist/package/node/brand/index.js +3 -0
- package/dist/package/node/brand/runtime.js +71 -0
- package/dist/package/node/brand/types.js +9 -0
- package/dist/package/node/components/ActivityRail/ActivityRail.js +164 -0
- package/dist/package/node/components/ActivityRail/activity-rail-model.js +144 -0
- package/dist/package/node/components/AgentAvatar/AgentAvatar.js +50 -0
- package/dist/package/node/components/BuildBadge/BuildBadge.js +279 -0
- package/dist/package/node/components/Bus/BusAdminPanel.js +1385 -0
- package/dist/package/node/components/Bus/CapabilityOverview.js +50 -0
- package/dist/package/node/components/ChatColumn/ChatColumn.js +18 -0
- package/dist/package/node/components/ChatColumn/SessionTabStrip.js +103 -0
- package/dist/package/node/components/ChatColumn/useChatWidth.js +13 -0
- package/dist/package/node/components/CommandPalette/CommandPalette.js +242 -0
- package/dist/package/node/components/Confirm/ConfirmDialog.js +113 -0
- package/dist/package/node/components/ContextMenu/ContextMenu.js +218 -0
- package/dist/package/node/components/ContextMenu/menuRegistry.js +152 -0
- package/dist/package/node/components/DetachedSurface.js +102 -0
- package/dist/package/node/components/DockShell/DockPanelHost.js +7 -0
- package/dist/package/node/components/DockShell/DockRegion.js +315 -0
- package/dist/package/node/components/DockShell/DockTab.js +139 -0
- package/dist/package/node/components/DockShell/ExtensionHostPanel.js +68 -0
- package/dist/package/node/components/DockShell/ExtensionRuntimeFrame.js +56 -0
- package/dist/package/node/components/DockShell/PanelWindowingBoundary.js +9 -0
- package/dist/package/node/components/DockShell/chatDockAnimation.js +101 -0
- package/dist/package/node/components/DockShell/chatDockFullscreen.js +22 -0
- package/dist/package/node/components/DockShell/chatDockLayout.js +11 -0
- package/dist/package/node/components/DockShell/compact-empty-dock-groups.js +28 -0
- package/dist/package/node/components/DockShell/crossInstanceDrop.js +1 -0
- package/dist/package/node/components/DockShell/dockResetEpoch.js +13 -0
- package/dist/package/node/components/DockShell/dockTitle.js +36 -0
- package/dist/package/node/components/DockShell/dockviewRegistry.js +1 -0
- package/dist/package/node/components/DockShell/edgeDrawer.js +1144 -0
- package/dist/package/node/components/DockShell/edgePinStore.js +37 -0
- package/dist/package/node/components/DockShell/extension-editor-bridge.js +100 -0
- package/dist/package/node/components/DockShell/extension-runtime-selection.js +6 -0
- package/dist/package/node/components/DockShell/extensionRuntime.js +84 -0
- package/dist/package/node/components/DockShell/footer-panel-visibility.js +43 -0
- package/dist/package/node/components/DockShell/footer-panels.js +7 -0
- package/dist/package/node/components/DockShell/panelRegistry.js +126 -0
- package/dist/package/node/components/DockShell/panelRenderers.js +25 -0
- package/dist/package/node/components/DockShell/panelTabCommands.js +133 -0
- package/dist/package/node/components/DockShell/panelWindowing.js +42 -0
- package/dist/package/node/components/DockShell/regions.js +1 -0
- package/dist/package/node/components/DockShell/resolveRegion.js +1 -0
- package/dist/package/node/components/DockShell/sanitizeDockLayout.js +46 -0
- package/dist/package/node/components/DockShell/sideEdgeMove.js +1 -0
- package/dist/package/node/components/DockShell/studioTabMenuProvider.js +39 -0
- package/dist/package/node/components/DockShell/tabContextMenu.js +68 -0
- package/dist/package/node/components/DockShell/ueDrag/controller.js +785 -0
- package/dist/package/node/components/DockShell/ueDrag/geometry.js +217 -0
- package/dist/package/node/components/DockShell/ueDrag/overlay.js +206 -0
- package/dist/package/node/components/DockShell/useAuxBarWidth.js +13 -0
- package/dist/package/node/components/Drawer/DrawerHostView.js +93 -0
- package/dist/package/node/components/Drawer/DrawerLauncher.js +22 -0
- package/dist/package/node/components/Drawer/useDrawerStore.js +80 -0
- package/dist/package/node/components/ErrorBoundary.js +131 -0
- package/dist/package/node/components/ExtensionHost/ExtensionIframeHost.js +179 -0
- package/dist/package/node/components/ExtensionHost/NativeExtensionHost.js +152 -0
- package/dist/package/node/components/Feedback/FeedbackPanel.js +118 -0
- package/dist/package/node/components/Feedback/PassiveFeedback.js +218 -0
- package/dist/package/node/components/Feedback/collect.js +80 -0
- package/dist/package/node/components/Feedback/store.js +174 -0
- package/dist/package/node/components/LangSwitcher/LangSwitcher.js +44 -0
- package/dist/package/node/components/MainArea/ConsolePanel.js +16 -0
- package/dist/package/node/components/MainArea/MainArea.js +20 -0
- package/dist/package/node/components/MainArea/StandaloneExtensionIframe.js +155 -0
- package/dist/package/node/components/MainArea/SurfacePanels.js +27 -0
- package/dist/package/node/components/MainArea/TelemetryViewer.js +116 -0
- package/dist/package/node/components/MenuBar/MenuBar.js +286 -0
- package/dist/package/node/components/MenuBar/index.js +1 -0
- package/dist/package/node/components/MenuBar/menubar-open-state.js +11 -0
- package/dist/package/node/components/MenuBar/menubar-surface.js +201 -0
- package/dist/package/node/components/ModelPicker/index.js +1 -0
- package/dist/package/node/components/ModelPicker/useModelCatalog.js +100 -0
- package/dist/package/node/components/Onboarding/ConnectModelPrompt.js +40 -0
- package/dist/package/node/components/Onboarding/OnboardingController.js +549 -0
- package/dist/package/node/components/Onboarding/connect-selection.js +18 -0
- package/dist/package/node/components/Onboarding/home-transition.js +20 -0
- package/dist/package/node/components/Onboarding/index.js +3 -0
- package/dist/package/node/components/Onboarding/prepareTourShell.js +11 -0
- package/dist/package/node/components/Onboarding/project-name.js +29 -0
- package/dist/package/node/components/Onboarding/types.js +77 -0
- package/dist/package/node/components/PageTabs/PageTabStrip.js +214 -0
- package/dist/package/node/components/PageTabs/openablePageTypes.js +13 -0
- package/dist/package/node/components/PanelShell/PanelShell.js +459 -0
- package/dist/package/node/components/Resize/ResizeHandle.js +1 -0
- package/dist/package/node/components/SceneBackground/SceneBackground.js +5 -0
- package/dist/package/node/components/SchemaForm/SchemaForm.js +86 -0
- package/dist/package/node/components/SchemaForm/schema-form-utils.js +51 -0
- package/dist/package/node/components/SettingsPrimitives.js +145 -0
- package/dist/package/node/components/Sidebar/BusHealthLamp.js +72 -0
- package/dist/package/node/components/Sidebar/FilesPanel.js +234 -0
- package/dist/package/node/components/Sidebar/Sidebar.js +8 -0
- package/dist/package/node/components/Sidebar/sidebar-types.js +1 -0
- package/dist/package/node/components/SlotDebugOverlay/SlotDebugOverlay.js +1 -0
- package/dist/package/node/components/SlotDebugOverlay/hashHue.js +1 -0
- package/dist/package/node/components/SlotDebugOverlay/index.js +1 -0
- package/dist/package/node/components/SlotDebugOverlay/isSlotDebugEnabled.js +1 -0
- package/dist/package/node/components/StatusBar/FatalBanner.js +52 -0
- package/dist/package/node/components/StatusBar/InfoPanel.js +128 -0
- package/dist/package/node/components/StatusBar/StatusChip.js +13 -0
- package/dist/package/node/components/StatusBar/StripHostView.js +91 -0
- package/dist/package/node/components/StatusBar/StripPopover.js +15 -0
- package/dist/package/node/components/StatusBar/feeds/PulseFeeds.js +88 -0
- package/dist/package/node/components/StatusBar/footer/CheckpointsDrawer.js +77 -0
- package/dist/package/node/components/StatusBar/footer/DiagnosticsPopover.js +108 -0
- package/dist/package/node/components/StatusBar/footer/EventsDrawer.js +25 -0
- package/dist/package/node/components/StatusBar/footer/ForgeaxBuildPopover.js +62 -0
- package/dist/package/node/components/StatusBar/healthBridge.js +245 -0
- package/dist/package/node/components/StatusBar/healthStore.js +129 -0
- package/dist/package/node/components/StatusBar/useStatusItem.js +35 -0
- package/dist/package/node/components/Surfaces/SurfaceKeepAliveLayer.js +218 -0
- package/dist/package/node/components/Surfaces/SurfaceOverlay.js +144 -0
- package/dist/package/node/components/TopBar/AndroidPackageDialog.js +115 -0
- package/dist/package/node/components/TopBar/FsBrowser.js +93 -0
- package/dist/package/node/components/TopBar/GameSwitcher.js +157 -0
- package/dist/package/node/components/TopBar/IosPackageDialog.js +115 -0
- package/dist/package/node/components/TopBar/ProjectSwitcher.js +41 -0
- package/dist/package/node/components/TopBar/PublishOnboarding.js +144 -0
- package/dist/package/node/components/TopBar/SessionSwitcher.js +124 -0
- package/dist/package/node/components/TopBar/TopBar.js +606 -0
- package/dist/package/node/components/TopBar/publish-options.js +28 -0
- package/dist/package/node/components/TourOverlay/TourOverlay.js +233 -0
- package/dist/package/node/components/TourOverlay/index.js +1 -0
- package/dist/package/node/components/ownership.js +7 -0
- package/dist/package/node/components/ui/SearchableMenu.js +40 -0
- package/dist/package/node/components/ui/alert-dialog.js +38 -0
- package/dist/package/node/components/ui/button.js +33 -0
- package/dist/package/node/components/ui/checkbox.js +8 -0
- package/dist/package/node/components/ui/command.js +20 -0
- package/dist/package/node/components/ui/dialog.js +34 -0
- package/dist/package/node/components/ui/dropdown-menu.js +30 -0
- package/dist/package/node/components/ui/input.js +8 -0
- package/dist/package/node/components/ui/label.js +7 -0
- package/dist/package/node/components/ui/popover.js +10 -0
- package/dist/package/node/components/ui/select.js +31 -0
- package/dist/package/node/components/ui/tabs.js +12 -0
- package/dist/package/node/components/ui/textarea.js +8 -0
- package/dist/package/node/components/ui/tooltip.js +10 -0
- package/dist/package/node/core/app-shell/catalog-page-extensions.js +234 -0
- package/dist/package/node/core/app-shell/derive-panel-renderers.js +17 -0
- package/dist/package/node/core/app-shell/host.js +188 -0
- package/dist/package/node/core/app-shell/index.js +8 -0
- package/dist/package/node/core/app-shell/logger.js +6 -0
- package/dist/package/node/core/app-shell/ownership.js +7 -0
- package/dist/package/node/core/app-shell/react/HostProvider.js +35 -0
- package/dist/package/node/core/app-shell/surface-extension.js +33 -0
- package/dist/package/node/core/app-shell/types.js +1 -0
- package/dist/package/node/core/contextual-keybindings.js +198 -0
- package/dist/package/node/core/extension-foundation/bus.js +3 -0
- package/dist/package/node/core/extension-foundation/capabilities.js +3 -0
- package/dist/package/node/core/extension-foundation/commands.js +3 -0
- package/dist/package/node/core/extension-foundation/context-keys.js +3 -0
- package/dist/package/node/core/extension-foundation/contribution-registry.js +3 -0
- package/dist/package/node/core/extension-foundation/errors.js +3 -0
- package/dist/package/node/core/extension-foundation/index.js +9 -0
- package/dist/package/node/core/extension-foundation/loader.js +3 -0
- package/dist/package/node/core/extension-foundation/storage.js +3 -0
- package/dist/package/node/core/extension-foundation/types.js +1 -0
- package/dist/package/node/core/extensions/builtin-commands.js +256 -0
- package/dist/package/node/core/extensions/builtin-menus.js +252 -0
- package/dist/package/node/core/extensions/chrome-drawer.js +45 -0
- package/dist/package/node/core/extensions/chrome-statusbar.js +26 -0
- package/dist/package/node/core/extensions/detached-agents-browser.js +9 -0
- package/dist/package/node/core/extensions/detached-files-browser.js +6 -0
- package/dist/package/node/core/extensions/editor-commands.js +182 -0
- package/dist/package/node/core/extensions/foundation-bus.js +3 -0
- package/dist/package/node/core/extensions/foundation-commands.js +6 -0
- package/dist/package/node/core/extensions/foundation-storage.js +3 -0
- package/dist/package/node/core/extensions/host-commands.js +52 -0
- package/dist/package/node/core/extensions/observability.js +18 -0
- package/dist/package/node/core/extensions/panels-chat.js +41 -0
- package/dist/package/node/core/extensions/panels-editor.js +26 -0
- package/dist/package/node/core/extensions/panels-viewport.js +20 -0
- package/dist/package/node/core/extensions/session-client.js +42 -0
- package/dist/package/node/core/extensions/slots-corner-agent-picker.js +6 -0
- package/dist/package/node/core/extensions/slots-main-area-body.js +6 -0
- package/dist/package/node/core/extensions/slots-sidebar-agents.js +6 -0
- package/dist/package/node/core/extensions/studio-domain-clients.js +15 -0
- package/dist/package/node/core/extensions/surfaces-scene-editor.js +6 -0
- package/dist/package/node/core/extensions/trajectory.js +50 -0
- package/dist/package/node/core/page-navigation.js +1 -0
- package/dist/package/node/core/page-platform/activity.js +46 -0
- package/dist/package/node/core/page-platform/dockview-layout.js +63 -0
- package/dist/package/node/core/page-platform/index.js +8 -0
- package/dist/package/node/core/page-platform/layout-store.js +54 -0
- package/dist/package/node/core/page-platform/page-dirty-probe.js +4 -0
- package/dist/package/node/core/page-platform/registry.js +194 -0
- package/dist/package/node/core/page-platform/resource-editor.js +74 -0
- package/dist/package/node/core/page-platform/session.js +327 -0
- package/dist/package/node/core/page-platform/types.js +10 -0
- package/dist/package/node/core/panels/context-expression.js +1 -0
- package/dist/package/node/core/panels/drawer.js +1 -0
- package/dist/package/node/core/panels/index.js +7 -0
- package/dist/package/node/core/panels/panel-action-registry.js +62 -0
- package/dist/package/node/core/panels/panel-control-registry.js +54 -0
- package/dist/package/node/core/panels/resolve-panel-action-state.js +9 -0
- package/dist/package/node/core/panels/strip.js +1 -0
- package/dist/package/node/core/panels/types.js +1 -0
- package/dist/package/node/i18n/index.js +207 -0
- package/dist/package/node/i18n/locales/en.json +1959 -0
- package/dist/package/node/i18n/locales/zh.json +1959 -0
- package/dist/package/node/index.js +2 -0
- package/dist/package/node/lib/a11y-summary.js +66 -0
- package/dist/package/node/lib/action-dom-discovery.js +84 -0
- package/dist/package/node/lib/action-registry.js +210 -0
- package/dist/package/node/lib/aegis.js +230 -0
- package/dist/package/node/lib/agent-catalog-url.js +24 -0
- package/dist/package/node/lib/agent-cli-provider.js +81 -0
- package/dist/package/node/lib/ai-intents.js +52 -0
- package/dist/package/node/lib/broadcast-stream.js +163 -0
- package/dist/package/node/lib/browser-prefs-sync.js +151 -0
- package/dist/package/node/lib/builtin-actions.js +558 -0
- package/dist/package/node/lib/bus.js +71 -0
- package/dist/package/node/lib/checkpoint-api.js +41 -0
- package/dist/package/node/lib/cli-providers.js +61 -0
- package/dist/package/node/lib/command-palette-store.js +22 -0
- package/dist/package/node/lib/composer-bridge.js +448 -0
- package/dist/package/node/lib/dashboard-api.js +125 -0
- package/dist/package/node/lib/deep-link-bus.js +35 -0
- package/dist/package/node/lib/dialog.js +103 -0
- package/dist/package/node/lib/editor-facts-bus.js +25 -0
- package/dist/package/node/lib/extension-api.js +90 -0
- package/dist/package/node/lib/file-activity-stream.js +123 -0
- package/dist/package/node/lib/file-family.js +25 -0
- package/dist/package/node/lib/game-templates.js +15 -0
- package/dist/package/node/lib/global-shortcuts.js +551 -0
- package/dist/package/node/lib/logSink.js +128 -0
- package/dist/package/node/lib/lucide-icon.js +20 -0
- package/dist/package/node/lib/menu-registry.js +197 -0
- package/dist/package/node/lib/model-config.js +72 -0
- package/dist/package/node/lib/model-prefs.js +53 -0
- package/dist/package/node/lib/model-route/index.js +175 -0
- package/dist/package/node/lib/narrative-copilot.js +105 -0
- package/dist/package/node/lib/native-menu-bridge.js +151 -0
- package/dist/package/node/lib/page-tab-icons.js +64 -0
- package/dist/package/node/lib/panel-tab-icons.js +49 -0
- package/dist/package/node/lib/passive-feedback.js +171 -0
- package/dist/package/node/lib/perception-stream.js +42 -0
- package/dist/package/node/lib/platform/index.js +13 -0
- package/dist/package/node/lib/platform/runtime.js +42 -0
- package/dist/package/node/lib/platform/shell-adapter.js +74 -0
- package/dist/package/node/lib/platform/surface-windowing.js +16 -0
- package/dist/package/node/lib/platform/surface.js +27 -0
- package/dist/package/node/lib/platform/use-surface-windowing.js +6 -0
- package/dist/package/node/lib/platform/window-manager.js +82 -0
- package/dist/package/node/lib/project-context.js +42 -0
- package/dist/package/node/lib/project.js +8 -0
- package/dist/package/node/lib/recent-games.js +50 -0
- package/dist/package/node/lib/repair-builtin-menus.js +18 -0
- package/dist/package/node/lib/reply-language.js +11 -0
- package/dist/package/node/lib/resilient-polling.js +16 -0
- package/dist/package/node/lib/session-time.js +40 -0
- package/dist/package/node/lib/shell-live-data.js +66 -0
- package/dist/package/node/lib/sse.js +42 -0
- package/dist/package/node/lib/storageKeys.js +89 -0
- package/dist/package/node/lib/surface-store.js +62 -0
- package/dist/package/node/lib/surface.js +225 -0
- package/dist/package/node/lib/surfaceAnchors.js +76 -0
- package/dist/package/node/lib/surfaceKeepAliveLayout.js +12 -0
- package/dist/package/node/lib/telemetry-test-prelude.js +14 -0
- package/dist/package/node/lib/text-edit-actions.js +184 -0
- package/dist/package/node/lib/trace.js +273 -0
- package/dist/package/node/lib/trustedOrigins.js +36 -0
- package/dist/package/node/lib/ui-action-highlight.js +93 -0
- package/dist/package/node/lib/ui-bridge.js +224 -0
- package/dist/package/node/lib/ui-screenshot.js +155 -0
- package/dist/package/node/lib/ui-trajectory.js +99 -0
- package/dist/package/node/lib/use-bus-snapshot.js +13 -0
- package/dist/package/node/lib/use-extension-manifest.js +67 -0
- package/dist/package/node/lib/useConfirmToast.js +120 -0
- package/dist/package/node/lib/utils.js +5 -0
- package/dist/package/node/lib/vag-action-bridge.js +130 -0
- package/dist/package/node/main.js +157 -0
- package/dist/package/node/store-parts/domain-clients.js +17 -0
- package/dist/package/node/store-parts/observability.js +35 -0
- package/dist/package/node/store-parts/persistence.js +245 -0
- package/dist/package/node/store-parts/session-client.js +17 -0
- package/dist/package/node/store-parts/session-pick.js +21 -0
- package/dist/package/node/store-parts/shell.js +37 -0
- package/dist/package/node/store.js +890 -0
- package/dist/package/node/styles/foundation.tokens.json +2755 -0
- package/dist/package/node/styles/semantic.tokens.json +1524 -0
- package/dist/package/packages/design/styles/fx-bridge.css +25 -0
- package/dist/package/packages/design/styles/primitive.css +199 -0
- package/dist/package/packages/design/styles/semantic.css +262 -0
- package/dist/package/packages/design/theme.d.ts +15 -0
- package/dist/package/packages/design/theme.js +31 -0
- package/dist/package/packages/design/tokens.css +14 -0
- package/package.json +145 -0
|
@@ -0,0 +1,1524 @@
|
|
|
1
|
+
{
|
|
2
|
+
"color": {
|
|
3
|
+
"text": {
|
|
4
|
+
"primary": {
|
|
5
|
+
"$type": "color",
|
|
6
|
+
"$value": {
|
|
7
|
+
"colorSpace": "srgb",
|
|
8
|
+
"components": [
|
|
9
|
+
1,
|
|
10
|
+
1,
|
|
11
|
+
1
|
|
12
|
+
],
|
|
13
|
+
"alpha": 1,
|
|
14
|
+
"hex": "#FFFFFF"
|
|
15
|
+
},
|
|
16
|
+
"$extensions": {
|
|
17
|
+
"com.figma.variableId": "VariableID:7:2313",
|
|
18
|
+
"com.figma.scopes": [
|
|
19
|
+
"ALL_SCOPES"
|
|
20
|
+
],
|
|
21
|
+
"com.figma.aliasData": {
|
|
22
|
+
"targetVariableId": "VariableID:1b27cfbbf4e92538558d2718286701329a422401/-1:-1",
|
|
23
|
+
"targetVariableName": "color/neutral/0",
|
|
24
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
25
|
+
"targetVariableSetName": "Primitive"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"secondary": {
|
|
30
|
+
"$type": "color",
|
|
31
|
+
"$value": {
|
|
32
|
+
"colorSpace": "srgb",
|
|
33
|
+
"components": [
|
|
34
|
+
1,
|
|
35
|
+
1,
|
|
36
|
+
1
|
|
37
|
+
],
|
|
38
|
+
"alpha": 0.6000000238418579,
|
|
39
|
+
"hex": "#FFFFFF"
|
|
40
|
+
},
|
|
41
|
+
"$extensions": {
|
|
42
|
+
"com.figma.variableId": "VariableID:7:2314",
|
|
43
|
+
"com.figma.scopes": [
|
|
44
|
+
"ALL_SCOPES"
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"tertiary": {
|
|
49
|
+
"$type": "color",
|
|
50
|
+
"$value": {
|
|
51
|
+
"colorSpace": "srgb",
|
|
52
|
+
"components": [
|
|
53
|
+
1,
|
|
54
|
+
1,
|
|
55
|
+
1
|
|
56
|
+
],
|
|
57
|
+
"alpha": 0.30000001192092896,
|
|
58
|
+
"hex": "#FFFFFF"
|
|
59
|
+
},
|
|
60
|
+
"$extensions": {
|
|
61
|
+
"com.figma.variableId": "VariableID:7:2315",
|
|
62
|
+
"com.figma.scopes": [
|
|
63
|
+
"ALL_SCOPES"
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"disabled": {
|
|
68
|
+
"$type": "color",
|
|
69
|
+
"$value": {
|
|
70
|
+
"colorSpace": "srgb",
|
|
71
|
+
"components": [
|
|
72
|
+
1,
|
|
73
|
+
1,
|
|
74
|
+
1
|
|
75
|
+
],
|
|
76
|
+
"alpha": 0.20000000298023224,
|
|
77
|
+
"hex": "#FFFFFF"
|
|
78
|
+
},
|
|
79
|
+
"$description": "Replaces --text-dim; use for placeholder / disabled text on dark surfaces",
|
|
80
|
+
"$extensions": {
|
|
81
|
+
"com.figma.variableId": "VariableID:7:2316",
|
|
82
|
+
"com.figma.scopes": [
|
|
83
|
+
"ALL_SCOPES"
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"on-bright-primary": {
|
|
88
|
+
"$type": "color",
|
|
89
|
+
"$value": {
|
|
90
|
+
"colorSpace": "srgb",
|
|
91
|
+
"components": [
|
|
92
|
+
0,
|
|
93
|
+
0,
|
|
94
|
+
0
|
|
95
|
+
],
|
|
96
|
+
"alpha": 1,
|
|
97
|
+
"hex": "#000000"
|
|
98
|
+
},
|
|
99
|
+
"$extensions": {
|
|
100
|
+
"com.figma.variableId": "VariableID:7:2317",
|
|
101
|
+
"com.figma.scopes": [
|
|
102
|
+
"ALL_SCOPES"
|
|
103
|
+
],
|
|
104
|
+
"com.figma.aliasData": {
|
|
105
|
+
"targetVariableId": "VariableID:3e30ecfe0394e29a33fe87f0378e0c4c2056c837/-1:-1",
|
|
106
|
+
"targetVariableName": "color/neutral/1000",
|
|
107
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
108
|
+
"targetVariableSetName": "Primitive"
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"on-bright-secondary": {
|
|
113
|
+
"$type": "color",
|
|
114
|
+
"$value": {
|
|
115
|
+
"colorSpace": "srgb",
|
|
116
|
+
"components": [
|
|
117
|
+
0,
|
|
118
|
+
0,
|
|
119
|
+
0
|
|
120
|
+
],
|
|
121
|
+
"alpha": 0.6000000238418579,
|
|
122
|
+
"hex": "#000000"
|
|
123
|
+
},
|
|
124
|
+
"$extensions": {
|
|
125
|
+
"com.figma.variableId": "VariableID:7:2318",
|
|
126
|
+
"com.figma.scopes": [
|
|
127
|
+
"ALL_SCOPES"
|
|
128
|
+
]
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"on-bright-tertiary": {
|
|
132
|
+
"$type": "color",
|
|
133
|
+
"$value": {
|
|
134
|
+
"colorSpace": "srgb",
|
|
135
|
+
"components": [
|
|
136
|
+
0,
|
|
137
|
+
0,
|
|
138
|
+
0
|
|
139
|
+
],
|
|
140
|
+
"alpha": 0.30000001192092896,
|
|
141
|
+
"hex": "#000000"
|
|
142
|
+
},
|
|
143
|
+
"$extensions": {
|
|
144
|
+
"com.figma.variableId": "VariableID:7:2319",
|
|
145
|
+
"com.figma.scopes": [
|
|
146
|
+
"ALL_SCOPES"
|
|
147
|
+
]
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"on-bright-disabled": {
|
|
151
|
+
"$type": "color",
|
|
152
|
+
"$value": {
|
|
153
|
+
"colorSpace": "srgb",
|
|
154
|
+
"components": [
|
|
155
|
+
0,
|
|
156
|
+
0,
|
|
157
|
+
0
|
|
158
|
+
],
|
|
159
|
+
"alpha": 0.10000000149011612,
|
|
160
|
+
"hex": "#000000"
|
|
161
|
+
},
|
|
162
|
+
"$extensions": {
|
|
163
|
+
"com.figma.variableId": "VariableID:7:2320",
|
|
164
|
+
"com.figma.scopes": [
|
|
165
|
+
"ALL_SCOPES"
|
|
166
|
+
]
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"icon": {
|
|
171
|
+
"primary": {
|
|
172
|
+
"$type": "color",
|
|
173
|
+
"$value": "{color.text.primary}",
|
|
174
|
+
"$extensions": {
|
|
175
|
+
"com.figma.variableId": "VariableID:7:2321",
|
|
176
|
+
"com.figma.scopes": [
|
|
177
|
+
"ALL_SCOPES"
|
|
178
|
+
]
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"secondary": {
|
|
182
|
+
"$type": "color",
|
|
183
|
+
"$value": "{color.text.secondary}",
|
|
184
|
+
"$extensions": {
|
|
185
|
+
"com.figma.variableId": "VariableID:7:2322",
|
|
186
|
+
"com.figma.scopes": [
|
|
187
|
+
"ALL_SCOPES"
|
|
188
|
+
]
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"tertiary": {
|
|
192
|
+
"$type": "color",
|
|
193
|
+
"$value": "{color.text.tertiary}",
|
|
194
|
+
"$extensions": {
|
|
195
|
+
"com.figma.variableId": "VariableID:7:2323",
|
|
196
|
+
"com.figma.scopes": [
|
|
197
|
+
"ALL_SCOPES"
|
|
198
|
+
]
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"disabled": {
|
|
202
|
+
"$type": "color",
|
|
203
|
+
"$value": "{color.text.disabled}",
|
|
204
|
+
"$extensions": {
|
|
205
|
+
"com.figma.variableId": "VariableID:7:2324",
|
|
206
|
+
"com.figma.scopes": [
|
|
207
|
+
"ALL_SCOPES"
|
|
208
|
+
]
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"on-bright-primary": {
|
|
212
|
+
"$type": "color",
|
|
213
|
+
"$value": "{color.text.on-bright-primary}",
|
|
214
|
+
"$extensions": {
|
|
215
|
+
"com.figma.variableId": "VariableID:7:2325",
|
|
216
|
+
"com.figma.scopes": [
|
|
217
|
+
"ALL_SCOPES"
|
|
218
|
+
]
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"on-bright-secondary": {
|
|
222
|
+
"$type": "color",
|
|
223
|
+
"$value": "{color.text.on-bright-secondary}",
|
|
224
|
+
"$extensions": {
|
|
225
|
+
"com.figma.variableId": "VariableID:7:2326",
|
|
226
|
+
"com.figma.scopes": [
|
|
227
|
+
"ALL_SCOPES"
|
|
228
|
+
]
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"on-bright-tertiary": {
|
|
232
|
+
"$type": "color",
|
|
233
|
+
"$value": "{color.text.on-bright-tertiary}",
|
|
234
|
+
"$extensions": {
|
|
235
|
+
"com.figma.variableId": "VariableID:7:2327",
|
|
236
|
+
"com.figma.scopes": [
|
|
237
|
+
"ALL_SCOPES"
|
|
238
|
+
]
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"on-dark-disabled": {
|
|
242
|
+
"$type": "color",
|
|
243
|
+
"$value": "{color.text.on-bright-disabled}",
|
|
244
|
+
"$extensions": {
|
|
245
|
+
"com.figma.variableId": "VariableID:7:2328",
|
|
246
|
+
"com.figma.scopes": [
|
|
247
|
+
"ALL_SCOPES"
|
|
248
|
+
]
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"background": {
|
|
253
|
+
"canvas": {
|
|
254
|
+
"$type": "color",
|
|
255
|
+
"$value": {
|
|
256
|
+
"colorSpace": "srgb",
|
|
257
|
+
"components": [
|
|
258
|
+
0.050999999046325684,
|
|
259
|
+
0.050999999046325684,
|
|
260
|
+
0.050999999046325684
|
|
261
|
+
],
|
|
262
|
+
"alpha": 1,
|
|
263
|
+
"hex": "#0D0D0D"
|
|
264
|
+
},
|
|
265
|
+
"$description": "Deepest surface — maps to --bg-0 (#0A0A0A ≈ neutral/950)",
|
|
266
|
+
"$extensions": {
|
|
267
|
+
"com.figma.variableId": "VariableID:7:2329",
|
|
268
|
+
"com.figma.scopes": [
|
|
269
|
+
"ALL_SCOPES"
|
|
270
|
+
],
|
|
271
|
+
"com.figma.aliasData": {
|
|
272
|
+
"targetVariableId": "VariableID:9b0505efb57e6cdc9cf88feb9c636776116cc6ff/-1:-1",
|
|
273
|
+
"targetVariableName": "color/neutral/950",
|
|
274
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
275
|
+
"targetVariableSetName": "Primitive"
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
"base": {
|
|
280
|
+
"$type": "color",
|
|
281
|
+
"$value": {
|
|
282
|
+
"colorSpace": "srgb",
|
|
283
|
+
"components": [
|
|
284
|
+
0.09799999743700027,
|
|
285
|
+
0.09799999743700027,
|
|
286
|
+
0.09799999743700027
|
|
287
|
+
],
|
|
288
|
+
"alpha": 1,
|
|
289
|
+
"hex": "#191919"
|
|
290
|
+
},
|
|
291
|
+
"$description": "TopBar + Panel shared surface — maps to --bg-1 (neutral/900)",
|
|
292
|
+
"$extensions": {
|
|
293
|
+
"com.figma.variableId": "VariableID:7:2330",
|
|
294
|
+
"com.figma.scopes": [
|
|
295
|
+
"ALL_SCOPES"
|
|
296
|
+
],
|
|
297
|
+
"com.figma.aliasData": {
|
|
298
|
+
"targetVariableId": "VariableID:78c078bca164d9d85c7dd47763ce525a9782174d/-1:-1",
|
|
299
|
+
"targetVariableName": "color/neutral/900",
|
|
300
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
301
|
+
"targetVariableSetName": "Primitive"
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"elevated": {
|
|
306
|
+
"$type": "color",
|
|
307
|
+
"$value": {
|
|
308
|
+
"colorSpace": "srgb",
|
|
309
|
+
"components": [
|
|
310
|
+
0.1411764770746231,
|
|
311
|
+
0.1411764770746231,
|
|
312
|
+
0.1411764770746231
|
|
313
|
+
],
|
|
314
|
+
"alpha": 1,
|
|
315
|
+
"hex": "#242424"
|
|
316
|
+
},
|
|
317
|
+
"$description": "Component / card surface — maps to --bg-2 (neutral/850)",
|
|
318
|
+
"$extensions": {
|
|
319
|
+
"com.figma.variableId": "VariableID:7:2331",
|
|
320
|
+
"com.figma.scopes": [
|
|
321
|
+
"ALL_SCOPES"
|
|
322
|
+
],
|
|
323
|
+
"com.figma.aliasData": {
|
|
324
|
+
"targetVariableId": "VariableID:caa1c01051ded0c3d4be0c542d6d933dbf6cd010/-1:-1",
|
|
325
|
+
"targetVariableName": "color/neutral/850",
|
|
326
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
327
|
+
"targetVariableSetName": "Primitive"
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"floating": {
|
|
332
|
+
"$type": "color",
|
|
333
|
+
"$value": {
|
|
334
|
+
"colorSpace": "srgb",
|
|
335
|
+
"components": [
|
|
336
|
+
0.20000000298023224,
|
|
337
|
+
0.20000000298023224,
|
|
338
|
+
0.20000000298023224
|
|
339
|
+
],
|
|
340
|
+
"alpha": 1,
|
|
341
|
+
"hex": "#333333"
|
|
342
|
+
},
|
|
343
|
+
"$description": "Hover card / tooltip surface — maps to --bg-3 (neutral/800)",
|
|
344
|
+
"$extensions": {
|
|
345
|
+
"com.figma.variableId": "VariableID:7:2332",
|
|
346
|
+
"com.figma.scopes": [
|
|
347
|
+
"ALL_SCOPES"
|
|
348
|
+
],
|
|
349
|
+
"com.figma.aliasData": {
|
|
350
|
+
"targetVariableId": "VariableID:7920839157d01c62a0e495641ab5fa8c3dd1a662/-1:-1",
|
|
351
|
+
"targetVariableName": "color/neutral/800",
|
|
352
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
353
|
+
"targetVariableSetName": "Primitive"
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
"border": {
|
|
359
|
+
"subtle": {
|
|
360
|
+
"$type": "color",
|
|
361
|
+
"$value": {
|
|
362
|
+
"colorSpace": "srgb",
|
|
363
|
+
"components": [
|
|
364
|
+
0.25099998712539673,
|
|
365
|
+
0.25099998712539673,
|
|
366
|
+
0.25099998712539673
|
|
367
|
+
],
|
|
368
|
+
"alpha": 1,
|
|
369
|
+
"hex": "#404040"
|
|
370
|
+
},
|
|
371
|
+
"$extensions": {
|
|
372
|
+
"com.figma.variableId": "VariableID:7:2333",
|
|
373
|
+
"com.figma.scopes": [
|
|
374
|
+
"ALL_SCOPES"
|
|
375
|
+
],
|
|
376
|
+
"com.figma.aliasData": {
|
|
377
|
+
"targetVariableId": "VariableID:700ee0ed9b7a4f4cff9415609b7d2a9296b9a4f1/-1:-1",
|
|
378
|
+
"targetVariableName": "color/neutral/750",
|
|
379
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
380
|
+
"targetVariableSetName": "Primitive"
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"default": {
|
|
385
|
+
"$type": "color",
|
|
386
|
+
"$value": {
|
|
387
|
+
"colorSpace": "srgb",
|
|
388
|
+
"components": [
|
|
389
|
+
0.3490000069141388,
|
|
390
|
+
0.3490000069141388,
|
|
391
|
+
0.3490000069141388
|
|
392
|
+
],
|
|
393
|
+
"alpha": 1,
|
|
394
|
+
"hex": "#595959"
|
|
395
|
+
},
|
|
396
|
+
"$extensions": {
|
|
397
|
+
"com.figma.variableId": "VariableID:7:2334",
|
|
398
|
+
"com.figma.scopes": [
|
|
399
|
+
"ALL_SCOPES"
|
|
400
|
+
],
|
|
401
|
+
"com.figma.aliasData": {
|
|
402
|
+
"targetVariableId": "VariableID:c31da416a1a3cf2d103a9c3203b9220bcba566e9/-1:-1",
|
|
403
|
+
"targetVariableName": "color/neutral/650",
|
|
404
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
405
|
+
"targetVariableSetName": "Primitive"
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"strong": {
|
|
410
|
+
"$type": "color",
|
|
411
|
+
"$value": {
|
|
412
|
+
"colorSpace": "srgb",
|
|
413
|
+
"components": [
|
|
414
|
+
0.6000000238418579,
|
|
415
|
+
0.6000000238418579,
|
|
416
|
+
0.6000000238418579
|
|
417
|
+
],
|
|
418
|
+
"alpha": 1,
|
|
419
|
+
"hex": "#999999"
|
|
420
|
+
},
|
|
421
|
+
"$extensions": {
|
|
422
|
+
"com.figma.variableId": "VariableID:7:2335",
|
|
423
|
+
"com.figma.scopes": [
|
|
424
|
+
"ALL_SCOPES"
|
|
425
|
+
],
|
|
426
|
+
"com.figma.aliasData": {
|
|
427
|
+
"targetVariableId": "VariableID:b849ba803d75b3409a7d615d2ddca1a2d5674a55/-1:-1",
|
|
428
|
+
"targetVariableName": "color/neutral/400",
|
|
429
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
430
|
+
"targetVariableSetName": "Primitive"
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
},
|
|
435
|
+
"brand": {
|
|
436
|
+
"primary": {
|
|
437
|
+
"$type": "color",
|
|
438
|
+
"$value": {
|
|
439
|
+
"colorSpace": "srgb",
|
|
440
|
+
"components": [
|
|
441
|
+
0.8313725590705872,
|
|
442
|
+
1,
|
|
443
|
+
0.2823529541492462
|
|
444
|
+
],
|
|
445
|
+
"alpha": 1,
|
|
446
|
+
"hex": "#D4FF48"
|
|
447
|
+
},
|
|
448
|
+
"$description": "Brand primary — lime/400",
|
|
449
|
+
"$extensions": {
|
|
450
|
+
"com.figma.variableId": "VariableID:7:2336",
|
|
451
|
+
"com.figma.scopes": [
|
|
452
|
+
"ALL_SCOPES"
|
|
453
|
+
],
|
|
454
|
+
"com.figma.aliasData": {
|
|
455
|
+
"targetVariableId": "VariableID:b1d38c4fb6dcf83ecfa053d2c82752d8e880953b/-1:-1",
|
|
456
|
+
"targetVariableName": "color/lime/400",
|
|
457
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
458
|
+
"targetVariableSetName": "Primitive"
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
"primary-light": {
|
|
463
|
+
"$type": "color",
|
|
464
|
+
"$value": {
|
|
465
|
+
"colorSpace": "srgb",
|
|
466
|
+
"components": [
|
|
467
|
+
0.8744999766349792,
|
|
468
|
+
1,
|
|
469
|
+
0.4706000089645386
|
|
470
|
+
],
|
|
471
|
+
"alpha": 1,
|
|
472
|
+
"hex": "#DFFF78"
|
|
473
|
+
},
|
|
474
|
+
"$description": "Lighter primary variant — lime/300; maps to --primary-light",
|
|
475
|
+
"$extensions": {
|
|
476
|
+
"com.figma.variableId": "VariableID:7:2337",
|
|
477
|
+
"com.figma.scopes": [
|
|
478
|
+
"ALL_SCOPES"
|
|
479
|
+
],
|
|
480
|
+
"com.figma.aliasData": {
|
|
481
|
+
"targetVariableId": "VariableID:c7a065071a338e05d6a4170298907ebed7b0b788/-1:-1",
|
|
482
|
+
"targetVariableName": "color/lime/300",
|
|
483
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
484
|
+
"targetVariableSetName": "Primitive"
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
},
|
|
488
|
+
"primary-soft": {
|
|
489
|
+
"$type": "color",
|
|
490
|
+
"$value": {
|
|
491
|
+
"colorSpace": "srgb",
|
|
492
|
+
"components": [
|
|
493
|
+
0.4156999886035919,
|
|
494
|
+
0.49799999594688416,
|
|
495
|
+
0.1412000060081482
|
|
496
|
+
],
|
|
497
|
+
"alpha": 1,
|
|
498
|
+
"hex": "#6A7F24"
|
|
499
|
+
},
|
|
500
|
+
"$description": "Dark primary variant for tinted backgrounds — lime/700; maps to --primary-soft",
|
|
501
|
+
"$extensions": {
|
|
502
|
+
"com.figma.variableId": "VariableID:7:2338",
|
|
503
|
+
"com.figma.scopes": [
|
|
504
|
+
"ALL_SCOPES"
|
|
505
|
+
],
|
|
506
|
+
"com.figma.aliasData": {
|
|
507
|
+
"targetVariableId": "VariableID:7719cad6a514f6f3affc167310934d3b353ce6ed/-1:-1",
|
|
508
|
+
"targetVariableName": "color/lime/700",
|
|
509
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
510
|
+
"targetVariableSetName": "Primitive"
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"primary-hover": {
|
|
515
|
+
"$type": "color",
|
|
516
|
+
"$value": {
|
|
517
|
+
"colorSpace": "srgb",
|
|
518
|
+
"components": [
|
|
519
|
+
0.7725490196078432,
|
|
520
|
+
0.9411764705882353,
|
|
521
|
+
0.2196078431372549
|
|
522
|
+
],
|
|
523
|
+
"alpha": 1,
|
|
524
|
+
"hex": "#C5F038"
|
|
525
|
+
},
|
|
526
|
+
"$extensions": {
|
|
527
|
+
"com.figma.scopes": [
|
|
528
|
+
"ALL_SCOPES"
|
|
529
|
+
]
|
|
530
|
+
},
|
|
531
|
+
"$description": "Primary button :hover — darkened lime"
|
|
532
|
+
}
|
|
533
|
+
},
|
|
534
|
+
"accent": {
|
|
535
|
+
"blue": {
|
|
536
|
+
"default": {
|
|
537
|
+
"$type": "color",
|
|
538
|
+
"$value": {
|
|
539
|
+
"colorSpace": "srgb",
|
|
540
|
+
"components": [
|
|
541
|
+
0.3882000148296356,
|
|
542
|
+
0.6118000149726868,
|
|
543
|
+
0.9725000262260437
|
|
544
|
+
],
|
|
545
|
+
"alpha": 1,
|
|
546
|
+
"hex": "#639CF8"
|
|
547
|
+
},
|
|
548
|
+
"$extensions": {
|
|
549
|
+
"com.figma.variableId": "VariableID:7:2339",
|
|
550
|
+
"com.figma.scopes": [
|
|
551
|
+
"ALL_SCOPES"
|
|
552
|
+
],
|
|
553
|
+
"com.figma.aliasData": {
|
|
554
|
+
"targetVariableId": "VariableID:f9caf93a65606a11effa263255642c66a535e41e/-1:-1",
|
|
555
|
+
"targetVariableName": "color/blue/400",
|
|
556
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
557
|
+
"targetVariableSetName": "Primitive"
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
"soft": {
|
|
562
|
+
"$type": "color",
|
|
563
|
+
"$value": {
|
|
564
|
+
"colorSpace": "srgb",
|
|
565
|
+
"components": [
|
|
566
|
+
0.04309999942779541,
|
|
567
|
+
0.0940999984741211,
|
|
568
|
+
0.17649999260902405
|
|
569
|
+
],
|
|
570
|
+
"alpha": 1,
|
|
571
|
+
"hex": "#0B182D"
|
|
572
|
+
},
|
|
573
|
+
"$extensions": {
|
|
574
|
+
"com.figma.variableId": "VariableID:7:2340",
|
|
575
|
+
"com.figma.scopes": [
|
|
576
|
+
"ALL_SCOPES"
|
|
577
|
+
],
|
|
578
|
+
"com.figma.aliasData": {
|
|
579
|
+
"targetVariableId": "VariableID:71fe45d5303a4b4b1e30218a1a3649be922aeee1/-1:-1",
|
|
580
|
+
"targetVariableName": "color/blue/900",
|
|
581
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
582
|
+
"targetVariableSetName": "Primitive"
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
"green": {
|
|
588
|
+
"default": {
|
|
589
|
+
"$type": "color",
|
|
590
|
+
"$value": {
|
|
591
|
+
"colorSpace": "srgb",
|
|
592
|
+
"components": [
|
|
593
|
+
0.30979999899864197,
|
|
594
|
+
0.819599986076355,
|
|
595
|
+
0.49799999594688416
|
|
596
|
+
],
|
|
597
|
+
"alpha": 1,
|
|
598
|
+
"hex": "#4FD17F"
|
|
599
|
+
},
|
|
600
|
+
"$extensions": {
|
|
601
|
+
"com.figma.variableId": "VariableID:7:2341",
|
|
602
|
+
"com.figma.scopes": [
|
|
603
|
+
"ALL_SCOPES"
|
|
604
|
+
],
|
|
605
|
+
"com.figma.aliasData": {
|
|
606
|
+
"targetVariableId": "VariableID:fda8f4a992d8e786cdf0d8284ce1d458a36bf730/-1:-1",
|
|
607
|
+
"targetVariableName": "color/green/400",
|
|
608
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
609
|
+
"targetVariableSetName": "Primitive"
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
"soft": {
|
|
614
|
+
"$type": "color",
|
|
615
|
+
"$value": {
|
|
616
|
+
"colorSpace": "srgb",
|
|
617
|
+
"components": [
|
|
618
|
+
0.050999999046325684,
|
|
619
|
+
0.2980000078678131,
|
|
620
|
+
0.1412000060081482
|
|
621
|
+
],
|
|
622
|
+
"alpha": 1,
|
|
623
|
+
"hex": "#0D4C24"
|
|
624
|
+
},
|
|
625
|
+
"$extensions": {
|
|
626
|
+
"com.figma.variableId": "VariableID:7:2342",
|
|
627
|
+
"com.figma.scopes": [
|
|
628
|
+
"ALL_SCOPES"
|
|
629
|
+
],
|
|
630
|
+
"com.figma.aliasData": {
|
|
631
|
+
"targetVariableId": "VariableID:5d9419d9ca4c4a753ae9f7a37ff091c8c9c5fe17/-1:-1",
|
|
632
|
+
"targetVariableName": "color/green/800",
|
|
633
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
634
|
+
"targetVariableSetName": "Primitive"
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
},
|
|
639
|
+
"orange": {
|
|
640
|
+
"default": {
|
|
641
|
+
"$type": "color",
|
|
642
|
+
"$value": {
|
|
643
|
+
"colorSpace": "srgb",
|
|
644
|
+
"components": [
|
|
645
|
+
1,
|
|
646
|
+
0.6901999711990356,
|
|
647
|
+
0.33730000257492065
|
|
648
|
+
],
|
|
649
|
+
"alpha": 1,
|
|
650
|
+
"hex": "#FFB056"
|
|
651
|
+
},
|
|
652
|
+
"$extensions": {
|
|
653
|
+
"com.figma.variableId": "VariableID:7:2343",
|
|
654
|
+
"com.figma.scopes": [
|
|
655
|
+
"ALL_SCOPES"
|
|
656
|
+
],
|
|
657
|
+
"com.figma.aliasData": {
|
|
658
|
+
"targetVariableId": "VariableID:d4622dad08d9087422b12ae4ac7013cfbc972153/-1:-1",
|
|
659
|
+
"targetVariableName": "color/orange/400",
|
|
660
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
661
|
+
"targetVariableSetName": "Primitive"
|
|
662
|
+
}
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
"soft": {
|
|
666
|
+
"$type": "color",
|
|
667
|
+
"$value": {
|
|
668
|
+
"colorSpace": "srgb",
|
|
669
|
+
"components": [
|
|
670
|
+
0.3882000148296356,
|
|
671
|
+
0.2353000044822693,
|
|
672
|
+
0.06270000338554382
|
|
673
|
+
],
|
|
674
|
+
"alpha": 1,
|
|
675
|
+
"hex": "#633C10"
|
|
676
|
+
},
|
|
677
|
+
"$extensions": {
|
|
678
|
+
"com.figma.variableId": "VariableID:7:2344",
|
|
679
|
+
"com.figma.scopes": [
|
|
680
|
+
"ALL_SCOPES"
|
|
681
|
+
],
|
|
682
|
+
"com.figma.aliasData": {
|
|
683
|
+
"targetVariableId": "VariableID:96cf7d43464c15b0ac02f300a401ebefe5826b7b/-1:-1",
|
|
684
|
+
"targetVariableName": "color/orange/800",
|
|
685
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
686
|
+
"targetVariableSetName": "Primitive"
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
"purple": {
|
|
692
|
+
"default": {
|
|
693
|
+
"$type": "color",
|
|
694
|
+
"$value": {
|
|
695
|
+
"colorSpace": "srgb",
|
|
696
|
+
"components": [
|
|
697
|
+
0.6588000059127808,
|
|
698
|
+
0.33329999446868896,
|
|
699
|
+
0.9685999751091003
|
|
700
|
+
],
|
|
701
|
+
"alpha": 1,
|
|
702
|
+
"hex": "#A855F7"
|
|
703
|
+
},
|
|
704
|
+
"$extensions": {
|
|
705
|
+
"com.figma.variableId": "VariableID:7:2345",
|
|
706
|
+
"com.figma.scopes": [
|
|
707
|
+
"ALL_SCOPES"
|
|
708
|
+
],
|
|
709
|
+
"com.figma.aliasData": {
|
|
710
|
+
"targetVariableId": "VariableID:e9e536a7ad9bfbb3b639f40ce9ef1d59d71ac4a9/-1:-1",
|
|
711
|
+
"targetVariableName": "color/purple/500",
|
|
712
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
713
|
+
"targetVariableSetName": "Primitive"
|
|
714
|
+
}
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
"soft": {
|
|
718
|
+
"$type": "color",
|
|
719
|
+
"$value": {
|
|
720
|
+
"colorSpace": "srgb",
|
|
721
|
+
"components": [
|
|
722
|
+
0.2549000084400177,
|
|
723
|
+
0.12939999997615814,
|
|
724
|
+
0.3765000104904175
|
|
725
|
+
],
|
|
726
|
+
"alpha": 1,
|
|
727
|
+
"hex": "#412160"
|
|
728
|
+
},
|
|
729
|
+
"$extensions": {
|
|
730
|
+
"com.figma.variableId": "VariableID:7:2346",
|
|
731
|
+
"com.figma.scopes": [
|
|
732
|
+
"ALL_SCOPES"
|
|
733
|
+
],
|
|
734
|
+
"com.figma.aliasData": {
|
|
735
|
+
"targetVariableId": "VariableID:c9cbc025db6da226fb2905440af0a125c1eb2138/-1:-1",
|
|
736
|
+
"targetVariableName": "color/purple/800",
|
|
737
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
738
|
+
"targetVariableSetName": "Primitive"
|
|
739
|
+
}
|
|
740
|
+
}
|
|
741
|
+
}
|
|
742
|
+
},
|
|
743
|
+
"error": {
|
|
744
|
+
"default": {
|
|
745
|
+
"$type": "color",
|
|
746
|
+
"$value": {
|
|
747
|
+
"colorSpace": "srgb",
|
|
748
|
+
"components": [
|
|
749
|
+
0.9490000009536743,
|
|
750
|
+
0.4156999886035919,
|
|
751
|
+
0.4156999886035919
|
|
752
|
+
],
|
|
753
|
+
"alpha": 1,
|
|
754
|
+
"hex": "#F26A6A"
|
|
755
|
+
},
|
|
756
|
+
"$description": "maps to --accent-error (#F25F5F ≈ red/400)",
|
|
757
|
+
"$extensions": {
|
|
758
|
+
"com.figma.variableId": "VariableID:7:2347",
|
|
759
|
+
"com.figma.scopes": [
|
|
760
|
+
"ALL_SCOPES"
|
|
761
|
+
],
|
|
762
|
+
"com.figma.aliasData": {
|
|
763
|
+
"targetVariableId": "VariableID:dafb1122f9a2f92b511b0bb6668904c5c73310d7/-1:-1",
|
|
764
|
+
"targetVariableName": "color/red/400",
|
|
765
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
766
|
+
"targetVariableSetName": "Primitive"
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
"soft": {
|
|
771
|
+
"$type": "color",
|
|
772
|
+
"$value": {
|
|
773
|
+
"colorSpace": "srgb",
|
|
774
|
+
"components": [
|
|
775
|
+
0.36079999804496765,
|
|
776
|
+
0.10199999809265137,
|
|
777
|
+
0.10199999809265137
|
|
778
|
+
],
|
|
779
|
+
"alpha": 1,
|
|
780
|
+
"hex": "#5C1A1A"
|
|
781
|
+
},
|
|
782
|
+
"$extensions": {
|
|
783
|
+
"com.figma.variableId": "VariableID:7:2348",
|
|
784
|
+
"com.figma.scopes": [
|
|
785
|
+
"ALL_SCOPES"
|
|
786
|
+
],
|
|
787
|
+
"com.figma.aliasData": {
|
|
788
|
+
"targetVariableId": "VariableID:cb4ffad0e0e8439254dc4287ed0824943480de6f/-1:-1",
|
|
789
|
+
"targetVariableName": "color/red/800",
|
|
790
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
791
|
+
"targetVariableSetName": "Primitive"
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
},
|
|
796
|
+
"violet": {
|
|
797
|
+
"default": {
|
|
798
|
+
"$type": "color",
|
|
799
|
+
"$value": {
|
|
800
|
+
"colorSpace": "srgb",
|
|
801
|
+
"components": [
|
|
802
|
+
0.4862745098039216,
|
|
803
|
+
0.3607843137254902,
|
|
804
|
+
1.0
|
|
805
|
+
],
|
|
806
|
+
"alpha": 1,
|
|
807
|
+
"hex": "#7C5CFF"
|
|
808
|
+
},
|
|
809
|
+
"$extensions": {
|
|
810
|
+
"com.figma.scopes": [
|
|
811
|
+
"ALL_SCOPES"
|
|
812
|
+
]
|
|
813
|
+
},
|
|
814
|
+
"$description": "Settings panel active nav indicator"
|
|
815
|
+
},
|
|
816
|
+
"light": {
|
|
817
|
+
"$type": "color",
|
|
818
|
+
"$value": {
|
|
819
|
+
"colorSpace": "srgb",
|
|
820
|
+
"components": [
|
|
821
|
+
0.7529411764705882,
|
|
822
|
+
0.5176470588235295,
|
|
823
|
+
0.9882352941176471
|
|
824
|
+
],
|
|
825
|
+
"alpha": 1,
|
|
826
|
+
"hex": "#C084FC"
|
|
827
|
+
},
|
|
828
|
+
"$extensions": {
|
|
829
|
+
"com.figma.scopes": [
|
|
830
|
+
"ALL_SCOPES"
|
|
831
|
+
]
|
|
832
|
+
},
|
|
833
|
+
"$description": "Settings section headings — lighter violet"
|
|
834
|
+
}
|
|
835
|
+
}
|
|
836
|
+
},
|
|
837
|
+
"status": {
|
|
838
|
+
"success": {
|
|
839
|
+
"$type": "color",
|
|
840
|
+
"$value": {
|
|
841
|
+
"colorSpace": "srgb",
|
|
842
|
+
"components": [
|
|
843
|
+
0.10589999705553055,
|
|
844
|
+
0.6157000064849854,
|
|
845
|
+
0.29409998655319214
|
|
846
|
+
],
|
|
847
|
+
"alpha": 1,
|
|
848
|
+
"hex": "#1B9D4B"
|
|
849
|
+
},
|
|
850
|
+
"$extensions": {
|
|
851
|
+
"com.figma.variableId": "VariableID:7:2349",
|
|
852
|
+
"com.figma.scopes": [
|
|
853
|
+
"ALL_SCOPES"
|
|
854
|
+
],
|
|
855
|
+
"com.figma.aliasData": {
|
|
856
|
+
"targetVariableId": "VariableID:5c2b8fef513f6946de7702c1a7c740658921eaac/-1:-1",
|
|
857
|
+
"targetVariableName": "color/green/600",
|
|
858
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
859
|
+
"targetVariableSetName": "Primitive"
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
},
|
|
863
|
+
"warning": {
|
|
864
|
+
"$type": "color",
|
|
865
|
+
"$value": {
|
|
866
|
+
"colorSpace": "srgb",
|
|
867
|
+
"components": [
|
|
868
|
+
0.7293999791145325,
|
|
869
|
+
0.5569000244140625,
|
|
870
|
+
0.023499999195337296
|
|
871
|
+
],
|
|
872
|
+
"alpha": 1,
|
|
873
|
+
"hex": "#BA8E06"
|
|
874
|
+
},
|
|
875
|
+
"$extensions": {
|
|
876
|
+
"com.figma.variableId": "VariableID:7:2350",
|
|
877
|
+
"com.figma.scopes": [
|
|
878
|
+
"ALL_SCOPES"
|
|
879
|
+
],
|
|
880
|
+
"com.figma.aliasData": {
|
|
881
|
+
"targetVariableId": "VariableID:f1594b7ae1e348a78e8e724c1e8e9b35e8a76f43/-1:-1",
|
|
882
|
+
"targetVariableName": "color/yellow/600",
|
|
883
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
884
|
+
"targetVariableSetName": "Primitive"
|
|
885
|
+
}
|
|
886
|
+
}
|
|
887
|
+
},
|
|
888
|
+
"error": {
|
|
889
|
+
"$type": "color",
|
|
890
|
+
"$value": {
|
|
891
|
+
"colorSpace": "srgb",
|
|
892
|
+
"components": [
|
|
893
|
+
0.7451000213623047,
|
|
894
|
+
0.2117999941110611,
|
|
895
|
+
0.2117999941110611
|
|
896
|
+
],
|
|
897
|
+
"alpha": 1,
|
|
898
|
+
"hex": "#BE3636"
|
|
899
|
+
},
|
|
900
|
+
"$extensions": {
|
|
901
|
+
"com.figma.variableId": "VariableID:7:2351",
|
|
902
|
+
"com.figma.scopes": [
|
|
903
|
+
"ALL_SCOPES"
|
|
904
|
+
],
|
|
905
|
+
"com.figma.aliasData": {
|
|
906
|
+
"targetVariableId": "VariableID:76ad2db7f38995a8fe3097bbf0360921e5d314f4/-1:-1",
|
|
907
|
+
"targetVariableName": "color/red/600",
|
|
908
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
909
|
+
"targetVariableSetName": "Primitive"
|
|
910
|
+
}
|
|
911
|
+
}
|
|
912
|
+
},
|
|
913
|
+
"amber": {
|
|
914
|
+
"$type": "color",
|
|
915
|
+
"$value": {
|
|
916
|
+
"colorSpace": "srgb",
|
|
917
|
+
"components": [
|
|
918
|
+
0.9607843137254902,
|
|
919
|
+
0.6980392156862745,
|
|
920
|
+
0.2627450980392157
|
|
921
|
+
],
|
|
922
|
+
"alpha": 1,
|
|
923
|
+
"hex": "#F5B243"
|
|
924
|
+
},
|
|
925
|
+
"$extensions": {
|
|
926
|
+
"com.figma.scopes": [
|
|
927
|
+
"ALL_SCOPES"
|
|
928
|
+
]
|
|
929
|
+
},
|
|
930
|
+
"$description": "Amber status LED — between yellow and orange"
|
|
931
|
+
},
|
|
932
|
+
"warning-text": {
|
|
933
|
+
"$type": "color",
|
|
934
|
+
"$value": {
|
|
935
|
+
"colorSpace": "srgb",
|
|
936
|
+
"components": [
|
|
937
|
+
1.0,
|
|
938
|
+
0.788235294117647,
|
|
939
|
+
0.4
|
|
940
|
+
],
|
|
941
|
+
"alpha": 1,
|
|
942
|
+
"hex": "#FFC966"
|
|
943
|
+
},
|
|
944
|
+
"$extensions": {
|
|
945
|
+
"com.figma.scopes": [
|
|
946
|
+
"ALL_SCOPES"
|
|
947
|
+
]
|
|
948
|
+
},
|
|
949
|
+
"$description": "Warning chip text — lighter amber for readable text on dark"
|
|
950
|
+
}
|
|
951
|
+
},
|
|
952
|
+
"overlay": {
|
|
953
|
+
"modal": {
|
|
954
|
+
"$type": "color",
|
|
955
|
+
"$value": {
|
|
956
|
+
"colorSpace": "srgb",
|
|
957
|
+
"components": [
|
|
958
|
+
0,
|
|
959
|
+
0,
|
|
960
|
+
0
|
|
961
|
+
],
|
|
962
|
+
"alpha": 0.5,
|
|
963
|
+
"hex": "#000000"
|
|
964
|
+
},
|
|
965
|
+
"$extensions": {
|
|
966
|
+
"com.figma.variableId": "VariableID:7:2352",
|
|
967
|
+
"com.figma.scopes": [
|
|
968
|
+
"ALL_SCOPES"
|
|
969
|
+
]
|
|
970
|
+
}
|
|
971
|
+
},
|
|
972
|
+
"foucs": {
|
|
973
|
+
"$type": "color",
|
|
974
|
+
"$value": {
|
|
975
|
+
"colorSpace": "srgb",
|
|
976
|
+
"components": [
|
|
977
|
+
0.8313725590705872,
|
|
978
|
+
1,
|
|
979
|
+
0.2823529541492462
|
|
980
|
+
],
|
|
981
|
+
"alpha": 0.30000001192092896,
|
|
982
|
+
"hex": "#D4FF48"
|
|
983
|
+
},
|
|
984
|
+
"$extensions": {
|
|
985
|
+
"com.figma.variableId": "VariableID:7:2353",
|
|
986
|
+
"com.figma.scopes": [
|
|
987
|
+
"ALL_SCOPES"
|
|
988
|
+
]
|
|
989
|
+
}
|
|
990
|
+
}
|
|
991
|
+
},
|
|
992
|
+
"divider": {
|
|
993
|
+
"strong": {
|
|
994
|
+
"$type": "color",
|
|
995
|
+
"$value": {
|
|
996
|
+
"colorSpace": "srgb",
|
|
997
|
+
"components": [
|
|
998
|
+
1,
|
|
999
|
+
1,
|
|
1000
|
+
1
|
|
1001
|
+
],
|
|
1002
|
+
"alpha": 0.15000000596046448,
|
|
1003
|
+
"hex": "#FFFFFF"
|
|
1004
|
+
},
|
|
1005
|
+
"$extensions": {
|
|
1006
|
+
"com.figma.variableId": "VariableID:7:2354",
|
|
1007
|
+
"com.figma.scopes": [
|
|
1008
|
+
"ALL_SCOPES"
|
|
1009
|
+
]
|
|
1010
|
+
}
|
|
1011
|
+
},
|
|
1012
|
+
"default": {
|
|
1013
|
+
"$type": "color",
|
|
1014
|
+
"$value": {
|
|
1015
|
+
"colorSpace": "srgb",
|
|
1016
|
+
"components": [
|
|
1017
|
+
1,
|
|
1018
|
+
1,
|
|
1019
|
+
1
|
|
1020
|
+
],
|
|
1021
|
+
"alpha": 0.10000000149011612,
|
|
1022
|
+
"hex": "#FFFFFF"
|
|
1023
|
+
},
|
|
1024
|
+
"$extensions": {
|
|
1025
|
+
"com.figma.variableId": "VariableID:7:2355",
|
|
1026
|
+
"com.figma.scopes": [
|
|
1027
|
+
"ALL_SCOPES"
|
|
1028
|
+
]
|
|
1029
|
+
}
|
|
1030
|
+
},
|
|
1031
|
+
"subtle": {
|
|
1032
|
+
"$type": "color",
|
|
1033
|
+
"$value": {
|
|
1034
|
+
"colorSpace": "srgb",
|
|
1035
|
+
"components": [
|
|
1036
|
+
1,
|
|
1037
|
+
1,
|
|
1038
|
+
1
|
|
1039
|
+
],
|
|
1040
|
+
"alpha": 0.05000000074505806,
|
|
1041
|
+
"hex": "#FFFFFF"
|
|
1042
|
+
},
|
|
1043
|
+
"$extensions": {
|
|
1044
|
+
"com.figma.variableId": "VariableID:7:2356",
|
|
1045
|
+
"com.figma.scopes": [
|
|
1046
|
+
"ALL_SCOPES"
|
|
1047
|
+
]
|
|
1048
|
+
}
|
|
1049
|
+
}
|
|
1050
|
+
},
|
|
1051
|
+
"skeleton": {
|
|
1052
|
+
"default": {
|
|
1053
|
+
"$type": "color",
|
|
1054
|
+
"$value": {
|
|
1055
|
+
"colorSpace": "srgb",
|
|
1056
|
+
"components": [
|
|
1057
|
+
1,
|
|
1058
|
+
1,
|
|
1059
|
+
1
|
|
1060
|
+
],
|
|
1061
|
+
"alpha": 0.10000000149011612,
|
|
1062
|
+
"hex": "#FFFFFF"
|
|
1063
|
+
},
|
|
1064
|
+
"$extensions": {
|
|
1065
|
+
"com.figma.variableId": "VariableID:7:2357",
|
|
1066
|
+
"com.figma.scopes": [
|
|
1067
|
+
"ALL_SCOPES"
|
|
1068
|
+
]
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
},
|
|
1072
|
+
"interaction": {
|
|
1073
|
+
"hover": {
|
|
1074
|
+
"$type": "color",
|
|
1075
|
+
"$value": {
|
|
1076
|
+
"colorSpace": "srgb",
|
|
1077
|
+
"components": [
|
|
1078
|
+
1,
|
|
1079
|
+
1,
|
|
1080
|
+
1
|
|
1081
|
+
],
|
|
1082
|
+
"alpha": 0.05000000074505806,
|
|
1083
|
+
"hex": "#FFFFFF"
|
|
1084
|
+
},
|
|
1085
|
+
"$extensions": {
|
|
1086
|
+
"com.figma.variableId": "VariableID:7:2358",
|
|
1087
|
+
"com.figma.scopes": [
|
|
1088
|
+
"ALL_SCOPES"
|
|
1089
|
+
]
|
|
1090
|
+
}
|
|
1091
|
+
},
|
|
1092
|
+
"selected-brand": {
|
|
1093
|
+
"$type": "color",
|
|
1094
|
+
"$value": {
|
|
1095
|
+
"colorSpace": "srgb",
|
|
1096
|
+
"components": [
|
|
1097
|
+
0.8313725590705872,
|
|
1098
|
+
1,
|
|
1099
|
+
0.2823529541492462
|
|
1100
|
+
],
|
|
1101
|
+
"alpha": 0.10000000149011612,
|
|
1102
|
+
"hex": "#D4FF48"
|
|
1103
|
+
},
|
|
1104
|
+
"$extensions": {
|
|
1105
|
+
"com.figma.variableId": "VariableID:7:2359",
|
|
1106
|
+
"com.figma.scopes": [
|
|
1107
|
+
"ALL_SCOPES"
|
|
1108
|
+
]
|
|
1109
|
+
}
|
|
1110
|
+
},
|
|
1111
|
+
"selected-neutral": {
|
|
1112
|
+
"$type": "color",
|
|
1113
|
+
"$value": {
|
|
1114
|
+
"colorSpace": "srgb",
|
|
1115
|
+
"components": [
|
|
1116
|
+
1,
|
|
1117
|
+
1,
|
|
1118
|
+
1
|
|
1119
|
+
],
|
|
1120
|
+
"alpha": 0.10000000149011612,
|
|
1121
|
+
"hex": "#FFFFFF"
|
|
1122
|
+
},
|
|
1123
|
+
"$extensions": {
|
|
1124
|
+
"com.figma.variableId": "VariableID:7:2360",
|
|
1125
|
+
"com.figma.scopes": [
|
|
1126
|
+
"ALL_SCOPES"
|
|
1127
|
+
]
|
|
1128
|
+
}
|
|
1129
|
+
},
|
|
1130
|
+
"disabled": {
|
|
1131
|
+
"$type": "color",
|
|
1132
|
+
"$value": {
|
|
1133
|
+
"colorSpace": "srgb",
|
|
1134
|
+
"components": [
|
|
1135
|
+
0,
|
|
1136
|
+
0,
|
|
1137
|
+
0
|
|
1138
|
+
],
|
|
1139
|
+
"alpha": 0.5,
|
|
1140
|
+
"hex": "#000000"
|
|
1141
|
+
},
|
|
1142
|
+
"$extensions": {
|
|
1143
|
+
"com.figma.variableId": "VariableID:7:2361",
|
|
1144
|
+
"com.figma.scopes": [
|
|
1145
|
+
"ALL_SCOPES"
|
|
1146
|
+
]
|
|
1147
|
+
}
|
|
1148
|
+
}
|
|
1149
|
+
},
|
|
1150
|
+
"role": {
|
|
1151
|
+
"orchestrator": {
|
|
1152
|
+
"$type": "color",
|
|
1153
|
+
"$value": {
|
|
1154
|
+
"colorSpace": "srgb",
|
|
1155
|
+
"components": [
|
|
1156
|
+
0.8,
|
|
1157
|
+
0.6078431372549019,
|
|
1158
|
+
0.9803921568627451
|
|
1159
|
+
],
|
|
1160
|
+
"alpha": 1,
|
|
1161
|
+
"hex": "#CC9BFA"
|
|
1162
|
+
},
|
|
1163
|
+
"$extensions": {
|
|
1164
|
+
"com.figma.scopes": [
|
|
1165
|
+
"ALL_SCOPES"
|
|
1166
|
+
],
|
|
1167
|
+
"com.figma.aliasData": {
|
|
1168
|
+
"targetVariableId": "VariableID:3:1460",
|
|
1169
|
+
"targetVariableName": "color/purple/300",
|
|
1170
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
1171
|
+
"targetVariableSetName": "Primitive"
|
|
1172
|
+
}
|
|
1173
|
+
},
|
|
1174
|
+
"$description": "Orchestrator/planner agent — purple/300"
|
|
1175
|
+
},
|
|
1176
|
+
"pillar": {
|
|
1177
|
+
"$type": "color",
|
|
1178
|
+
"$value": {
|
|
1179
|
+
"colorSpace": "srgb",
|
|
1180
|
+
"components": [
|
|
1181
|
+
0.8313725490196079,
|
|
1182
|
+
1.0,
|
|
1183
|
+
0.2823529411764706
|
|
1184
|
+
],
|
|
1185
|
+
"alpha": 1,
|
|
1186
|
+
"hex": "#D4FF48"
|
|
1187
|
+
},
|
|
1188
|
+
"$extensions": {
|
|
1189
|
+
"com.figma.scopes": [
|
|
1190
|
+
"ALL_SCOPES"
|
|
1191
|
+
],
|
|
1192
|
+
"com.figma.aliasData": {
|
|
1193
|
+
"targetVariableId": "VariableID:3:1406",
|
|
1194
|
+
"targetVariableName": "color/lime/400",
|
|
1195
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
1196
|
+
"targetVariableSetName": "Primitive"
|
|
1197
|
+
}
|
|
1198
|
+
},
|
|
1199
|
+
"$description": "Pillar/primary agent — brand lime/400"
|
|
1200
|
+
},
|
|
1201
|
+
"design": {
|
|
1202
|
+
"$type": "color",
|
|
1203
|
+
"$value": {
|
|
1204
|
+
"colorSpace": "srgb",
|
|
1205
|
+
"components": [
|
|
1206
|
+
1.0,
|
|
1207
|
+
0.4274509803921568,
|
|
1208
|
+
0.7215686274509804
|
|
1209
|
+
],
|
|
1210
|
+
"alpha": 1,
|
|
1211
|
+
"hex": "#FF6DB8"
|
|
1212
|
+
},
|
|
1213
|
+
"$extensions": {
|
|
1214
|
+
"com.figma.scopes": [
|
|
1215
|
+
"ALL_SCOPES"
|
|
1216
|
+
],
|
|
1217
|
+
"com.figma.aliasData": {
|
|
1218
|
+
"targetVariableId": "VariableID:3:1482",
|
|
1219
|
+
"targetVariableName": "color/pink/300",
|
|
1220
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
1221
|
+
"targetVariableSetName": "Primitive"
|
|
1222
|
+
}
|
|
1223
|
+
},
|
|
1224
|
+
"$description": "Design agent — pink/300"
|
|
1225
|
+
},
|
|
1226
|
+
"narrative": {
|
|
1227
|
+
"$type": "color",
|
|
1228
|
+
"$value": {
|
|
1229
|
+
"colorSpace": "srgb",
|
|
1230
|
+
"components": [
|
|
1231
|
+
1.0,
|
|
1232
|
+
0.7686274509803922,
|
|
1233
|
+
0.5058823529411764
|
|
1234
|
+
],
|
|
1235
|
+
"alpha": 1,
|
|
1236
|
+
"hex": "#FFC481"
|
|
1237
|
+
},
|
|
1238
|
+
"$extensions": {
|
|
1239
|
+
"com.figma.scopes": [
|
|
1240
|
+
"ALL_SCOPES"
|
|
1241
|
+
],
|
|
1242
|
+
"com.figma.aliasData": {
|
|
1243
|
+
"targetVariableId": "VariableID:3:1394",
|
|
1244
|
+
"targetVariableName": "color/orange/300",
|
|
1245
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
1246
|
+
"targetVariableSetName": "Primitive"
|
|
1247
|
+
}
|
|
1248
|
+
},
|
|
1249
|
+
"$description": "Narrative/script agent — orange/300"
|
|
1250
|
+
},
|
|
1251
|
+
"art": {
|
|
1252
|
+
"$type": "color",
|
|
1253
|
+
"$value": {
|
|
1254
|
+
"colorSpace": "srgb",
|
|
1255
|
+
"components": [
|
|
1256
|
+
0.4901960784313725,
|
|
1257
|
+
0.8274509803921568,
|
|
1258
|
+
0.9882352941176471
|
|
1259
|
+
],
|
|
1260
|
+
"alpha": 1,
|
|
1261
|
+
"hex": "#7DD3FC"
|
|
1262
|
+
},
|
|
1263
|
+
"$description": "Art agent — sky/300",
|
|
1264
|
+
"$extensions": {
|
|
1265
|
+
"com.figma.scopes": [
|
|
1266
|
+
"ALL_SCOPES"
|
|
1267
|
+
]
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
"coding": {
|
|
1271
|
+
"$type": "color",
|
|
1272
|
+
"$value": {
|
|
1273
|
+
"colorSpace": "srgb",
|
|
1274
|
+
"components": [
|
|
1275
|
+
1.0,
|
|
1276
|
+
0.6901960784313725,
|
|
1277
|
+
0.3372549019607843
|
|
1278
|
+
],
|
|
1279
|
+
"alpha": 1,
|
|
1280
|
+
"hex": "#FFB056"
|
|
1281
|
+
},
|
|
1282
|
+
"$extensions": {
|
|
1283
|
+
"com.figma.scopes": [
|
|
1284
|
+
"ALL_SCOPES"
|
|
1285
|
+
],
|
|
1286
|
+
"com.figma.aliasData": {
|
|
1287
|
+
"targetVariableId": "VariableID:3:1395",
|
|
1288
|
+
"targetVariableName": "color/orange/400",
|
|
1289
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
1290
|
+
"targetVariableSetName": "Primitive"
|
|
1291
|
+
}
|
|
1292
|
+
},
|
|
1293
|
+
"$description": "Coding agent — orange/400"
|
|
1294
|
+
}
|
|
1295
|
+
},
|
|
1296
|
+
"kind": {
|
|
1297
|
+
"extension": {
|
|
1298
|
+
"$type": "color",
|
|
1299
|
+
"$value": {
|
|
1300
|
+
"colorSpace": "srgb",
|
|
1301
|
+
"components": [
|
|
1302
|
+
0.8313725490196079,
|
|
1303
|
+
1.0,
|
|
1304
|
+
0.2823529411764706
|
|
1305
|
+
],
|
|
1306
|
+
"alpha": 1,
|
|
1307
|
+
"hex": "#D4FF48"
|
|
1308
|
+
},
|
|
1309
|
+
"$extensions": {
|
|
1310
|
+
"com.figma.scopes": [
|
|
1311
|
+
"ALL_SCOPES"
|
|
1312
|
+
],
|
|
1313
|
+
"com.figma.aliasData": {
|
|
1314
|
+
"targetVariableId": "VariableID:3:1406",
|
|
1315
|
+
"targetVariableName": "color/lime/400",
|
|
1316
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
1317
|
+
"targetVariableSetName": "Primitive"
|
|
1318
|
+
}
|
|
1319
|
+
},
|
|
1320
|
+
"$description": "Extension bus — brand lime/400"
|
|
1321
|
+
},
|
|
1322
|
+
"agent": {
|
|
1323
|
+
"$type": "color",
|
|
1324
|
+
"$value": {
|
|
1325
|
+
"colorSpace": "srgb",
|
|
1326
|
+
"components": [
|
|
1327
|
+
0.8,
|
|
1328
|
+
0.6078431372549019,
|
|
1329
|
+
0.9803921568627451
|
|
1330
|
+
],
|
|
1331
|
+
"alpha": 1,
|
|
1332
|
+
"hex": "#CC9BFA"
|
|
1333
|
+
},
|
|
1334
|
+
"$extensions": {
|
|
1335
|
+
"com.figma.scopes": [
|
|
1336
|
+
"ALL_SCOPES"
|
|
1337
|
+
],
|
|
1338
|
+
"com.figma.aliasData": {
|
|
1339
|
+
"targetVariableId": "VariableID:3:1460",
|
|
1340
|
+
"targetVariableName": "color/purple/300",
|
|
1341
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
1342
|
+
"targetVariableSetName": "Primitive"
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
"$description": "Agent bus — purple/300 (same as role/orchestrator)"
|
|
1346
|
+
},
|
|
1347
|
+
"cli-provider": {
|
|
1348
|
+
"$type": "color",
|
|
1349
|
+
"$value": {
|
|
1350
|
+
"colorSpace": "srgb",
|
|
1351
|
+
"components": [
|
|
1352
|
+
0.4235294117647059,
|
|
1353
|
+
0.7686274509803922,
|
|
1354
|
+
1.0
|
|
1355
|
+
],
|
|
1356
|
+
"alpha": 1,
|
|
1357
|
+
"hex": "#6CC4FF"
|
|
1358
|
+
},
|
|
1359
|
+
"$description": "CLI provider bus — sky/400",
|
|
1360
|
+
"$extensions": {
|
|
1361
|
+
"com.figma.scopes": [
|
|
1362
|
+
"ALL_SCOPES"
|
|
1363
|
+
]
|
|
1364
|
+
}
|
|
1365
|
+
},
|
|
1366
|
+
"model-binding": {
|
|
1367
|
+
"$type": "color",
|
|
1368
|
+
"$value": {
|
|
1369
|
+
"colorSpace": "srgb",
|
|
1370
|
+
"components": [
|
|
1371
|
+
0.3882352941176471,
|
|
1372
|
+
0.9176470588235294,
|
|
1373
|
+
0.8117647058823529
|
|
1374
|
+
],
|
|
1375
|
+
"alpha": 1,
|
|
1376
|
+
"hex": "#63EACF"
|
|
1377
|
+
},
|
|
1378
|
+
"$extensions": {
|
|
1379
|
+
"com.figma.scopes": [
|
|
1380
|
+
"ALL_SCOPES"
|
|
1381
|
+
],
|
|
1382
|
+
"com.figma.aliasData": {
|
|
1383
|
+
"targetVariableId": "VariableID:3:1471",
|
|
1384
|
+
"targetVariableName": "color/teal/300",
|
|
1385
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
1386
|
+
"targetVariableSetName": "Primitive"
|
|
1387
|
+
}
|
|
1388
|
+
},
|
|
1389
|
+
"$description": "Model binding bus — teal/300 (accent-mint)"
|
|
1390
|
+
},
|
|
1391
|
+
"skill": {
|
|
1392
|
+
"$type": "color",
|
|
1393
|
+
"$value": {
|
|
1394
|
+
"colorSpace": "srgb",
|
|
1395
|
+
"components": [
|
|
1396
|
+
1.0,
|
|
1397
|
+
0.7686274509803922,
|
|
1398
|
+
0.5058823529411764
|
|
1399
|
+
],
|
|
1400
|
+
"alpha": 1,
|
|
1401
|
+
"hex": "#FFC481"
|
|
1402
|
+
},
|
|
1403
|
+
"$extensions": {
|
|
1404
|
+
"com.figma.scopes": [
|
|
1405
|
+
"ALL_SCOPES"
|
|
1406
|
+
],
|
|
1407
|
+
"com.figma.aliasData": {
|
|
1408
|
+
"targetVariableId": "VariableID:3:1394",
|
|
1409
|
+
"targetVariableName": "color/orange/300",
|
|
1410
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
1411
|
+
"targetVariableSetName": "Primitive"
|
|
1412
|
+
}
|
|
1413
|
+
},
|
|
1414
|
+
"$description": "Skill bus — orange/300 (same as role/narrative)"
|
|
1415
|
+
},
|
|
1416
|
+
"tool": {
|
|
1417
|
+
"$type": "color",
|
|
1418
|
+
"$value": {
|
|
1419
|
+
"colorSpace": "srgb",
|
|
1420
|
+
"components": [
|
|
1421
|
+
1.0,
|
|
1422
|
+
0.6901960784313725,
|
|
1423
|
+
0.3372549019607843
|
|
1424
|
+
],
|
|
1425
|
+
"alpha": 1,
|
|
1426
|
+
"hex": "#FFB056"
|
|
1427
|
+
},
|
|
1428
|
+
"$extensions": {
|
|
1429
|
+
"com.figma.scopes": [
|
|
1430
|
+
"ALL_SCOPES"
|
|
1431
|
+
],
|
|
1432
|
+
"com.figma.aliasData": {
|
|
1433
|
+
"targetVariableId": "VariableID:3:1395",
|
|
1434
|
+
"targetVariableName": "color/orange/400",
|
|
1435
|
+
"targetVariableSetId": "VariableCollectionId:9ba4800e7d738ce062f23c168a29afd09d3adf00/-1:-1",
|
|
1436
|
+
"targetVariableSetName": "Primitive"
|
|
1437
|
+
}
|
|
1438
|
+
},
|
|
1439
|
+
"$description": "Tool bus — orange/400 (same as role/coding)"
|
|
1440
|
+
}
|
|
1441
|
+
},
|
|
1442
|
+
"syntax": {
|
|
1443
|
+
"key": {
|
|
1444
|
+
"$type": "color",
|
|
1445
|
+
"$value": {
|
|
1446
|
+
"colorSpace": "srgb",
|
|
1447
|
+
"components": [
|
|
1448
|
+
0.4745098039215686,
|
|
1449
|
+
0.7529411764705882,
|
|
1450
|
+
1.0
|
|
1451
|
+
],
|
|
1452
|
+
"alpha": 1,
|
|
1453
|
+
"hex": "#79C0FF"
|
|
1454
|
+
},
|
|
1455
|
+
"$extensions": {
|
|
1456
|
+
"com.figma.scopes": [
|
|
1457
|
+
"ALL_SCOPES"
|
|
1458
|
+
]
|
|
1459
|
+
},
|
|
1460
|
+
"$description": "JSON key — GitHub-style blue"
|
|
1461
|
+
},
|
|
1462
|
+
"string": {
|
|
1463
|
+
"$type": "color",
|
|
1464
|
+
"$value": {
|
|
1465
|
+
"colorSpace": "srgb",
|
|
1466
|
+
"components": [
|
|
1467
|
+
0.9411764705882353,
|
|
1468
|
+
0.7764705882352941,
|
|
1469
|
+
0.4549019607843137
|
|
1470
|
+
],
|
|
1471
|
+
"alpha": 1,
|
|
1472
|
+
"hex": "#F0C674"
|
|
1473
|
+
},
|
|
1474
|
+
"$extensions": {
|
|
1475
|
+
"com.figma.scopes": [
|
|
1476
|
+
"ALL_SCOPES"
|
|
1477
|
+
]
|
|
1478
|
+
},
|
|
1479
|
+
"$description": "String value / inline code — warm yellow"
|
|
1480
|
+
},
|
|
1481
|
+
"number": {
|
|
1482
|
+
"$type": "color",
|
|
1483
|
+
"$value": {
|
|
1484
|
+
"colorSpace": "srgb",
|
|
1485
|
+
"components": [
|
|
1486
|
+
0.7098039215686275,
|
|
1487
|
+
0.807843137254902,
|
|
1488
|
+
0.6588235294117647
|
|
1489
|
+
],
|
|
1490
|
+
"alpha": 1,
|
|
1491
|
+
"hex": "#B5CEA8"
|
|
1492
|
+
},
|
|
1493
|
+
"$extensions": {
|
|
1494
|
+
"com.figma.scopes": [
|
|
1495
|
+
"ALL_SCOPES"
|
|
1496
|
+
]
|
|
1497
|
+
},
|
|
1498
|
+
"$description": "Number literal — sage green"
|
|
1499
|
+
},
|
|
1500
|
+
"boolean": {
|
|
1501
|
+
"$type": "color",
|
|
1502
|
+
"$value": {
|
|
1503
|
+
"colorSpace": "srgb",
|
|
1504
|
+
"components": [
|
|
1505
|
+
0.8235294117647058,
|
|
1506
|
+
0.6588235294117647,
|
|
1507
|
+
1.0
|
|
1508
|
+
],
|
|
1509
|
+
"alpha": 1,
|
|
1510
|
+
"hex": "#D2A8FF"
|
|
1511
|
+
},
|
|
1512
|
+
"$extensions": {
|
|
1513
|
+
"com.figma.scopes": [
|
|
1514
|
+
"ALL_SCOPES"
|
|
1515
|
+
]
|
|
1516
|
+
},
|
|
1517
|
+
"$description": "Boolean / keyword — soft purple"
|
|
1518
|
+
}
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1521
|
+
"$extensions": {
|
|
1522
|
+
"com.figma.modeName": "semantic"
|
|
1523
|
+
}
|
|
1524
|
+
}
|