willa-workspace 0.0.3-alpha.2739b3e
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/.github/workflows/deploy.yml +45 -0
- package/.husky/pre-commit +1 -0
- package/AGENTS.md +128 -0
- package/CONTRIBUTING.md +138 -0
- package/README.md +27 -0
- package/docs/architecture.md +337 -0
- package/docs/component.md +333 -0
- package/docs/css.md +400 -0
- package/docs/style.md +146 -0
- package/example/index.html +12 -0
- package/example/package.json +28 -0
- package/example/src/App.tsx +613 -0
- package/example/src/UsageGuide.tsx +179 -0
- package/example/src/catalog/DocView.tsx +413 -0
- package/example/src/catalog/defineDoc.tsx +352 -0
- package/example/src/catalog/registry.ts +206 -0
- package/example/src/catalog/types.ts +38 -0
- package/example/src/docs/Alert.demo.tsx +233 -0
- package/example/src/docs/Anchor.demo.tsx +244 -0
- package/example/src/docs/AppShell.demo.tsx +192 -0
- package/example/src/docs/AttachmentList.demo.tsx +425 -0
- package/example/src/docs/AudioEmbed.demo.tsx +102 -0
- package/example/src/docs/AudioLink.demo.tsx +84 -0
- package/example/src/docs/Avatar.demo.tsx +342 -0
- package/example/src/docs/Badge.demo.tsx +196 -0
- package/example/src/docs/BorderBeam.demo.tsx +261 -0
- package/example/src/docs/Breadcrumb.demo.tsx +194 -0
- package/example/src/docs/Button.demo.tsx +304 -0
- package/example/src/docs/Calendar.demo.tsx +742 -0
- package/example/src/docs/Callout.demo.tsx +143 -0
- package/example/src/docs/Card.demo.tsx +254 -0
- package/example/src/docs/Carousel.demo.tsx +764 -0
- package/example/src/docs/ChatMessage.demo.tsx +356 -0
- package/example/src/docs/ChatThread.demo.tsx +107 -0
- package/example/src/docs/Checkbox.demo.tsx +112 -0
- package/example/src/docs/Citation.demo.tsx +297 -0
- package/example/src/docs/CodeBlock.demo.tsx +175 -0
- package/example/src/docs/CodeTabs.demo.tsx +285 -0
- package/example/src/docs/Collapse.demo.tsx +306 -0
- package/example/src/docs/ColorPicker.demo.tsx +491 -0
- package/example/src/docs/Comment.demo.tsx +333 -0
- package/example/src/docs/CommentInput.demo.tsx +894 -0
- package/example/src/docs/CommentList.demo.tsx +344 -0
- package/example/src/docs/Composer.demo.tsx +435 -0
- package/example/src/docs/Container.demo.tsx +125 -0
- package/example/src/docs/ContextPanel.demo.tsx +344 -0
- package/example/src/docs/ContextWindowMeter.demo.tsx +212 -0
- package/example/src/docs/ConversationList.demo.tsx +289 -0
- package/example/src/docs/CopyButton.demo.tsx +274 -0
- package/example/src/docs/DatePicker.demo.tsx +502 -0
- package/example/src/docs/DescriptionList.demo.tsx +265 -0
- package/example/src/docs/Dialog.demo.tsx +492 -0
- package/example/src/docs/DiffViewer.demo.tsx +307 -0
- package/example/src/docs/Download.demo.tsx +182 -0
- package/example/src/docs/Drawer.demo.tsx +300 -0
- package/example/src/docs/EmptyState.demo.tsx +406 -0
- package/example/src/docs/EnglishCards.demo.tsx +133 -0
- package/example/src/docs/FeedbackBar.demo.tsx +219 -0
- package/example/src/docs/FileCard.demo.tsx +234 -0
- package/example/src/docs/FilePreview.demo.tsx +333 -0
- package/example/src/docs/FileTree.demo.tsx +463 -0
- package/example/src/docs/FilterBar.demo.tsx +290 -0
- package/example/src/docs/FloatButton.demo.tsx +726 -0
- package/example/src/docs/Form.demo.tsx +278 -0
- package/example/src/docs/FormActions.demo.tsx +198 -0
- package/example/src/docs/FormField.demo.tsx +193 -0
- package/example/src/docs/FormGroup.demo.tsx +188 -0
- package/example/src/docs/FormMessage.demo.tsx +158 -0
- package/example/src/docs/GenerationCard.demo.tsx +393 -0
- package/example/src/docs/GitHubMention.demo.tsx +83 -0
- package/example/src/docs/GitHubRepo.demo.tsx +88 -0
- package/example/src/docs/Grid.demo.tsx +218 -0
- package/example/src/docs/Group.demo.tsx +315 -0
- package/example/src/docs/HumanApprovalCard.demo.tsx +275 -0
- package/example/src/docs/IconButton.demo.tsx +354 -0
- package/example/src/docs/Image.demo.tsx +124 -0
- package/example/src/docs/ImageGallery.demo.tsx +206 -0
- package/example/src/docs/Input.demo.tsx +238 -0
- package/example/src/docs/InputPanel.demo.tsx +255 -0
- package/example/src/docs/Kbd.demo.tsx +162 -0
- package/example/src/docs/Lightbox.demo.tsx +184 -0
- package/example/src/docs/List.demo.tsx +1009 -0
- package/example/src/docs/LogoWall.demo.tsx +178 -0
- package/example/src/docs/Masonry.demo.tsx +170 -0
- package/example/src/docs/MathExpression.demo.tsx +164 -0
- package/example/src/docs/Mdx.demo.tsx +343 -0
- package/example/src/docs/MentionInput.demo.tsx +543 -0
- package/example/src/docs/Menu.demo.tsx +430 -0
- package/example/src/docs/MessageActions.demo.tsx +355 -0
- package/example/src/docs/MessageList.demo.tsx +410 -0
- package/example/src/docs/ModelSelector.demo.tsx +297 -0
- package/example/src/docs/NumberInput.demo.tsx +816 -0
- package/example/src/docs/PageHeader.demo.tsx +198 -0
- package/example/src/docs/Pagination.demo.tsx +257 -0
- package/example/src/docs/Panel.demo.tsx +184 -0
- package/example/src/docs/Picker.demo.tsx +257 -0
- package/example/src/docs/Poem.demo.tsx +98 -0
- package/example/src/docs/Popover.demo.tsx +362 -0
- package/example/src/docs/ProfileCard.demo.tsx +161 -0
- package/example/src/docs/Progress.demo.tsx +243 -0
- package/example/src/docs/PromptInput.demo.tsx +497 -0
- package/example/src/docs/PromptTemplatePicker.demo.tsx +344 -0
- package/example/src/docs/QRCode.demo.tsx +364 -0
- package/example/src/docs/Radio.demo.tsx +120 -0
- package/example/src/docs/RangeInput.demo.tsx +405 -0
- package/example/src/docs/Rate.demo.tsx +396 -0
- package/example/src/docs/ReasoningSteps.demo.tsx +470 -0
- package/example/src/docs/Result.demo.tsx +121 -0
- package/example/src/docs/ScheduleCalendar.demo.tsx +459 -0
- package/example/src/docs/SearchInput.demo.tsx +217 -0
- package/example/src/docs/SectionHeader.demo.tsx +186 -0
- package/example/src/docs/Segmented.demo.tsx +598 -0
- package/example/src/docs/Select.demo.tsx +164 -0
- package/example/src/docs/SelectionBar.demo.tsx +315 -0
- package/example/src/docs/Separator.demo.tsx +179 -0
- package/example/src/docs/SidebarLayout.demo.tsx +183 -0
- package/example/src/docs/SiteFooter.demo.tsx +189 -0
- package/example/src/docs/SiteNav.demo.tsx +168 -0
- package/example/src/docs/Skeleton.demo.tsx +154 -0
- package/example/src/docs/SourceCard.demo.tsx +241 -0
- package/example/src/docs/Spinner.demo.tsx +166 -0
- package/example/src/docs/SplitPane.demo.tsx +544 -0
- package/example/src/docs/Stack.demo.tsx +135 -0
- package/example/src/docs/Statistic.demo.tsx +124 -0
- package/example/src/docs/Steps.demo.tsx +88 -0
- package/example/src/docs/SuggestionChips.demo.tsx +259 -0
- package/example/src/docs/Switch.demo.tsx +110 -0
- package/example/src/docs/Table.demo.tsx +2071 -0
- package/example/src/docs/Tabs.demo.tsx +285 -0
- package/example/src/docs/Tag.demo.tsx +264 -0
- package/example/src/docs/TagInput.demo.tsx +385 -0
- package/example/src/docs/TextArea.demo.tsx +185 -0
- package/example/src/docs/ThinkingIndicator.demo.tsx +248 -0
- package/example/src/docs/TimePicker.demo.tsx +464 -0
- package/example/src/docs/Timeline.demo.tsx +311 -0
- package/example/src/docs/Toast.demo.tsx +351 -0
- package/example/src/docs/ToolCallCard.demo.tsx +286 -0
- package/example/src/docs/Toolbar.demo.tsx +372 -0
- package/example/src/docs/Tooltip.demo.tsx +274 -0
- package/example/src/docs/Tour.demo.tsx +423 -0
- package/example/src/docs/TraceViewer.demo.tsx +416 -0
- package/example/src/docs/Tree.demo.tsx +507 -0
- package/example/src/docs/TreeSelect.demo.tsx +476 -0
- package/example/src/docs/Typography.demo.tsx +953 -0
- package/example/src/docs/Upload.demo.tsx +299 -0
- package/example/src/docs/VideoEmbed.demo.tsx +108 -0
- package/example/src/docs/VideoLink.demo.tsx +83 -0
- package/example/src/docs/Watermark.demo.tsx +352 -0
- package/example/src/docs/WebEmbed.demo.tsx +96 -0
- package/example/src/docs/XPostEmbed.demo.tsx +57 -0
- package/example/src/main.tsx +36 -0
- package/example/src/styles.css +919 -0
- package/example/src/vite-env.d.ts +1 -0
- package/example/vite.config.ts +11 -0
- package/package.json +40 -0
- package/packages/willa/README.md +47 -0
- package/packages/willa/auklet.config.mjs +23 -0
- package/packages/willa/package.json +83 -0
- package/packages/willa/src/Alert/index.tsx +8 -0
- package/packages/willa/src/Anchor/index.tsx +8 -0
- package/packages/willa/src/AppShell/index.tsx +2 -0
- package/packages/willa/src/AttachmentList/index.tsx +10 -0
- package/packages/willa/src/AudioEmbed/index.tsx +4 -0
- package/packages/willa/src/AudioLink/index.tsx +4 -0
- package/packages/willa/src/Avatar/index.tsx +6 -0
- package/packages/willa/src/Badge/index.tsx +7 -0
- package/packages/willa/src/BorderBeam/index.tsx +6 -0
- package/packages/willa/src/Breadcrumb/index.tsx +6 -0
- package/packages/willa/src/Button/index.tsx +6 -0
- package/packages/willa/src/Calendar/index.tsx +19 -0
- package/packages/willa/src/Callout/index.tsx +5 -0
- package/packages/willa/src/Card/index.tsx +6 -0
- package/packages/willa/src/Carousel/index.tsx +8 -0
- package/packages/willa/src/ChatMessage/index.tsx +6 -0
- package/packages/willa/src/ChatThread/index.tsx +4 -0
- package/packages/willa/src/Checkbox/index.tsx +5 -0
- package/packages/willa/src/Citation/index.tsx +6 -0
- package/packages/willa/src/CodeBlock/index.tsx +5 -0
- package/packages/willa/src/CodeTabs/index.tsx +6 -0
- package/packages/willa/src/Collapse/index.tsx +5 -0
- package/packages/willa/src/ColorPicker/index.tsx +12 -0
- package/packages/willa/src/Comment/index.tsx +6 -0
- package/packages/willa/src/CommentInput/index.tsx +8 -0
- package/packages/willa/src/CommentList/index.tsx +5 -0
- package/packages/willa/src/Composer/index.tsx +1 -0
- package/packages/willa/src/Container/index.tsx +6 -0
- package/packages/willa/src/ContextPanel/index.tsx +7 -0
- package/packages/willa/src/ContextWindowMeter/index.tsx +7 -0
- package/packages/willa/src/ConversationList/index.tsx +8 -0
- package/packages/willa/src/CopyButton/index.tsx +6 -0
- package/packages/willa/src/DatePicker/index.tsx +15 -0
- package/packages/willa/src/DescriptionList/index.tsx +8 -0
- package/packages/willa/src/Dialog/index.tsx +6 -0
- package/packages/willa/src/DiffViewer/index.tsx +5 -0
- package/packages/willa/src/Download/index.tsx +6 -0
- package/packages/willa/src/Drawer/index.tsx +6 -0
- package/packages/willa/src/EmptyState/index.tsx +7 -0
- package/packages/willa/src/EnglishCards/index.tsx +4 -0
- package/packages/willa/src/FeedbackBar/index.tsx +7 -0
- package/packages/willa/src/FileCard/index.tsx +7 -0
- package/packages/willa/src/FilePreview/index.tsx +6 -0
- package/packages/willa/src/FileTree/index.tsx +10 -0
- package/packages/willa/src/FilterBar/index.tsx +7 -0
- package/packages/willa/src/FloatButton/index.tsx +14 -0
- package/packages/willa/src/Form/index.tsx +5 -0
- package/packages/willa/src/FormActions/index.tsx +6 -0
- package/packages/willa/src/FormField/index.tsx +6 -0
- package/packages/willa/src/FormGroup/index.tsx +6 -0
- package/packages/willa/src/FormMessage/index.tsx +5 -0
- package/packages/willa/src/GenerationCard/index.tsx +6 -0
- package/packages/willa/src/GitHubMention/index.tsx +4 -0
- package/packages/willa/src/GitHubRepo/index.tsx +4 -0
- package/packages/willa/src/Grid/index.tsx +8 -0
- package/packages/willa/src/Group/index.tsx +9 -0
- package/packages/willa/src/HumanApprovalCard/index.tsx +8 -0
- package/packages/willa/src/IconButton/index.tsx +7 -0
- package/packages/willa/src/Image/index.tsx +1 -0
- package/packages/willa/src/ImageGallery/index.tsx +5 -0
- package/packages/willa/src/Input/index.tsx +6 -0
- package/packages/willa/src/InputPanel/index.tsx +8 -0
- package/packages/willa/src/Kbd/index.tsx +9 -0
- package/packages/willa/src/Lightbox/index.tsx +7 -0
- package/packages/willa/src/List/index.tsx +10 -0
- package/packages/willa/src/LogoWall/index.tsx +6 -0
- package/packages/willa/src/Masonry/index.tsx +6 -0
- package/packages/willa/src/MathExpression/index.tsx +5 -0
- package/packages/willa/src/Mdx/index.tsx +1 -0
- package/packages/willa/src/MentionInput/index.tsx +5 -0
- package/packages/willa/src/Menu/index.tsx +11 -0
- package/packages/willa/src/MessageActions/index.tsx +8 -0
- package/packages/willa/src/MessageList/index.tsx +4 -0
- package/packages/willa/src/ModelSelector/index.tsx +9 -0
- package/packages/willa/src/NumberInput/index.tsx +15 -0
- package/packages/willa/src/PageHeader/index.tsx +5 -0
- package/packages/willa/src/Pagination/index.tsx +6 -0
- package/packages/willa/src/Panel/index.tsx +6 -0
- package/packages/willa/src/Picker/index.tsx +8 -0
- package/packages/willa/src/Poem/index.tsx +1 -0
- package/packages/willa/src/Popover/index.tsx +7 -0
- package/packages/willa/src/ProfileCard/index.tsx +5 -0
- package/packages/willa/src/Progress/index.tsx +6 -0
- package/packages/willa/src/PromptInput/index.tsx +6 -0
- package/packages/willa/src/PromptTemplatePicker/index.tsx +6 -0
- package/packages/willa/src/QRCode/index.tsx +9 -0
- package/packages/willa/src/Radio/index.tsx +5 -0
- package/packages/willa/src/RangeInput/index.tsx +2 -0
- package/packages/willa/src/Rate/index.tsx +6 -0
- package/packages/willa/src/ReasoningSteps/index.tsx +8 -0
- package/packages/willa/src/ResizablePanel/index.tsx +10 -0
- package/packages/willa/src/Result/index.tsx +7 -0
- package/packages/willa/src/SearchInput/index.tsx +4 -0
- package/packages/willa/src/SectionHeader/index.tsx +6 -0
- package/packages/willa/src/Segmented/index.tsx +9 -0
- package/packages/willa/src/Select/index.tsx +7 -0
- package/packages/willa/src/SelectionBar/index.tsx +5 -0
- package/packages/willa/src/Separator/index.tsx +7 -0
- package/packages/willa/src/SidebarLayout/index.tsx +7 -0
- package/packages/willa/src/SiteFooter/index.tsx +6 -0
- package/packages/willa/src/SiteNav/index.tsx +5 -0
- package/packages/willa/src/Skeleton/index.tsx +4 -0
- package/packages/willa/src/SourceCard/index.tsx +6 -0
- package/packages/willa/src/Spinner/index.tsx +7 -0
- package/packages/willa/src/SplitPane/index.tsx +10 -0
- package/packages/willa/src/Stack/index.tsx +8 -0
- package/packages/willa/src/Statistic/index.tsx +7 -0
- package/packages/willa/src/Step/index.tsx +1 -0
- package/packages/willa/src/Steps/index.tsx +1 -0
- package/packages/willa/src/SuggestionChips/index.tsx +7 -0
- package/packages/willa/src/Switch/index.tsx +5 -0
- package/packages/willa/src/Table/index.tsx +19 -0
- package/packages/willa/src/Tabs/index.tsx +6 -0
- package/packages/willa/src/Tag/index.tsx +9 -0
- package/packages/willa/src/TagInput/index.tsx +8 -0
- package/packages/willa/src/TextArea/index.tsx +7 -0
- package/packages/willa/src/ThinkingIndicator/index.tsx +7 -0
- package/packages/willa/src/TimePicker/index.tsx +10 -0
- package/packages/willa/src/Timeline/index.tsx +8 -0
- package/packages/willa/src/Toast/index.tsx +10 -0
- package/packages/willa/src/ToolCallCard/index.tsx +5 -0
- package/packages/willa/src/Toolbar/index.tsx +6 -0
- package/packages/willa/src/Tooltip/index.tsx +7 -0
- package/packages/willa/src/Tour/index.tsx +10 -0
- package/packages/willa/src/TraceViewer/index.tsx +8 -0
- package/packages/willa/src/Tree/index.tsx +11 -0
- package/packages/willa/src/TreeSelect/index.tsx +8 -0
- package/packages/willa/src/Typography/index.tsx +20 -0
- package/packages/willa/src/Upload/index.tsx +11 -0
- package/packages/willa/src/VideoEmbed/index.tsx +4 -0
- package/packages/willa/src/VideoLink/index.tsx +4 -0
- package/packages/willa/src/Watermark/index.tsx +5 -0
- package/packages/willa/src/WebEmbed/index.tsx +4 -0
- package/packages/willa/src/XPostEmbed/index.tsx +4 -0
- package/packages/willa/src/index.ts +5 -0
- package/packages/willa/vitest.config.ts +9 -0
- package/packages/willa-ai/README.md +32 -0
- package/packages/willa-ai/auklet.config.mjs +25 -0
- package/packages/willa-ai/package.json +84 -0
- package/packages/willa-ai/src/components/AttachmentList/index.css +223 -0
- package/packages/willa-ai/src/components/AttachmentList/index.tsx +256 -0
- package/packages/willa-ai/src/components/ChatMessage/index.css +211 -0
- package/packages/willa-ai/src/components/ChatMessage/index.tsx +126 -0
- package/packages/willa-ai/src/components/Composer/index.css +137 -0
- package/packages/willa-ai/src/components/Composer/index.tsx +92 -0
- package/packages/willa-ai/src/components/ContextPanel/index.css +252 -0
- package/packages/willa-ai/src/components/ContextPanel/index.tsx +513 -0
- package/packages/willa-ai/src/components/ContextWindowMeter/index.css +237 -0
- package/packages/willa-ai/src/components/ContextWindowMeter/index.tsx +266 -0
- package/packages/willa-ai/src/components/ConversationList/index.css +260 -0
- package/packages/willa-ai/src/components/ConversationList/index.tsx +549 -0
- package/packages/willa-ai/src/components/FeedbackBar/index.css +83 -0
- package/packages/willa-ai/src/components/FeedbackBar/index.tsx +357 -0
- package/packages/willa-ai/src/components/GenerationCard/index.css +275 -0
- package/packages/willa-ai/src/components/GenerationCard/index.tsx +156 -0
- package/packages/willa-ai/src/components/HumanApprovalCard/index.css +205 -0
- package/packages/willa-ai/src/components/HumanApprovalCard/index.tsx +262 -0
- package/packages/willa-ai/src/components/MessageActions/index.css +174 -0
- package/packages/willa-ai/src/components/MessageActions/index.tsx +152 -0
- package/packages/willa-ai/src/components/MessageList/index.css +80 -0
- package/packages/willa-ai/src/components/MessageList/index.tsx +96 -0
- package/packages/willa-ai/src/components/ModelSelector/index.css +177 -0
- package/packages/willa-ai/src/components/ModelSelector/index.tsx +421 -0
- package/packages/willa-ai/src/components/PromptInput/index.css +12 -0
- package/packages/willa-ai/src/components/PromptInput/index.tsx +230 -0
- package/packages/willa-ai/src/components/PromptTemplatePicker/index.css +173 -0
- package/packages/willa-ai/src/components/PromptTemplatePicker/index.tsx +389 -0
- package/packages/willa-ai/src/components/ReasoningSteps/index.css +190 -0
- package/packages/willa-ai/src/components/ReasoningSteps/index.tsx +199 -0
- package/packages/willa-ai/src/components/SuggestionChips/index.css +164 -0
- package/packages/willa-ai/src/components/SuggestionChips/index.tsx +142 -0
- package/packages/willa-ai/src/components/ThinkingIndicator/index.css +230 -0
- package/packages/willa-ai/src/components/ThinkingIndicator/index.tsx +162 -0
- package/packages/willa-ai/src/components/ToolCallCard/index.css +244 -0
- package/packages/willa-ai/src/components/ToolCallCard/index.tsx +131 -0
- package/packages/willa-ai/src/components/TraceViewer/index.css +438 -0
- package/packages/willa-ai/src/components/TraceViewer/index.tsx +445 -0
- package/packages/willa-ai/src/index.ts +123 -0
- package/packages/willa-ai/src/internal/cardCollapse.tsx +90 -0
- package/packages/willa-ai/src/internal/searchText.ts +50 -0
- package/packages/willa-ai/src/themes/dark.css +308 -0
- package/packages/willa-ai/src/themes/light.css +303 -0
- package/packages/willa-ai/vitest.config.ts +15 -0
- package/packages/willa-content/README.md +47 -0
- package/packages/willa-content/auklet.config.mjs +25 -0
- package/packages/willa-content/package.json +86 -0
- package/packages/willa-content/src/components/Alert/index.css +158 -0
- package/packages/willa-content/src/components/Alert/index.tsx +182 -0
- package/packages/willa-content/src/components/Anchor/index.css +131 -0
- package/packages/willa-content/src/components/Anchor/index.tsx +253 -0
- package/packages/willa-content/src/components/Avatar/index.css +248 -0
- package/packages/willa-content/src/components/Avatar/index.tsx +331 -0
- package/packages/willa-content/src/components/Badge/index.css +111 -0
- package/packages/willa-content/src/components/Badge/index.tsx +56 -0
- package/packages/willa-content/src/components/Breadcrumb/index.css +92 -0
- package/packages/willa-content/src/components/Breadcrumb/index.tsx +129 -0
- package/packages/willa-content/src/components/Button/index.css +215 -0
- package/packages/willa-content/src/components/Button/index.tsx +295 -0
- package/packages/willa-content/src/components/Callout/index.css +102 -0
- package/packages/willa-content/src/components/Callout/index.tsx +61 -0
- package/packages/willa-content/src/components/Carousel/index.css +236 -0
- package/packages/willa-content/src/components/Carousel/index.tsx +488 -0
- package/packages/willa-content/src/components/ChatThread/index.css +141 -0
- package/packages/willa-content/src/components/ChatThread/index.tsx +118 -0
- package/packages/willa-content/src/components/Citation/index.css +226 -0
- package/packages/willa-content/src/components/Citation/index.tsx +135 -0
- package/packages/willa-content/src/components/CodeBlock/index.css +267 -0
- package/packages/willa-content/src/components/CodeBlock/index.tsx +173 -0
- package/packages/willa-content/src/components/CodeTabs/index.css +116 -0
- package/packages/willa-content/src/components/CodeTabs/index.tsx +88 -0
- package/packages/willa-content/src/components/Collapse/index.css +135 -0
- package/packages/willa-content/src/components/Collapse/index.tsx +108 -0
- package/packages/willa-content/src/components/Comment/index.css +184 -0
- package/packages/willa-content/src/components/Comment/index.tsx +106 -0
- package/packages/willa-content/src/components/CommentInput/index.css +96 -0
- package/packages/willa-content/src/components/CommentInput/index.tsx +84 -0
- package/packages/willa-content/src/components/CommentList/index.css +43 -0
- package/packages/willa-content/src/components/CommentList/index.tsx +79 -0
- package/packages/willa-content/src/components/CopyButton/index.css +26 -0
- package/packages/willa-content/src/components/CopyButton/index.tsx +227 -0
- package/packages/willa-content/src/components/DescriptionList/index.css +176 -0
- package/packages/willa-content/src/components/DescriptionList/index.tsx +96 -0
- package/packages/willa-content/src/components/Dialog/index.css +225 -0
- package/packages/willa-content/src/components/Dialog/index.tsx +303 -0
- package/packages/willa-content/src/components/DiffViewer/index.css +321 -0
- package/packages/willa-content/src/components/DiffViewer/index.tsx +486 -0
- package/packages/willa-content/src/components/Download/index.css +118 -0
- package/packages/willa-content/src/components/Download/index.tsx +96 -0
- package/packages/willa-content/src/components/Drawer/index.css +160 -0
- package/packages/willa-content/src/components/Drawer/index.tsx +323 -0
- package/packages/willa-content/src/components/EmptyState/index.css +220 -0
- package/packages/willa-content/src/components/EmptyState/index.tsx +78 -0
- package/packages/willa-content/src/components/FileCard/fileIcon.tsx +215 -0
- package/packages/willa-content/src/components/FileCard/index.css +242 -0
- package/packages/willa-content/src/components/FileCard/index.tsx +133 -0
- package/packages/willa-content/src/components/FilePreview/index.css +589 -0
- package/packages/willa-content/src/components/FilePreview/index.tsx +750 -0
- package/packages/willa-content/src/components/FileTree/index.css +169 -0
- package/packages/willa-content/src/components/FileTree/index.tsx +341 -0
- package/packages/willa-content/src/components/FloatButton/index.css +276 -0
- package/packages/willa-content/src/components/FloatButton/index.tsx +558 -0
- package/packages/willa-content/src/components/IconButton/index.css +196 -0
- package/packages/willa-content/src/components/IconButton/index.tsx +272 -0
- package/packages/willa-content/src/components/Image/index.css +72 -0
- package/packages/willa-content/src/components/Image/index.tsx +141 -0
- package/packages/willa-content/src/components/ImageGallery/index.css +82 -0
- package/packages/willa-content/src/components/ImageGallery/index.tsx +170 -0
- package/packages/willa-content/src/components/InputPanel/index.css +181 -0
- package/packages/willa-content/src/components/InputPanel/index.tsx +255 -0
- package/packages/willa-content/src/components/Kbd/index.css +61 -0
- package/packages/willa-content/src/components/Kbd/index.tsx +102 -0
- package/packages/willa-content/src/components/Lightbox/index.css +127 -0
- package/packages/willa-content/src/components/Lightbox/index.tsx +328 -0
- package/packages/willa-content/src/components/List/index.css +439 -0
- package/packages/willa-content/src/components/List/index.tsx +403 -0
- package/packages/willa-content/src/components/MathExpression/index.css +65 -0
- package/packages/willa-content/src/components/MathExpression/index.tsx +105 -0
- package/packages/willa-content/src/components/MentionInput/index.css +92 -0
- package/packages/willa-content/src/components/MentionInput/index.tsx +1138 -0
- package/packages/willa-content/src/components/Menu/index.css +151 -0
- package/packages/willa-content/src/components/Menu/index.tsx +356 -0
- package/packages/willa-content/src/components/Pagination/index.css +139 -0
- package/packages/willa-content/src/components/Pagination/index.tsx +373 -0
- package/packages/willa-content/src/components/Popover/index.css +128 -0
- package/packages/willa-content/src/components/Popover/index.tsx +226 -0
- package/packages/willa-content/src/components/Progress/index.css +137 -0
- package/packages/willa-content/src/components/Progress/index.tsx +117 -0
- package/packages/willa-content/src/components/Result/index.css +142 -0
- package/packages/willa-content/src/components/Result/index.tsx +85 -0
- package/packages/willa-content/src/components/Segmented/index.css +136 -0
- package/packages/willa-content/src/components/Segmented/index.tsx +283 -0
- package/packages/willa-content/src/components/SelectionBar/index.css +104 -0
- package/packages/willa-content/src/components/SelectionBar/index.tsx +120 -0
- package/packages/willa-content/src/components/Skeleton/index.css +68 -0
- package/packages/willa-content/src/components/Skeleton/index.tsx +126 -0
- package/packages/willa-content/src/components/SourceCard/index.css +177 -0
- package/packages/willa-content/src/components/SourceCard/index.tsx +108 -0
- package/packages/willa-content/src/components/Spinner/index.css +124 -0
- package/packages/willa-content/src/components/Spinner/index.tsx +55 -0
- package/packages/willa-content/src/components/Statistic/index.css +135 -0
- package/packages/willa-content/src/components/Statistic/index.tsx +90 -0
- package/packages/willa-content/src/components/Steps/index.css +167 -0
- package/packages/willa-content/src/components/Steps/index.tsx +170 -0
- package/packages/willa-content/src/components/Table/TableBody.tsx +389 -0
- package/packages/willa-content/src/components/Table/TableHeader.tsx +256 -0
- package/packages/willa-content/src/components/Table/TablePagination.tsx +46 -0
- package/packages/willa-content/src/components/Table/TableView.tsx +341 -0
- package/packages/willa-content/src/components/Table/columnState.ts +37 -0
- package/packages/willa-content/src/components/Table/columns.ts +63 -0
- package/packages/willa-content/src/components/Table/group.ts +114 -0
- package/packages/willa-content/src/components/Table/index.css +620 -0
- package/packages/willa-content/src/components/Table/index.tsx +100 -0
- package/packages/willa-content/src/components/Table/layout.ts +80 -0
- package/packages/willa-content/src/components/Table/tree.ts +28 -0
- package/packages/willa-content/src/components/Table/types.ts +177 -0
- package/packages/willa-content/src/components/Table/useTableColumnResize.ts +227 -0
- package/packages/willa-content/src/components/Table/useTableColumnState.ts +153 -0
- package/packages/willa-content/src/components/Table/useTableExpansion.ts +69 -0
- package/packages/willa-content/src/components/Table/useTableInfiniteScroll.ts +77 -0
- package/packages/willa-content/src/components/Table/useTableSelection.ts +102 -0
- package/packages/willa-content/src/components/Table/useTableState.ts +436 -0
- package/packages/willa-content/src/components/Table/useTableViewModel.ts +222 -0
- package/packages/willa-content/src/components/Table/utils.ts +251 -0
- package/packages/willa-content/src/components/Tabs/index.css +126 -0
- package/packages/willa-content/src/components/Tabs/index.tsx +154 -0
- package/packages/willa-content/src/components/Tag/index.css +171 -0
- package/packages/willa-content/src/components/Tag/index.tsx +91 -0
- package/packages/willa-content/src/components/Timeline/index.css +355 -0
- package/packages/willa-content/src/components/Timeline/index.tsx +153 -0
- package/packages/willa-content/src/components/Toast/index.css +226 -0
- package/packages/willa-content/src/components/Toast/index.tsx +280 -0
- package/packages/willa-content/src/components/Toolbar/index.css +59 -0
- package/packages/willa-content/src/components/Toolbar/index.tsx +73 -0
- package/packages/willa-content/src/components/Tooltip/index.css +83 -0
- package/packages/willa-content/src/components/Tooltip/index.tsx +265 -0
- package/packages/willa-content/src/components/Tour/index.css +312 -0
- package/packages/willa-content/src/components/Tour/index.tsx +788 -0
- package/packages/willa-content/src/components/Tree/index.css +274 -0
- package/packages/willa-content/src/components/Tree/index.tsx +564 -0
- package/packages/willa-content/src/components/Typography/TypographyActions.tsx +125 -0
- package/packages/willa-content/src/components/Typography/TypographyContent.tsx +406 -0
- package/packages/willa-content/src/components/Typography/TypographyEdit.tsx +161 -0
- package/packages/willa-content/src/components/Typography/index.css +575 -0
- package/packages/willa-content/src/components/Typography/index.tsx +145 -0
- package/packages/willa-content/src/components/Typography/types.ts +144 -0
- package/packages/willa-content/src/components/Typography/utils.tsx +192 -0
- package/packages/willa-content/src/components/Watermark/index.css +37 -0
- package/packages/willa-content/src/components/Watermark/index.tsx +294 -0
- package/packages/willa-content/src/index.ts +408 -0
- package/packages/willa-content/src/internal/buttonActionUtils.ts +46 -0
- package/packages/willa-content/src/internal/syntaxHighlight.css +82 -0
- package/packages/willa-content/src/internal/useSingleSelection.ts +80 -0
- package/packages/willa-content/src/themes/dark.css +777 -0
- package/packages/willa-content/src/themes/light.css +780 -0
- package/packages/willa-content/vitest.config.ts +15 -0
- package/packages/willa-form/README.md +33 -0
- package/packages/willa-form/auklet.config.mjs +24 -0
- package/packages/willa-form/package.json +85 -0
- package/packages/willa-form/src/components/Calendar/ScheduleCalendar.tsx +1036 -0
- package/packages/willa-form/src/components/Calendar/index.css +1081 -0
- package/packages/willa-form/src/components/Calendar/index.tsx +876 -0
- package/packages/willa-form/src/components/Calendar/utils.ts +67 -0
- package/packages/willa-form/src/components/Checkbox/index.css +133 -0
- package/packages/willa-form/src/components/Checkbox/index.tsx +104 -0
- package/packages/willa-form/src/components/ColorPicker/index.css +617 -0
- package/packages/willa-form/src/components/ColorPicker/index.tsx +724 -0
- package/packages/willa-form/src/components/ColorPicker/types.ts +21 -0
- package/packages/willa-form/src/components/DatePicker/index.css +395 -0
- package/packages/willa-form/src/components/DatePicker/index.tsx +631 -0
- package/packages/willa-form/src/components/FilterBar/index.css +122 -0
- package/packages/willa-form/src/components/FilterBar/index.tsx +98 -0
- package/packages/willa-form/src/components/Form/index.css +49 -0
- package/packages/willa-form/src/components/Form/index.tsx +50 -0
- package/packages/willa-form/src/components/FormActions/index.css +62 -0
- package/packages/willa-form/src/components/FormActions/index.tsx +44 -0
- package/packages/willa-form/src/components/FormField/index.css +71 -0
- package/packages/willa-form/src/components/FormField/index.tsx +85 -0
- package/packages/willa-form/src/components/FormGroup/index.css +62 -0
- package/packages/willa-form/src/components/FormGroup/index.tsx +64 -0
- package/packages/willa-form/src/components/FormMessage/index.css +77 -0
- package/packages/willa-form/src/components/FormMessage/index.tsx +57 -0
- package/packages/willa-form/src/components/Input/index.css +131 -0
- package/packages/willa-form/src/components/Input/index.tsx +116 -0
- package/packages/willa-form/src/components/NumberInput/index.css +315 -0
- package/packages/willa-form/src/components/NumberInput/index.tsx +567 -0
- package/packages/willa-form/src/components/Picker/index.css +323 -0
- package/packages/willa-form/src/components/Picker/index.tsx +359 -0
- package/packages/willa-form/src/components/Radio/index.css +131 -0
- package/packages/willa-form/src/components/Radio/index.tsx +70 -0
- package/packages/willa-form/src/components/RangeInput/index.css +224 -0
- package/packages/willa-form/src/components/RangeInput/index.tsx +288 -0
- package/packages/willa-form/src/components/Rate/index.css +97 -0
- package/packages/willa-form/src/components/Rate/index.tsx +378 -0
- package/packages/willa-form/src/components/SearchInput/index.css +32 -0
- package/packages/willa-form/src/components/SearchInput/index.tsx +101 -0
- package/packages/willa-form/src/components/Select/index.css +4 -0
- package/packages/willa-form/src/components/Select/index.tsx +79 -0
- package/packages/willa-form/src/components/Switch/index.css +133 -0
- package/packages/willa-form/src/components/Switch/index.tsx +75 -0
- package/packages/willa-form/src/components/TagInput/index.css +209 -0
- package/packages/willa-form/src/components/TagInput/index.tsx +497 -0
- package/packages/willa-form/src/components/TextArea/index.css +91 -0
- package/packages/willa-form/src/components/TextArea/index.tsx +87 -0
- package/packages/willa-form/src/components/TimePicker/index.css +485 -0
- package/packages/willa-form/src/components/TimePicker/index.tsx +649 -0
- package/packages/willa-form/src/components/TimePicker/types.ts +8 -0
- package/packages/willa-form/src/components/TreeSelect/index.css +331 -0
- package/packages/willa-form/src/components/TreeSelect/index.tsx +497 -0
- package/packages/willa-form/src/components/Upload/index.css +345 -0
- package/packages/willa-form/src/components/Upload/index.tsx +581 -0
- package/packages/willa-form/src/index.ts +176 -0
- package/packages/willa-form/src/internal/colorUtils.ts +206 -0
- package/packages/willa-form/src/internal/comboboxField.tsx +114 -0
- package/packages/willa-form/src/internal/floatingPanelParts.tsx +80 -0
- package/packages/willa-form/src/internal/selectablePanelKeyboard.ts +93 -0
- package/packages/willa-form/src/internal/selectablePanelParts.tsx +212 -0
- package/packages/willa-form/src/internal/timePickerParts.ts +205 -0
- package/packages/willa-form/src/internal/useComboboxState.ts +21 -0
- package/packages/willa-form/src/internal/useFloatingPanel.ts +114 -0
- package/packages/willa-form/src/internal/useSelectablePanel.ts +152 -0
- package/packages/willa-form/src/internal/useSelectionModel.ts +115 -0
- package/packages/willa-form/src/themes/dark.css +197 -0
- package/packages/willa-form/src/themes/light.css +201 -0
- package/packages/willa-form/vitest.config.ts +15 -0
- package/packages/willa-layout/README.md +33 -0
- package/packages/willa-layout/auklet.config.mjs +11 -0
- package/packages/willa-layout/package.json +83 -0
- package/packages/willa-layout/src/components/AppShell/index.css +100 -0
- package/packages/willa-layout/src/components/AppShell/index.tsx +70 -0
- package/packages/willa-layout/src/components/BorderBeam/index.css +86 -0
- package/packages/willa-layout/src/components/BorderBeam/index.tsx +161 -0
- package/packages/willa-layout/src/components/Card/index.css +179 -0
- package/packages/willa-layout/src/components/Card/index.tsx +174 -0
- package/packages/willa-layout/src/components/Container/index.css +55 -0
- package/packages/willa-layout/src/components/Container/index.tsx +43 -0
- package/packages/willa-layout/src/components/Grid/index.css +9 -0
- package/packages/willa-layout/src/components/Grid/index.tsx +100 -0
- package/packages/willa-layout/src/components/Group/index.css +21 -0
- package/packages/willa-layout/src/components/Group/index.tsx +146 -0
- package/packages/willa-layout/src/components/Masonry/index.css +12 -0
- package/packages/willa-layout/src/components/Masonry/index.tsx +71 -0
- package/packages/willa-layout/src/components/PageHeader/index.css +130 -0
- package/packages/willa-layout/src/components/PageHeader/index.tsx +76 -0
- package/packages/willa-layout/src/components/Panel/index.css +123 -0
- package/packages/willa-layout/src/components/Panel/index.tsx +63 -0
- package/packages/willa-layout/src/components/SectionHeader/index.css +104 -0
- package/packages/willa-layout/src/components/SectionHeader/index.tsx +69 -0
- package/packages/willa-layout/src/components/Separator/index.css +155 -0
- package/packages/willa-layout/src/components/Separator/index.tsx +61 -0
- package/packages/willa-layout/src/components/SidebarLayout/index.css +43 -0
- package/packages/willa-layout/src/components/SidebarLayout/index.tsx +73 -0
- package/packages/willa-layout/src/components/SplitPane/index.css +148 -0
- package/packages/willa-layout/src/components/SplitPane/index.tsx +434 -0
- package/packages/willa-layout/src/components/Stack/index.css +8 -0
- package/packages/willa-layout/src/components/Stack/index.tsx +99 -0
- package/packages/willa-layout/src/index.ts +91 -0
- package/packages/willa-layout/src/internal/headerBlock.tsx +49 -0
- package/packages/willa-layout/src/themes/dark.css +55 -0
- package/packages/willa-layout/src/themes/light.css +59 -0
- package/packages/willa-layout/vitest.config.ts +15 -0
- package/packages/willa-shared/README.md +24 -0
- package/packages/willa-shared/package.json +46 -0
- package/packages/willa-shared/src/clipboard.ts +23 -0
- package/packages/willa-shared/src/codeHighlight.ts +109 -0
- package/packages/willa-shared/src/controllableState.ts +42 -0
- package/packages/willa-shared/src/copy.ts +79 -0
- package/packages/willa-shared/src/css.ts +10 -0
- package/packages/willa-shared/src/dom.ts +12 -0
- package/packages/willa-shared/src/file.ts +214 -0
- package/packages/willa-shared/src/floating.ts +160 -0
- package/packages/willa-shared/src/floatingLayer.ts +310 -0
- package/packages/willa-shared/src/heading.ts +69 -0
- package/packages/willa-shared/src/index.ts +88 -0
- package/packages/willa-shared/src/media.ts +23 -0
- package/packages/willa-shared/src/nodes.ts +24 -0
- package/packages/willa-shared/src/number.ts +9 -0
- package/packages/willa-shared/src/refs.ts +16 -0
- package/packages/willa-shared/src/request.ts +46 -0
- package/packages/willa-shared/src/types.ts +27 -0
- package/packages/willa-shared/src/viewport.ts +12 -0
- package/packages/willa-shared/src/virtualScroll.ts +137 -0
- package/packages/willa-shared/vitest.config.ts +9 -0
- package/packages/willa-widgets/README.md +33 -0
- package/packages/willa-widgets/auklet.config.mjs +25 -0
- package/packages/willa-widgets/package.json +89 -0
- package/packages/willa-widgets/src/components/AudioEmbed/index.css +424 -0
- package/packages/willa-widgets/src/components/AudioEmbed/index.tsx +270 -0
- package/packages/willa-widgets/src/components/AudioLink/index.css +165 -0
- package/packages/willa-widgets/src/components/AudioLink/index.tsx +169 -0
- package/packages/willa-widgets/src/components/EnglishCards/Card.tsx +116 -0
- package/packages/willa-widgets/src/components/EnglishCards/Content.tsx +203 -0
- package/packages/willa-widgets/src/components/EnglishCards/Practice.tsx +91 -0
- package/packages/willa-widgets/src/components/EnglishCards/Resources.tsx +91 -0
- package/packages/willa-widgets/src/components/EnglishCards/index.css +531 -0
- package/packages/willa-widgets/src/components/EnglishCards/index.tsx +142 -0
- package/packages/willa-widgets/src/components/EnglishCards/speech.ts +29 -0
- package/packages/willa-widgets/src/components/EnglishCards/types.ts +43 -0
- package/packages/willa-widgets/src/components/GitHubMention/index.css +206 -0
- package/packages/willa-widgets/src/components/GitHubMention/index.tsx +168 -0
- package/packages/willa-widgets/src/components/GitHubRepo/index.css +194 -0
- package/packages/willa-widgets/src/components/GitHubRepo/index.tsx +172 -0
- package/packages/willa-widgets/src/components/LogoWall/index.css +122 -0
- package/packages/willa-widgets/src/components/LogoWall/index.tsx +104 -0
- package/packages/willa-widgets/src/components/Mdx/index.css +273 -0
- package/packages/willa-widgets/src/components/Mdx/index.tsx +377 -0
- package/packages/willa-widgets/src/components/Poem/index.css +101 -0
- package/packages/willa-widgets/src/components/Poem/index.tsx +74 -0
- package/packages/willa-widgets/src/components/ProfileCard/index.css +107 -0
- package/packages/willa-widgets/src/components/ProfileCard/index.tsx +116 -0
- package/packages/willa-widgets/src/components/QRCode/index.css +175 -0
- package/packages/willa-widgets/src/components/QRCode/index.tsx +257 -0
- package/packages/willa-widgets/src/components/SiteFooter/index.css +109 -0
- package/packages/willa-widgets/src/components/SiteFooter/index.tsx +104 -0
- package/packages/willa-widgets/src/components/SiteNav/index.css +93 -0
- package/packages/willa-widgets/src/components/SiteNav/index.tsx +71 -0
- package/packages/willa-widgets/src/components/VideoEmbed/index.css +230 -0
- package/packages/willa-widgets/src/components/VideoEmbed/index.tsx +134 -0
- package/packages/willa-widgets/src/components/VideoLink/index.css +118 -0
- package/packages/willa-widgets/src/components/VideoLink/index.tsx +161 -0
- package/packages/willa-widgets/src/components/WebEmbed/index.css +106 -0
- package/packages/willa-widgets/src/components/WebEmbed/index.tsx +98 -0
- package/packages/willa-widgets/src/components/XPostEmbed/index.css +52 -0
- package/packages/willa-widgets/src/components/XPostEmbed/index.tsx +88 -0
- package/packages/willa-widgets/src/index.ts +57 -0
- package/packages/willa-widgets/src/internal/media.ts +84 -0
- package/packages/willa-widgets/src/internal/mediaEmbed.tsx +52 -0
- package/packages/willa-widgets/src/internal/useGitHubHoverCardResource.ts +120 -0
- package/packages/willa-widgets/src/themes/dark.css +209 -0
- package/packages/willa-widgets/src/themes/light.css +207 -0
- package/packages/willa-widgets/vitest.config.ts +15 -0
- package/pnpm-workspace.yaml +29 -0
- package/tsconfig.json +50 -0
|
@@ -0,0 +1,777 @@
|
|
|
1
|
+
:root[data-wk-theme="dark"] .willa-shell,
|
|
2
|
+
:root[data-wk-theme="dark"] .willa-lightbox,
|
|
3
|
+
:root[data-wk-theme="dark"] .willa-dialog,
|
|
4
|
+
:root[data-wk-theme="dark"] .willa-drawer,
|
|
5
|
+
:root[data-wk-theme="dark"] .willa-menu-content,
|
|
6
|
+
:root[data-wk-theme="dark"] .willa-popover-content,
|
|
7
|
+
:root[data-wk-theme="dark"] .willa-tooltip-content,
|
|
8
|
+
:root[data-wk-theme="dark"] .willa-tour,
|
|
9
|
+
:root[data-wk-theme="dark"] .willa-toast-viewport {
|
|
10
|
+
--willa-anchor-active-bg: rgba(130, 163, 236, 0.15);
|
|
11
|
+
--willa-anchor-active-meta-text: #a7bef6;
|
|
12
|
+
--willa-anchor-active-text: var(--willa-text-strong);
|
|
13
|
+
--willa-anchor-bg-hover: rgba(255, 255, 255, 0.075);
|
|
14
|
+
--willa-anchor-marker: #a7bef6;
|
|
15
|
+
--willa-anchor-meta-text: var(--willa-text-soft);
|
|
16
|
+
--willa-anchor-text: var(--willa-text);
|
|
17
|
+
--willa-anchor-text-hover: var(--willa-text-strong);
|
|
18
|
+
--willa-avatar-bg: rgba(255, 255, 255, 0.1);
|
|
19
|
+
--willa-avatar-border: rgba(255, 255, 255, 0.14);
|
|
20
|
+
--willa-avatar-border-hover: rgba(134, 239, 172, 0.28);
|
|
21
|
+
--willa-avatar-shadow-hover: none;
|
|
22
|
+
--willa-avatar-text: var(--willa-text-strong);
|
|
23
|
+
--willa-avatar-hover-card-bg: rgba(24, 26, 31, 0.98);
|
|
24
|
+
--willa-avatar-hover-card-border: rgba(255, 255, 255, 0.14);
|
|
25
|
+
--willa-avatar-hover-card-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
|
|
26
|
+
--willa-avatar-hover-card-text: var(--willa-text);
|
|
27
|
+
--willa-avatar-preview-close-bg: rgba(17, 24, 39, 0.72);
|
|
28
|
+
--willa-avatar-preview-close-bg-hover: rgba(17, 24, 39, 0.88);
|
|
29
|
+
--willa-avatar-preview-close-border: rgba(255, 255, 255, 0.18);
|
|
30
|
+
--willa-avatar-preview-close-border-hover: rgba(255, 255, 255, 0.28);
|
|
31
|
+
--willa-avatar-preview-close-text: var(--willa-text-strong);
|
|
32
|
+
--willa-alert-title: var(--willa-text-strong);
|
|
33
|
+
--willa-alert-text: var(--willa-text);
|
|
34
|
+
--willa-alert-description: var(--willa-text-soft);
|
|
35
|
+
--willa-alert-close: var(--willa-text-soft);
|
|
36
|
+
--willa-alert-close-hover: var(--willa-text-strong);
|
|
37
|
+
--willa-alert-close-bg-hover: rgba(255, 255, 255, 0.08);
|
|
38
|
+
--willa-alert-info-bg: rgba(125, 211, 252, 0.11);
|
|
39
|
+
--willa-alert-info-border: rgba(125, 211, 252, 0.26);
|
|
40
|
+
--willa-alert-info-filled-bg: rgba(125, 211, 252, 0.18);
|
|
41
|
+
--willa-alert-info-icon: #7dd3fc;
|
|
42
|
+
--willa-alert-success-bg: rgba(134, 239, 172, 0.11);
|
|
43
|
+
--willa-alert-success-border: rgba(134, 239, 172, 0.24);
|
|
44
|
+
--willa-alert-success-filled-bg: rgba(134, 239, 172, 0.18);
|
|
45
|
+
--willa-alert-success-icon: #86efac;
|
|
46
|
+
--willa-alert-warning-bg: rgba(251, 191, 36, 0.12);
|
|
47
|
+
--willa-alert-warning-border: rgba(251, 191, 36, 0.28);
|
|
48
|
+
--willa-alert-warning-filled-bg: rgba(251, 191, 36, 0.2);
|
|
49
|
+
--willa-alert-warning-icon: #fbbf24;
|
|
50
|
+
--willa-alert-error-bg: rgba(248, 113, 113, 0.11);
|
|
51
|
+
--willa-alert-error-border: rgba(248, 113, 113, 0.26);
|
|
52
|
+
--willa-alert-error-filled-bg: rgba(248, 113, 113, 0.18);
|
|
53
|
+
--willa-alert-error-icon: #f87171;
|
|
54
|
+
--willa-badge-neutral-bg: rgba(255, 255, 255, 0.08);
|
|
55
|
+
--willa-badge-neutral-border: rgba(255, 255, 255, 0.12);
|
|
56
|
+
--willa-badge-neutral-text: var(--willa-text);
|
|
57
|
+
--willa-badge-neutral-solid-bg: rgba(255, 255, 255, 0.14);
|
|
58
|
+
--willa-badge-neutral-solid-text: var(--willa-text-strong);
|
|
59
|
+
--willa-badge-info-bg: rgba(125, 211, 252, 0.12);
|
|
60
|
+
--willa-badge-info-border: rgba(125, 211, 252, 0.24);
|
|
61
|
+
--willa-badge-info-text: var(--willa-text);
|
|
62
|
+
--willa-badge-info-solid-bg: rgba(125, 211, 252, 0.2);
|
|
63
|
+
--willa-badge-info-solid-text: var(--willa-text-strong);
|
|
64
|
+
--willa-badge-success-bg: rgba(134, 239, 172, 0.12);
|
|
65
|
+
--willa-badge-success-border: rgba(134, 239, 172, 0.24);
|
|
66
|
+
--willa-badge-success-text: var(--willa-text);
|
|
67
|
+
--willa-badge-success-solid-bg: rgba(134, 239, 172, 0.18);
|
|
68
|
+
--willa-badge-success-solid-text: var(--willa-text-strong);
|
|
69
|
+
--willa-badge-warning-bg: rgba(251, 191, 36, 0.13);
|
|
70
|
+
--willa-badge-warning-border: rgba(251, 191, 36, 0.28);
|
|
71
|
+
--willa-badge-warning-text: var(--willa-text);
|
|
72
|
+
--willa-badge-warning-solid-bg: rgba(251, 191, 36, 0.2);
|
|
73
|
+
--willa-badge-warning-solid-text: var(--willa-text-strong);
|
|
74
|
+
--willa-badge-danger-bg: rgba(248, 113, 113, 0.12);
|
|
75
|
+
--willa-badge-danger-border: rgba(248, 113, 113, 0.26);
|
|
76
|
+
--willa-badge-danger-text: var(--willa-text);
|
|
77
|
+
--willa-badge-danger-solid-bg: rgba(248, 113, 113, 0.19);
|
|
78
|
+
--willa-badge-danger-solid-text: var(--willa-text-strong);
|
|
79
|
+
--willa-tag-neutral-bg: rgba(255, 255, 255, 0.08);
|
|
80
|
+
--willa-tag-neutral-border: rgba(255, 255, 255, 0.13);
|
|
81
|
+
--willa-tag-neutral-text: var(--willa-text);
|
|
82
|
+
--willa-tag-neutral-solid-bg: rgba(255, 255, 255, 0.15);
|
|
83
|
+
--willa-tag-neutral-solid-text: var(--willa-text-strong);
|
|
84
|
+
--willa-tag-info-bg: rgba(125, 211, 252, 0.12);
|
|
85
|
+
--willa-tag-info-border: rgba(125, 211, 252, 0.26);
|
|
86
|
+
--willa-tag-info-text: #d8e2ff;
|
|
87
|
+
--willa-tag-info-solid-bg: rgba(125, 211, 252, 0.2);
|
|
88
|
+
--willa-tag-info-solid-text: var(--willa-text-strong);
|
|
89
|
+
--willa-tag-success-bg: rgba(134, 239, 172, 0.12);
|
|
90
|
+
--willa-tag-success-border: rgba(134, 239, 172, 0.26);
|
|
91
|
+
--willa-tag-success-text: #bbf7d0;
|
|
92
|
+
--willa-tag-success-solid-bg: rgba(134, 239, 172, 0.2);
|
|
93
|
+
--willa-tag-success-solid-text: var(--willa-text-strong);
|
|
94
|
+
--willa-tag-warning-bg: rgba(251, 191, 36, 0.13);
|
|
95
|
+
--willa-tag-warning-border: rgba(251, 191, 36, 0.28);
|
|
96
|
+
--willa-tag-warning-text: #fde68a;
|
|
97
|
+
--willa-tag-warning-solid-bg: rgba(251, 191, 36, 0.22);
|
|
98
|
+
--willa-tag-warning-solid-text: var(--willa-text-strong);
|
|
99
|
+
--willa-tag-danger-bg: rgba(248, 113, 113, 0.12);
|
|
100
|
+
--willa-tag-danger-border: rgba(248, 113, 113, 0.28);
|
|
101
|
+
--willa-tag-danger-text: #fecaca;
|
|
102
|
+
--willa-tag-danger-solid-bg: rgba(248, 113, 113, 0.2);
|
|
103
|
+
--willa-tag-danger-solid-text: var(--willa-text-strong);
|
|
104
|
+
--willa-tag-selected-bg: rgba(130, 163, 236, 0.2);
|
|
105
|
+
--willa-tag-selected-border: rgba(130, 163, 236, 0.38);
|
|
106
|
+
--willa-tag-selected-shadow: rgba(130, 163, 236, 0.12);
|
|
107
|
+
--willa-tag-selected-text: var(--willa-text-strong);
|
|
108
|
+
--willa-tag-close-bg-hover: rgba(255, 255, 255, 0.1);
|
|
109
|
+
--willa-button-solid-bg: rgba(255, 255, 255, 0.1);
|
|
110
|
+
--willa-button-solid-bg-hover: rgba(255, 255, 255, 0.14);
|
|
111
|
+
--willa-button-solid-text: var(--willa-text-strong);
|
|
112
|
+
--willa-button-solid-shadow: none;
|
|
113
|
+
--willa-button-solid-shadow-hover: none;
|
|
114
|
+
--willa-button-soft-bg: rgba(255, 255, 255, 0.065);
|
|
115
|
+
--willa-button-soft-bg-hover: rgba(255, 255, 255, 0.1);
|
|
116
|
+
--willa-button-soft-text: var(--willa-text);
|
|
117
|
+
--willa-button-outline-border: rgba(134, 239, 172, 0.24);
|
|
118
|
+
--willa-button-outline-border-hover: rgba(134, 239, 172, 0.36);
|
|
119
|
+
--willa-button-outline-bg-hover: rgba(134, 239, 172, 0.08);
|
|
120
|
+
--willa-button-outline-text: var(--willa-text);
|
|
121
|
+
--willa-button-ghost-bg-hover: rgba(255, 255, 255, 0.09);
|
|
122
|
+
--willa-button-ghost-text: var(--willa-text-strong);
|
|
123
|
+
--willa-button-link-text: var(--willa-text);
|
|
124
|
+
--willa-button-link-text-hover: var(--willa-text-strong);
|
|
125
|
+
--willa-button-copied-bg: rgba(255, 255, 255, 0.08);
|
|
126
|
+
--willa-button-copied-border: rgba(134, 239, 172, 0.2);
|
|
127
|
+
--willa-button-copied-text: var(--willa-text-strong);
|
|
128
|
+
--willa-button-pressed-bg: rgba(130, 163, 236, 0.2);
|
|
129
|
+
--willa-button-pressed-border: rgba(130, 163, 236, 0.34);
|
|
130
|
+
--willa-button-pressed-text: var(--willa-text-strong);
|
|
131
|
+
--willa-button-pressed-shadow: none;
|
|
132
|
+
--willa-copy-button-failed-bg: rgba(248, 113, 113, 0.14);
|
|
133
|
+
--willa-copy-button-failed-border: rgba(248, 113, 113, 0.28);
|
|
134
|
+
--willa-copy-button-failed-text: var(--willa-text-strong);
|
|
135
|
+
--willa-content-scrollbar-thumb: var(
|
|
136
|
+
--willa-scrollbar-thumb,
|
|
137
|
+
color-mix(in srgb, var(--willa-text-soft) 56%, transparent)
|
|
138
|
+
);
|
|
139
|
+
--willa-toolbar-bg: rgba(255, 255, 255, 0.06);
|
|
140
|
+
--willa-toolbar-border: rgba(255, 255, 255, 0.11);
|
|
141
|
+
--willa-toolbar-separator: rgba(255, 255, 255, 0.12);
|
|
142
|
+
--willa-toolbar-shadow: none;
|
|
143
|
+
--willa-toolbar-text: var(--willa-text);
|
|
144
|
+
--willa-float-button-bg: rgba(255, 255, 255, 0.085);
|
|
145
|
+
--willa-float-button-bg-hover: rgba(255, 255, 255, 0.11);
|
|
146
|
+
--willa-float-button-border: rgba(255, 255, 255, 0.1);
|
|
147
|
+
--willa-float-button-border-hover: rgba(130, 163, 236, 0.28);
|
|
148
|
+
--willa-float-button-text: var(--willa-text-strong);
|
|
149
|
+
--willa-float-button-muted: var(--willa-text-soft);
|
|
150
|
+
--willa-float-button-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
|
|
151
|
+
--willa-float-button-shadow-hover: 0 24px 44px rgba(0, 0, 0, 0.3);
|
|
152
|
+
--willa-float-button-circle-shadow: var(--willa-float-button-shadow);
|
|
153
|
+
--willa-float-button-primary-bg: rgba(130, 163, 236, 0.24);
|
|
154
|
+
--willa-float-button-primary-bg-hover: rgba(130, 163, 236, 0.3);
|
|
155
|
+
--willa-float-button-primary-border: rgba(130, 163, 236, 0.3);
|
|
156
|
+
--willa-float-button-primary-border-hover: rgba(130, 163, 236, 0.38);
|
|
157
|
+
--willa-float-button-primary-text: var(--willa-text-strong);
|
|
158
|
+
--willa-float-button-primary-muted: rgba(255, 255, 255, 0.72);
|
|
159
|
+
--willa-float-button-primary-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
|
|
160
|
+
--willa-float-button-primary-shadow-hover: 0 24px 46px rgba(0, 0, 0, 0.36);
|
|
161
|
+
--willa-float-button-badge-bg: rgba(24, 27, 32, 0.96);
|
|
162
|
+
--willa-float-button-badge-border: rgba(130, 163, 236, 0.24);
|
|
163
|
+
--willa-float-button-badge-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
|
|
164
|
+
--willa-float-button-badge-text: #dbeafe;
|
|
165
|
+
--willa-carousel-arrow-shadow: none;
|
|
166
|
+
--willa-carousel-bg: rgba(255, 255, 255, 0.055);
|
|
167
|
+
--willa-carousel-border: rgba(255, 255, 255, 0.11);
|
|
168
|
+
--willa-carousel-dots-bg: rgba(24, 27, 32, 0.88);
|
|
169
|
+
--willa-carousel-dots-border: rgba(255, 255, 255, 0.1);
|
|
170
|
+
--willa-carousel-dots-shadow: none;
|
|
171
|
+
--willa-carousel-dot-active-bg: #a7bef6;
|
|
172
|
+
--willa-carousel-dot-bg: rgba(255, 255, 255, 0.26);
|
|
173
|
+
--willa-carousel-dot-text: var(--willa-text);
|
|
174
|
+
--willa-carousel-focus: rgba(167, 190, 246, 0.24);
|
|
175
|
+
--willa-carousel-shadow: none;
|
|
176
|
+
--willa-carousel-text: var(--willa-text);
|
|
177
|
+
--willa-drawer-bg: #181b20;
|
|
178
|
+
--willa-drawer-border: rgba(255, 255, 255, 0.11);
|
|
179
|
+
--willa-drawer-muted: var(--willa-text-soft);
|
|
180
|
+
--willa-drawer-overlay-bg: rgba(0, 0, 0, 0.46);
|
|
181
|
+
--willa-drawer-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
|
|
182
|
+
--willa-drawer-text: var(--willa-text);
|
|
183
|
+
--willa-drawer-title: var(--willa-text-strong);
|
|
184
|
+
--willa-file-preview-bg: rgba(255, 255, 255, 0.055);
|
|
185
|
+
--willa-file-preview-body-bg: rgba(255, 255, 255, 0.04);
|
|
186
|
+
--willa-file-preview-border: rgba(255, 255, 255, 0.11);
|
|
187
|
+
--willa-file-preview-error: #fecaca;
|
|
188
|
+
--willa-file-preview-error-bg: rgba(248, 113, 113, 0.12);
|
|
189
|
+
--willa-file-preview-error-border: rgba(248, 113, 113, 0.26);
|
|
190
|
+
--willa-file-preview-icon: #a7bef6;
|
|
191
|
+
--willa-file-preview-icon-bg: rgba(130, 163, 236, 0.16);
|
|
192
|
+
--willa-file-preview-muted: var(--willa-text-soft);
|
|
193
|
+
--willa-file-preview-text: var(--willa-text);
|
|
194
|
+
--willa-file-preview-title: var(--willa-text-strong);
|
|
195
|
+
--willa-result-bg: rgba(255, 255, 255, 0.055);
|
|
196
|
+
--willa-result-border: rgba(255, 255, 255, 0.11);
|
|
197
|
+
--willa-result-danger-icon: #fecaca;
|
|
198
|
+
--willa-result-danger-icon-bg: rgba(248, 113, 113, 0.12);
|
|
199
|
+
--willa-result-danger-icon-border: rgba(248, 113, 113, 0.26);
|
|
200
|
+
--willa-result-icon: #d8e2ff;
|
|
201
|
+
--willa-result-icon-bg: rgba(130, 163, 236, 0.14);
|
|
202
|
+
--willa-result-icon-border: rgba(130, 163, 236, 0.3);
|
|
203
|
+
--willa-result-info-icon: #d8e2ff;
|
|
204
|
+
--willa-result-info-icon-bg: rgba(130, 163, 236, 0.14);
|
|
205
|
+
--willa-result-info-icon-border: rgba(130, 163, 236, 0.3);
|
|
206
|
+
--willa-result-muted: var(--willa-text-soft);
|
|
207
|
+
--willa-result-success-icon: #bbf7d0;
|
|
208
|
+
--willa-result-success-icon-bg: rgba(134, 239, 172, 0.12);
|
|
209
|
+
--willa-result-success-icon-border: rgba(134, 239, 172, 0.24);
|
|
210
|
+
--willa-result-text: var(--willa-text);
|
|
211
|
+
--willa-result-title: var(--willa-text-strong);
|
|
212
|
+
--willa-result-warning-icon: #fde68a;
|
|
213
|
+
--willa-result-warning-icon-bg: rgba(251, 191, 36, 0.13);
|
|
214
|
+
--willa-result-warning-icon-border: rgba(251, 191, 36, 0.28);
|
|
215
|
+
--willa-selection-bar-bg: rgba(255, 255, 255, 0.07);
|
|
216
|
+
--willa-selection-bar-border: rgba(125, 211, 252, 0.2);
|
|
217
|
+
--willa-selection-bar-text: var(--willa-text-strong);
|
|
218
|
+
--willa-selection-bar-description: var(--willa-text-soft);
|
|
219
|
+
--willa-selection-bar-count-bg: rgba(125, 211, 252, 0.16);
|
|
220
|
+
--willa-selection-bar-count-text: var(--willa-text-strong);
|
|
221
|
+
--willa-selection-bar-shadow: none;
|
|
222
|
+
--willa-statistic-accent: #a7bef6;
|
|
223
|
+
--willa-statistic-accent-bg: rgba(130, 163, 236, 0.14);
|
|
224
|
+
--willa-statistic-bg: rgba(255, 255, 255, 0.055);
|
|
225
|
+
--willa-statistic-border: rgba(255, 255, 255, 0.11);
|
|
226
|
+
--willa-statistic-danger: #fecaca;
|
|
227
|
+
--willa-statistic-danger-bg: rgba(248, 113, 113, 0.12);
|
|
228
|
+
--willa-statistic-info: #d8e2ff;
|
|
229
|
+
--willa-statistic-info-bg: rgba(130, 163, 236, 0.14);
|
|
230
|
+
--willa-statistic-muted: var(--willa-text-soft);
|
|
231
|
+
--willa-statistic-success: #bbf7d0;
|
|
232
|
+
--willa-statistic-success-bg: rgba(134, 239, 172, 0.12);
|
|
233
|
+
--willa-statistic-text: var(--willa-text);
|
|
234
|
+
--willa-statistic-title: var(--willa-text-strong);
|
|
235
|
+
--willa-statistic-warning: #fde68a;
|
|
236
|
+
--willa-statistic-warning-bg: rgba(251, 191, 36, 0.13);
|
|
237
|
+
--willa-list-bg: rgba(255, 255, 255, 0.055);
|
|
238
|
+
--willa-list-border: rgba(255, 255, 255, 0.11);
|
|
239
|
+
--willa-list-divider: rgba(255, 255, 255, 0.08);
|
|
240
|
+
--willa-list-item-bg: transparent;
|
|
241
|
+
--willa-list-item-bg-hover: rgba(255, 255, 255, 0.075);
|
|
242
|
+
--willa-list-item-selected-bg: rgba(130, 163, 236, 0.14);
|
|
243
|
+
--willa-list-text: var(--willa-text);
|
|
244
|
+
--willa-list-title: var(--willa-text-strong);
|
|
245
|
+
--willa-list-description: var(--willa-text);
|
|
246
|
+
--willa-list-muted: var(--willa-text-soft);
|
|
247
|
+
--willa-list-unread: #a7bef6;
|
|
248
|
+
--willa-list-mark-bg: rgba(255, 255, 255, 0.08);
|
|
249
|
+
--willa-list-mark-border: rgba(255, 255, 255, 0.12);
|
|
250
|
+
--willa-list-mark-text: var(--willa-text-soft);
|
|
251
|
+
--willa-list-info-bg: rgba(130, 163, 236, 0.16);
|
|
252
|
+
--willa-list-info-border: rgba(130, 163, 236, 0.3);
|
|
253
|
+
--willa-list-info-text: #d8e2ff;
|
|
254
|
+
--willa-list-success-bg: rgba(134, 239, 172, 0.12);
|
|
255
|
+
--willa-list-success-border: rgba(134, 239, 172, 0.24);
|
|
256
|
+
--willa-list-success-text: #bbf7d0;
|
|
257
|
+
--willa-list-warning-bg: rgba(251, 191, 36, 0.13);
|
|
258
|
+
--willa-list-warning-border: rgba(251, 191, 36, 0.28);
|
|
259
|
+
--willa-list-warning-text: #fde68a;
|
|
260
|
+
--willa-list-danger-bg: rgba(248, 113, 113, 0.12);
|
|
261
|
+
--willa-list-danger-border: rgba(248, 113, 113, 0.26);
|
|
262
|
+
--willa-list-danger-text: #fecaca;
|
|
263
|
+
--willa-table-bg: #20242b;
|
|
264
|
+
--willa-table-border: rgba(255, 255, 255, 0.11);
|
|
265
|
+
--willa-table-divider: rgba(255, 255, 255, 0.08);
|
|
266
|
+
--willa-table-header-bg: #2b3038;
|
|
267
|
+
--willa-table-header-text: var(--willa-text-strong);
|
|
268
|
+
--willa-table-header-text-hover: var(--willa-accent);
|
|
269
|
+
--willa-table-actions-bg: var(--willa-table-bg);
|
|
270
|
+
--willa-table-fixed-bg: var(--willa-table-bg);
|
|
271
|
+
--willa-table-fixed-header-bg: var(--willa-table-header-bg);
|
|
272
|
+
--willa-table-fixed-bg-hover: var(--willa-table-row-bg-hover);
|
|
273
|
+
--willa-table-fixed-selected-bg: var(--willa-table-row-selected-bg);
|
|
274
|
+
--willa-table-fixed-selected-bg-hover: var(
|
|
275
|
+
--willa-table-row-selected-bg-hover
|
|
276
|
+
);
|
|
277
|
+
--willa-table-fixed-info-bg: var(--willa-table-row-info-bg);
|
|
278
|
+
--willa-table-fixed-success-bg: var(--willa-table-row-success-bg);
|
|
279
|
+
--willa-table-fixed-warning-bg: var(--willa-table-row-warning-bg);
|
|
280
|
+
--willa-table-fixed-danger-bg: var(--willa-table-row-danger-bg);
|
|
281
|
+
--willa-table-row-bg: var(--willa-table-bg);
|
|
282
|
+
--willa-table-row-bg-hover: #222830;
|
|
283
|
+
--willa-table-row-selected-bg: #243042;
|
|
284
|
+
--willa-table-row-selected-bg-hover: #293447;
|
|
285
|
+
--willa-table-row-info-bg: #232930;
|
|
286
|
+
--willa-table-row-success-bg: #1f2b24;
|
|
287
|
+
--willa-table-row-warning-bg: #2a2519;
|
|
288
|
+
--willa-table-row-danger-bg: #2c1f22;
|
|
289
|
+
--willa-table-expanded-bg: #20242b;
|
|
290
|
+
--willa-table-text: var(--willa-text);
|
|
291
|
+
--willa-table-muted: var(--willa-text-soft);
|
|
292
|
+
--willa-table-disabled-text: var(--willa-text-faint);
|
|
293
|
+
--willa-table-accent: var(--willa-accent);
|
|
294
|
+
--willa-table-control-bg: #262b33;
|
|
295
|
+
--willa-table-control-bg-hover: #2e3640;
|
|
296
|
+
--willa-table-control-border: rgba(255, 255, 255, 0.12);
|
|
297
|
+
--willa-table-control-border-hover: rgba(125, 211, 252, 0.24);
|
|
298
|
+
--willa-table-control-text: var(--willa-text-strong);
|
|
299
|
+
--willa-citation-bg: #182231;
|
|
300
|
+
--willa-citation-bg-hover: #1d2a3b;
|
|
301
|
+
--willa-citation-border: #334155;
|
|
302
|
+
--willa-citation-border-hover: #475569;
|
|
303
|
+
--willa-citation-text: var(--willa-text);
|
|
304
|
+
--willa-citation-text-hover: var(--willa-text-strong);
|
|
305
|
+
--willa-citation-title: var(--willa-text-strong);
|
|
306
|
+
--willa-citation-muted: var(--willa-text-soft);
|
|
307
|
+
--willa-citation-status: #cbd5e1;
|
|
308
|
+
--willa-citation-ring: #60a5fa;
|
|
309
|
+
--willa-citation-selected-bg: #1e3a5f;
|
|
310
|
+
--willa-citation-selected-border: #60a5fa;
|
|
311
|
+
--willa-citation-selected-text: var(--willa-text-strong);
|
|
312
|
+
--willa-citation-mark-bg: #243244;
|
|
313
|
+
--willa-citation-mark-border: #3f5066;
|
|
314
|
+
--willa-citation-mark-text: #dbeafe;
|
|
315
|
+
--willa-citation-info-bg: #172b46;
|
|
316
|
+
--willa-citation-info-bg-hover: #1e3a5f;
|
|
317
|
+
--willa-citation-info-border: #315b8c;
|
|
318
|
+
--willa-citation-info-border-hover: #60a5fa;
|
|
319
|
+
--willa-citation-info-mark-bg: #1e3a5f;
|
|
320
|
+
--willa-citation-info-mark-border: #315b8c;
|
|
321
|
+
--willa-citation-info-mark-text: #bfdbfe;
|
|
322
|
+
--willa-citation-success-bg: #123326;
|
|
323
|
+
--willa-citation-success-bg-hover: #164832;
|
|
324
|
+
--willa-citation-success-border: #28754a;
|
|
325
|
+
--willa-citation-success-border-hover: #4ade80;
|
|
326
|
+
--willa-citation-success-mark-bg: #164832;
|
|
327
|
+
--willa-citation-success-mark-border: #28754a;
|
|
328
|
+
--willa-citation-success-mark-text: #bbf7d0;
|
|
329
|
+
--willa-citation-warning-bg: #3a2a12;
|
|
330
|
+
--willa-citation-warning-bg-hover: #4a3514;
|
|
331
|
+
--willa-citation-warning-border: #8a6418;
|
|
332
|
+
--willa-citation-warning-border-hover: #fbbf24;
|
|
333
|
+
--willa-citation-warning-mark-bg: #4a3514;
|
|
334
|
+
--willa-citation-warning-mark-border: #8a6418;
|
|
335
|
+
--willa-citation-warning-mark-text: #fde68a;
|
|
336
|
+
--willa-download-bg: rgba(255, 255, 255, 0.075);
|
|
337
|
+
--willa-download-bg-hover: rgba(125, 211, 252, 0.12);
|
|
338
|
+
--willa-download-border: rgba(255, 255, 255, 0.11);
|
|
339
|
+
--willa-download-border-hover: rgba(125, 211, 252, 0.24);
|
|
340
|
+
--willa-download-button-bg: rgba(255, 255, 255, 0.075);
|
|
341
|
+
--willa-download-button-border: rgba(255, 255, 255, 0.12);
|
|
342
|
+
--willa-download-button-shadow: none;
|
|
343
|
+
--willa-download-text: var(--willa-text);
|
|
344
|
+
--willa-download-text-hover: var(--willa-text-strong);
|
|
345
|
+
--willa-download-meta: var(--willa-text-soft);
|
|
346
|
+
--willa-download-action: var(--willa-accent);
|
|
347
|
+
--willa-file-card-bg: rgba(255, 255, 255, 0.055);
|
|
348
|
+
--willa-file-card-bg-hover: rgba(255, 255, 255, 0.08);
|
|
349
|
+
--willa-file-card-border: rgba(255, 255, 255, 0.08);
|
|
350
|
+
--willa-file-card-border-hover: rgba(125, 211, 252, 0.2);
|
|
351
|
+
--willa-file-card-shadow-hover: none;
|
|
352
|
+
--willa-file-card-text: var(--willa-text);
|
|
353
|
+
--willa-file-card-title: var(--willa-text-strong);
|
|
354
|
+
--willa-file-card-meta: var(--willa-text-faint);
|
|
355
|
+
--willa-file-card-icon-fold: rgba(255, 255, 255, 0.16);
|
|
356
|
+
--willa-file-card-excel-bg: rgba(34, 197, 94, 0.18);
|
|
357
|
+
--willa-file-card-excel-text: #86efac;
|
|
358
|
+
--willa-file-card-word-bg: rgba(125, 211, 252, 0.16);
|
|
359
|
+
--willa-file-card-word-text: #bae6fd;
|
|
360
|
+
--willa-file-card-pdf-bg: rgba(248, 113, 113, 0.18);
|
|
361
|
+
--willa-file-card-pdf-text: #fecaca;
|
|
362
|
+
--willa-file-card-ppt-bg: rgba(251, 146, 60, 0.18);
|
|
363
|
+
--willa-file-card-ppt-text: #fed7aa;
|
|
364
|
+
--willa-file-card-image-bg: rgba(56, 189, 248, 0.18);
|
|
365
|
+
--willa-file-card-image-text: #bae6fd;
|
|
366
|
+
--willa-file-card-audio-bg: rgba(167, 139, 250, 0.18);
|
|
367
|
+
--willa-file-card-audio-text: #ddd6fe;
|
|
368
|
+
--willa-file-card-video-bg: rgba(244, 114, 182, 0.18);
|
|
369
|
+
--willa-file-card-video-text: #fbcfe8;
|
|
370
|
+
--willa-file-card-archive-bg: rgba(251, 191, 36, 0.18);
|
|
371
|
+
--willa-file-card-archive-text: #fde68a;
|
|
372
|
+
--willa-file-card-code-bg: rgba(251, 191, 36, 0.16);
|
|
373
|
+
--willa-file-card-code-text: #fde68a;
|
|
374
|
+
--willa-file-card-neutral-icon-bg: rgba(255, 255, 255, 0.16);
|
|
375
|
+
--willa-file-card-neutral-icon-text: var(--willa-text-strong);
|
|
376
|
+
--willa-file-card-neutral-bg: rgba(255, 255, 255, 0.14);
|
|
377
|
+
--willa-file-card-neutral-text: var(--willa-text-strong);
|
|
378
|
+
--willa-file-tree-bg: rgba(255, 255, 255, 0.045);
|
|
379
|
+
--willa-file-tree-border: rgba(255, 255, 255, 0.11);
|
|
380
|
+
--willa-file-tree-border-hover: rgba(125, 211, 252, 0.2);
|
|
381
|
+
--willa-file-tree-text: var(--willa-text);
|
|
382
|
+
--willa-file-tree-file-title: var(--willa-text);
|
|
383
|
+
--willa-file-tree-folder-title: var(--willa-text-strong);
|
|
384
|
+
--willa-file-tree-meta: var(--willa-text-faint);
|
|
385
|
+
--willa-file-tree-folder-icon: #86efac;
|
|
386
|
+
--willa-tree-text: var(--willa-text);
|
|
387
|
+
--willa-tree-title: var(--willa-text-strong);
|
|
388
|
+
--willa-tree-muted-text: var(--willa-text-faint);
|
|
389
|
+
--willa-tree-disabled-text: var(--willa-text-faint);
|
|
390
|
+
--willa-tree-bg-hover: rgba(255, 255, 255, 0.075);
|
|
391
|
+
--willa-tree-border: rgba(255, 255, 255, 0.11);
|
|
392
|
+
--willa-tree-border-hover: rgba(130, 163, 236, 0.24);
|
|
393
|
+
--willa-tree-selected-bg: rgba(130, 163, 236, 0.16);
|
|
394
|
+
--willa-tree-selected-border: rgba(130, 163, 236, 0.38);
|
|
395
|
+
--willa-tree-line: rgba(255, 255, 255, 0.1);
|
|
396
|
+
--willa-tree-icon: var(--willa-text-soft);
|
|
397
|
+
--willa-tree-check-bg: rgba(255, 255, 255, 0.06);
|
|
398
|
+
--willa-tree-check-border: rgba(255, 255, 255, 0.16);
|
|
399
|
+
--willa-tree-check-text: var(--willa-text-strong);
|
|
400
|
+
--willa-tree-check-active-bg: rgba(130, 163, 236, 0.32);
|
|
401
|
+
--willa-tree-check-active-border: rgba(130, 163, 236, 0.54);
|
|
402
|
+
--willa-tree-check-active-text: var(--willa-text-strong);
|
|
403
|
+
--willa-kbd-bg: rgba(255, 255, 255, 0.08);
|
|
404
|
+
--willa-kbd-border: rgba(255, 255, 255, 0.14);
|
|
405
|
+
--willa-kbd-separator: var(--willa-text-faint);
|
|
406
|
+
--willa-kbd-text: var(--willa-text-strong);
|
|
407
|
+
--willa-math-expression-text: var(--willa-text-strong);
|
|
408
|
+
--willa-math-expression-error-bg: rgba(252, 165, 165, 0.08);
|
|
409
|
+
--willa-math-expression-error-border: rgba(252, 165, 165, 0.2);
|
|
410
|
+
--willa-math-expression-error-text: #fca5a5;
|
|
411
|
+
--willa-typography-action: var(--willa-text-soft);
|
|
412
|
+
--willa-typography-action-bg-hover: rgba(255, 255, 255, 0.09);
|
|
413
|
+
--willa-typography-action-hover: var(--willa-text-strong);
|
|
414
|
+
--willa-typography-code-bg: rgba(255, 255, 255, 0.08);
|
|
415
|
+
--willa-typography-code-border: rgba(255, 255, 255, 0.13);
|
|
416
|
+
--willa-typography-code-text: var(--willa-text-strong);
|
|
417
|
+
--willa-typography-danger: #fca5a5;
|
|
418
|
+
--willa-typography-disabled: var(--willa-text-faint);
|
|
419
|
+
--willa-typography-edit-bg: var(--willa-panel-bg);
|
|
420
|
+
--willa-typography-edit-footer-bg: var(--willa-surface-tint);
|
|
421
|
+
--willa-typography-edit-shadow: none;
|
|
422
|
+
--willa-typography-edit-shadow-focus: none;
|
|
423
|
+
--willa-typography-edit-status-bg: rgba(147, 197, 253, 0.16);
|
|
424
|
+
--willa-typography-edit-status-text: #bfdbfe;
|
|
425
|
+
--willa-typography-keyboard-shadow: rgba(255, 255, 255, 0.18);
|
|
426
|
+
--willa-typography-link: #93c5fd;
|
|
427
|
+
--willa-typography-link-hover: #bfdbfe;
|
|
428
|
+
--willa-typography-mark-bg: rgba(251, 191, 36, 0.2);
|
|
429
|
+
--willa-typography-mark-text: var(--willa-text-strong);
|
|
430
|
+
--willa-typography-secondary: var(--willa-text-soft);
|
|
431
|
+
--willa-typography-success: #86efac;
|
|
432
|
+
--willa-typography-text: var(--willa-text);
|
|
433
|
+
--willa-typography-title: var(--willa-text-strong);
|
|
434
|
+
--willa-typography-tooltip-bg: #2b3038;
|
|
435
|
+
--willa-typography-tooltip-border: rgba(255, 255, 255, 0.12);
|
|
436
|
+
--willa-typography-tooltip-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
|
|
437
|
+
--willa-typography-tooltip-text: var(--willa-text-strong);
|
|
438
|
+
--willa-typography-warning: #fbbf24;
|
|
439
|
+
--willa-menu-bg: rgba(41, 45, 53, 0.98);
|
|
440
|
+
--willa-menu-border: rgba(255, 255, 255, 0.14);
|
|
441
|
+
--willa-menu-shadow: none;
|
|
442
|
+
--willa-menu-text: var(--willa-text-strong);
|
|
443
|
+
--willa-menu-muted: var(--willa-text-faint);
|
|
444
|
+
--willa-menu-item-bg-hover: rgba(255, 255, 255, 0.08);
|
|
445
|
+
--willa-menu-item-text-hover: var(--willa-text-strong);
|
|
446
|
+
--willa-menu-danger-text: #fca5a5;
|
|
447
|
+
--willa-menu-danger-bg-hover: rgba(252, 165, 165, 0.1);
|
|
448
|
+
--willa-menu-danger-text-hover: #fecaca;
|
|
449
|
+
--willa-menu-separator: rgba(255, 255, 255, 0.09);
|
|
450
|
+
--willa-popover-bg: rgba(41, 45, 53, 0.98);
|
|
451
|
+
--willa-popover-border: rgba(255, 255, 255, 0.14);
|
|
452
|
+
--willa-popover-shadow: none;
|
|
453
|
+
--willa-popover-text: var(--willa-text);
|
|
454
|
+
--willa-popover-title: var(--willa-text-strong);
|
|
455
|
+
--willa-popover-description: var(--willa-text-soft);
|
|
456
|
+
--willa-popover-divider: rgba(255, 255, 255, 0.09);
|
|
457
|
+
--willa-pagination-bg: rgba(255, 255, 255, 0.055);
|
|
458
|
+
--willa-pagination-bg-hover: rgba(255, 255, 255, 0.09);
|
|
459
|
+
--willa-pagination-border: rgba(255, 255, 255, 0.11);
|
|
460
|
+
--willa-pagination-border-hover: rgba(125, 211, 252, 0.22);
|
|
461
|
+
--willa-pagination-text: var(--willa-text-soft);
|
|
462
|
+
--willa-pagination-text-hover: var(--willa-text-strong);
|
|
463
|
+
--willa-pagination-current-bg: rgba(125, 211, 252, 0.14);
|
|
464
|
+
--willa-pagination-current-border: rgba(125, 211, 252, 0.24);
|
|
465
|
+
--willa-pagination-current-text: var(--willa-text-strong);
|
|
466
|
+
--willa-pagination-disabled-text: var(--willa-text-faint);
|
|
467
|
+
--willa-pagination-ellipsis-text: var(--willa-text-faint);
|
|
468
|
+
--willa-progress-text: var(--willa-text);
|
|
469
|
+
--willa-progress-label: var(--willa-text-strong);
|
|
470
|
+
--willa-progress-description: var(--willa-text-faint);
|
|
471
|
+
--willa-progress-value-text: var(--willa-text-soft);
|
|
472
|
+
--willa-progress-track: rgba(255, 255, 255, 0.09);
|
|
473
|
+
--willa-progress-buffer: rgba(125, 211, 252, 0.13);
|
|
474
|
+
--willa-progress-default-indicator: #6bb7d8;
|
|
475
|
+
--willa-progress-neutral-indicator: rgba(255, 255, 255, 0.3);
|
|
476
|
+
--willa-progress-success-indicator: #6fcf97;
|
|
477
|
+
--willa-progress-warning-indicator: #d8a93d;
|
|
478
|
+
--willa-progress-danger-indicator: #df8d8d;
|
|
479
|
+
--willa-spinner-default: #7dd3fc;
|
|
480
|
+
--willa-spinner-neutral: rgba(255, 255, 255, 0.58);
|
|
481
|
+
--willa-spinner-success: #86efac;
|
|
482
|
+
--willa-spinner-warning: #fbbf24;
|
|
483
|
+
--willa-spinner-danger: #fca5a5;
|
|
484
|
+
--willa-spinner-label: var(--willa-text-soft);
|
|
485
|
+
--willa-segmented-bg: #252932;
|
|
486
|
+
--willa-segmented-border: rgba(255, 255, 255, 0.1);
|
|
487
|
+
--willa-segmented-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
|
|
488
|
+
--willa-segmented-text: var(--willa-text);
|
|
489
|
+
--willa-segmented-option-text: var(--willa-text-soft);
|
|
490
|
+
--willa-segmented-option-text-hover: var(--willa-text-strong);
|
|
491
|
+
--willa-segmented-option-bg-hover: #2f343d;
|
|
492
|
+
--willa-segmented-option-selected-bg: #393f4a;
|
|
493
|
+
--willa-segmented-option-selected-border: rgba(255, 255, 255, 0.11);
|
|
494
|
+
--willa-segmented-option-selected-text: var(--willa-text-strong);
|
|
495
|
+
--willa-segmented-option-selected-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
|
|
496
|
+
--willa-tabs-list-bg: rgba(255, 255, 255, 0.055);
|
|
497
|
+
--willa-tabs-tab-text: var(--willa-text-soft);
|
|
498
|
+
--willa-tabs-tab-text-hover: var(--willa-text-strong);
|
|
499
|
+
--willa-tabs-tab-bg-hover: rgba(255, 255, 255, 0.065);
|
|
500
|
+
--willa-tabs-tab-active-bg: rgba(255, 255, 255, 0.12);
|
|
501
|
+
--willa-tabs-tab-active-border: rgba(255, 255, 255, 0.08);
|
|
502
|
+
--willa-tabs-tab-active-text: var(--willa-text-strong);
|
|
503
|
+
--willa-timeline-card-bg: rgba(255, 255, 255, 0.055);
|
|
504
|
+
--willa-timeline-card-bg-hover: rgba(255, 255, 255, 0.075);
|
|
505
|
+
--willa-timeline-card-border: rgba(255, 255, 255, 0.1);
|
|
506
|
+
--willa-timeline-card-border-hover: rgba(125, 211, 252, 0.18);
|
|
507
|
+
--willa-timeline-focus-border: rgba(125, 211, 252, 0.26);
|
|
508
|
+
--willa-timeline-focus-ring: rgba(125, 211, 252, 0.12);
|
|
509
|
+
--willa-timeline-line: rgba(255, 255, 255, 0.12);
|
|
510
|
+
--willa-timeline-marker-bg: rgba(255, 255, 255, 0.07);
|
|
511
|
+
--willa-timeline-marker-border: rgba(255, 255, 255, 0.12);
|
|
512
|
+
--willa-timeline-marker-text: rgba(255, 255, 255, 0.7);
|
|
513
|
+
--willa-timeline-title: var(--willa-text-strong);
|
|
514
|
+
--willa-timeline-text: var(--willa-text);
|
|
515
|
+
--willa-timeline-muted: var(--willa-text-soft);
|
|
516
|
+
--willa-timeline-time-bg: rgba(255, 255, 255, 0.075);
|
|
517
|
+
--willa-timeline-time-text: var(--willa-text-strong);
|
|
518
|
+
--willa-timeline-info-bg: rgba(125, 211, 252, 0.11);
|
|
519
|
+
--willa-timeline-info-border: rgba(125, 211, 252, 0.2);
|
|
520
|
+
--willa-timeline-info-text: #7dd3fc;
|
|
521
|
+
--willa-timeline-success-bg: rgba(134, 239, 172, 0.1);
|
|
522
|
+
--willa-timeline-success-border: rgba(134, 239, 172, 0.2);
|
|
523
|
+
--willa-timeline-success-text: #86efac;
|
|
524
|
+
--willa-timeline-warning-bg: rgba(251, 191, 36, 0.11);
|
|
525
|
+
--willa-timeline-warning-border: rgba(251, 191, 36, 0.22);
|
|
526
|
+
--willa-timeline-warning-text: #fbbf24;
|
|
527
|
+
--willa-timeline-danger-bg: rgba(252, 165, 165, 0.1);
|
|
528
|
+
--willa-timeline-danger-border: rgba(252, 165, 165, 0.22);
|
|
529
|
+
--willa-timeline-danger-text: #fca5a5;
|
|
530
|
+
--willa-skeleton-bg: linear-gradient(
|
|
531
|
+
90deg,
|
|
532
|
+
rgba(148, 163, 184, 0.1),
|
|
533
|
+
rgba(148, 163, 184, 0.22),
|
|
534
|
+
rgba(148, 163, 184, 0.1)
|
|
535
|
+
);
|
|
536
|
+
--willa-description-list-bg: rgba(255, 255, 255, 0.055);
|
|
537
|
+
--willa-description-list-item-bg: #20242b;
|
|
538
|
+
--willa-description-list-item-border: rgba(255, 255, 255, 0.09);
|
|
539
|
+
--willa-description-list-border: rgba(255, 255, 255, 0.11);
|
|
540
|
+
--willa-description-list-title: var(--willa-text-strong);
|
|
541
|
+
--willa-description-list-text: var(--willa-text);
|
|
542
|
+
--willa-description-list-label: var(--willa-text-soft);
|
|
543
|
+
--willa-description-list-value: var(--willa-text-strong);
|
|
544
|
+
--willa-description-list-muted: var(--willa-text-soft);
|
|
545
|
+
--willa-source-card-bg: #161d2e;
|
|
546
|
+
--willa-source-card-solid-bg: #222b3a;
|
|
547
|
+
--willa-source-card-border: rgba(148, 163, 184, 0.18);
|
|
548
|
+
--willa-source-card-border-hover: rgba(96, 165, 250, 0.32);
|
|
549
|
+
--willa-source-card-selected-bg: rgba(96, 165, 250, 0.1);
|
|
550
|
+
--willa-source-card-selected-border: rgba(96, 165, 250, 0.32);
|
|
551
|
+
--willa-source-card-ring: rgba(96, 165, 250, 0.42);
|
|
552
|
+
--willa-source-card-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
|
|
553
|
+
--willa-source-card-shadow-hover: 0 16px 38px rgba(0, 0, 0, 0.2);
|
|
554
|
+
--willa-source-card-text: var(--willa-text);
|
|
555
|
+
--willa-source-card-title: var(--willa-text-strong);
|
|
556
|
+
--willa-source-card-muted: var(--willa-text-soft);
|
|
557
|
+
--willa-source-card-source: #93c5fd;
|
|
558
|
+
--willa-source-card-mark-bg: rgba(96, 165, 250, 0.12);
|
|
559
|
+
--willa-source-card-mark-border: rgba(96, 165, 250, 0.22);
|
|
560
|
+
--willa-source-card-mark-text: #bfdbfe;
|
|
561
|
+
--willa-image-bg: #151d29;
|
|
562
|
+
--willa-floating-bg: rgba(29, 32, 37, 0.96);
|
|
563
|
+
--willa-lightbox-bg: rgba(17, 19, 23, 0.68);
|
|
564
|
+
--willa-lightbox-solid-bg: #111317;
|
|
565
|
+
--willa-dialog-overlay-bg: rgba(17, 19, 23, 0.7);
|
|
566
|
+
--willa-dialog-bg: rgba(28, 31, 36, 0.98);
|
|
567
|
+
--willa-dialog-border: rgba(255, 255, 255, 0.11);
|
|
568
|
+
--willa-dialog-shadow: none;
|
|
569
|
+
--willa-dialog-divider: rgba(255, 255, 255, 0.09);
|
|
570
|
+
--willa-dialog-title: var(--willa-text-strong);
|
|
571
|
+
--willa-dialog-description: var(--willa-text-soft);
|
|
572
|
+
--willa-dialog-close-bg: rgba(255, 255, 255, 0.06);
|
|
573
|
+
--willa-dialog-close-bg-hover: rgba(255, 255, 255, 0.1);
|
|
574
|
+
--willa-dialog-close-border: rgba(255, 255, 255, 0.1);
|
|
575
|
+
--willa-dialog-close-border-hover: rgba(125, 211, 252, 0.2);
|
|
576
|
+
--willa-dialog-close-text: var(--willa-text-soft);
|
|
577
|
+
--willa-dialog-danger-bg: #ef4444;
|
|
578
|
+
--willa-dialog-danger-bg-hover: #f87171;
|
|
579
|
+
--willa-dialog-danger-border: #ef4444;
|
|
580
|
+
--willa-dialog-danger-border-hover: #f87171;
|
|
581
|
+
--willa-dialog-danger-text: #111317;
|
|
582
|
+
--willa-empty-state-soft-bg: rgba(255, 255, 255, 0.045);
|
|
583
|
+
--willa-empty-state-soft-border: rgba(255, 255, 255, 0.09);
|
|
584
|
+
--willa-empty-state-outline-bg: rgba(255, 255, 255, 0.03);
|
|
585
|
+
--willa-empty-state-outline-border: rgba(255, 255, 255, 0.13);
|
|
586
|
+
--willa-empty-state-icon-bg: rgba(125, 211, 252, 0.1);
|
|
587
|
+
--willa-empty-state-icon-border: rgba(125, 211, 252, 0.16);
|
|
588
|
+
--willa-empty-state-icon-text: #7dd3fc;
|
|
589
|
+
--willa-empty-state-title: var(--willa-text-strong);
|
|
590
|
+
--willa-empty-state-text: var(--willa-text);
|
|
591
|
+
--willa-empty-state-description: var(--willa-text-soft);
|
|
592
|
+
--willa-empty-state-footer: var(--willa-text-faint);
|
|
593
|
+
--willa-comment-bg: rgba(255, 255, 255, 0.055);
|
|
594
|
+
--willa-comment-border: rgba(255, 255, 255, 0.11);
|
|
595
|
+
--willa-comment-shadow: none;
|
|
596
|
+
--willa-comment-highlight-bg: rgba(125, 211, 252, 0.08);
|
|
597
|
+
--willa-comment-highlight-border: rgba(125, 211, 252, 0.24);
|
|
598
|
+
--willa-comment-feed-divider: rgba(255, 255, 255, 0.1);
|
|
599
|
+
--willa-comment-text: var(--willa-text);
|
|
600
|
+
--willa-comment-author: #9fb5ff;
|
|
601
|
+
--willa-comment-body: rgba(255, 255, 255, 0.78);
|
|
602
|
+
--willa-comment-meta: rgba(255, 255, 255, 0.5);
|
|
603
|
+
--willa-comment-footer: rgba(255, 255, 255, 0.58);
|
|
604
|
+
--willa-comment-quote-border: rgba(159, 181, 255, 0.34);
|
|
605
|
+
--willa-comment-quote-author: #9fb5ff;
|
|
606
|
+
--willa-comment-quote-text: rgba(255, 255, 255, 0.58);
|
|
607
|
+
--willa-comment-list-text: var(--willa-text);
|
|
608
|
+
--willa-comment-list-title: var(--willa-text-strong);
|
|
609
|
+
--willa-comment-list-muted: var(--willa-text-soft);
|
|
610
|
+
--willa-comment-list-border: rgba(255, 255, 255, 0.11);
|
|
611
|
+
--willa-comment-list-loading-bg: rgba(255, 255, 255, 0.045);
|
|
612
|
+
--willa-comment-input-bg: #191f2f;
|
|
613
|
+
--willa-comment-input-bg-hover: #212a3a;
|
|
614
|
+
--willa-comment-input-border: rgba(148, 163, 184, 0.18);
|
|
615
|
+
--willa-comment-input-border-hover: rgba(148, 163, 184, 0.28);
|
|
616
|
+
--willa-comment-input-border-focus: rgba(96, 165, 250, 0.28);
|
|
617
|
+
--willa-comment-input-footer-bg: transparent;
|
|
618
|
+
--willa-comment-input-footer-border: transparent;
|
|
619
|
+
--willa-comment-input-author: var(--willa-text-strong);
|
|
620
|
+
--willa-comment-input-text: var(--willa-text-strong);
|
|
621
|
+
--willa-comment-input-muted: var(--willa-text-soft);
|
|
622
|
+
--willa-comment-input-placeholder: var(--willa-text-faint);
|
|
623
|
+
--willa-comment-input-tool-bg: #242b39;
|
|
624
|
+
--willa-comment-input-tool-bg-hover: #212a3a;
|
|
625
|
+
--willa-comment-input-tool-border: rgba(148, 163, 184, 0.14);
|
|
626
|
+
--willa-comment-input-tool-border-hover: rgba(148, 163, 184, 0.28);
|
|
627
|
+
--willa-comment-input-tool-text: var(--willa-text);
|
|
628
|
+
--willa-comment-input-tool-text-hover: var(--willa-text-strong);
|
|
629
|
+
--willa-comment-input-mention-panel-bg: #191f2f;
|
|
630
|
+
--willa-comment-input-mention-panel-border: rgba(148, 163, 184, 0.18);
|
|
631
|
+
--willa-comment-input-mention-panel-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
|
|
632
|
+
--willa-comment-input-mention-scrollbar-thumb: var(
|
|
633
|
+
--willa-content-scrollbar-thumb
|
|
634
|
+
);
|
|
635
|
+
--willa-comment-input-mention-item-bg-hover: rgba(255, 255, 255, 0.08);
|
|
636
|
+
--willa-comment-input-mention-item-border-hover: rgba(255, 255, 255, 0.2);
|
|
637
|
+
--willa-comment-input-mention-item-text-hover: rgba(255, 255, 255, 0.96);
|
|
638
|
+
--willa-input-panel-bg: #191f2f;
|
|
639
|
+
--willa-input-panel-bg-hover: #212a3a;
|
|
640
|
+
--willa-input-panel-border: rgba(148, 163, 184, 0.18);
|
|
641
|
+
--willa-input-panel-border-hover: rgba(148, 163, 184, 0.28);
|
|
642
|
+
--willa-input-panel-border-focus: rgba(96, 165, 250, 0.28);
|
|
643
|
+
--willa-input-panel-footer-bg: transparent;
|
|
644
|
+
--willa-input-panel-footer-border: transparent;
|
|
645
|
+
--willa-input-panel-reference-border: var(--willa-comment-quote-border);
|
|
646
|
+
--willa-input-panel-reference-author: var(--willa-comment-quote-author);
|
|
647
|
+
--willa-input-panel-reference-text: var(--willa-comment-quote-text);
|
|
648
|
+
--willa-input-panel-text: var(--willa-text-strong);
|
|
649
|
+
--willa-input-panel-placeholder: var(--willa-text-faint);
|
|
650
|
+
--willa-input-panel-meta: var(--willa-text-soft);
|
|
651
|
+
--willa-toast-shadow: none;
|
|
652
|
+
--willa-toast-title: var(--willa-text-strong);
|
|
653
|
+
--willa-toast-text: var(--willa-text);
|
|
654
|
+
--willa-toast-description: var(--willa-text-soft);
|
|
655
|
+
--willa-toast-close-text: var(--willa-text-faint);
|
|
656
|
+
--willa-toast-action-text: var(--willa-text-strong);
|
|
657
|
+
--willa-toast-action-bg: rgba(255, 255, 255, 0.055);
|
|
658
|
+
--willa-toast-action-bg-hover: rgba(255, 255, 255, 0.09);
|
|
659
|
+
--willa-toast-action-border: rgba(255, 255, 255, 0.08);
|
|
660
|
+
--willa-toast-action-border-hover: rgba(255, 255, 255, 0.13);
|
|
661
|
+
--willa-toast-control-bg-hover: rgba(255, 255, 255, 0.07);
|
|
662
|
+
--willa-toast-control-border-hover: rgba(255, 255, 255, 0.1);
|
|
663
|
+
--willa-toast-control-text-hover: var(--willa-text-strong);
|
|
664
|
+
--willa-toast-info: #7dd3fc;
|
|
665
|
+
--willa-toast-info-bg: rgba(125, 211, 252, 0.11);
|
|
666
|
+
--willa-toast-info-card-bg: #1f3d49;
|
|
667
|
+
--willa-toast-info-border: rgba(125, 211, 252, 0.18);
|
|
668
|
+
--willa-toast-success: #86efac;
|
|
669
|
+
--willa-toast-success-bg: rgba(134, 239, 172, 0.1);
|
|
670
|
+
--willa-toast-success-card-bg: #214038;
|
|
671
|
+
--willa-toast-success-border: rgba(134, 239, 172, 0.18);
|
|
672
|
+
--willa-toast-warning: #fbbf24;
|
|
673
|
+
--willa-toast-warning-bg: rgba(251, 191, 36, 0.12);
|
|
674
|
+
--willa-toast-warning-card-bg: #47391f;
|
|
675
|
+
--willa-toast-warning-border: rgba(251, 191, 36, 0.2);
|
|
676
|
+
--willa-toast-error: #fca5a5;
|
|
677
|
+
--willa-toast-error-bg: rgba(252, 165, 165, 0.1);
|
|
678
|
+
--willa-toast-error-card-bg: #432f34;
|
|
679
|
+
--willa-toast-error-border: rgba(252, 165, 165, 0.19);
|
|
680
|
+
--willa-tooltip-bg: rgba(243, 244, 246, 0.96);
|
|
681
|
+
--willa-tooltip-border: rgba(255, 255, 255, 0.12);
|
|
682
|
+
--willa-tooltip-shadow: none;
|
|
683
|
+
--willa-tooltip-text: #111827;
|
|
684
|
+
--willa-tour-bg: #181b20;
|
|
685
|
+
--willa-tour-border: rgba(255, 255, 255, 0.11);
|
|
686
|
+
--willa-tour-description: var(--willa-text);
|
|
687
|
+
--willa-tour-dot: rgba(255, 255, 255, 0.2);
|
|
688
|
+
--willa-tour-dot-active: #a7bef6;
|
|
689
|
+
--willa-tour-highlight-shadow: 0 0 0 3px rgba(167, 190, 246, 0.18);
|
|
690
|
+
--willa-tour-mask-bg: rgba(0, 0, 0, 0.54);
|
|
691
|
+
--willa-tour-muted: var(--willa-text-soft);
|
|
692
|
+
--willa-tour-primary-bg: #384258;
|
|
693
|
+
--willa-tour-primary-border: rgba(167, 190, 246, 0.32);
|
|
694
|
+
--willa-tour-primary-description: var(--willa-text);
|
|
695
|
+
--willa-tour-primary-dot: rgba(255, 255, 255, 0.24);
|
|
696
|
+
--willa-tour-primary-dot-active: #d8e2ff;
|
|
697
|
+
--willa-tour-primary-muted: var(--willa-text-soft);
|
|
698
|
+
--willa-tour-primary-text: var(--willa-text);
|
|
699
|
+
--willa-tour-primary-title: var(--willa-text-strong);
|
|
700
|
+
--willa-tour-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
|
|
701
|
+
--willa-tour-text: var(--willa-text);
|
|
702
|
+
--willa-tour-title: var(--willa-text-strong);
|
|
703
|
+
--willa-code-block-bg: #151d29;
|
|
704
|
+
--willa-code-block-border: rgba(255, 255, 255, 0.06);
|
|
705
|
+
--willa-code-tabs-border: rgba(255, 255, 255, 0.08);
|
|
706
|
+
--willa-code-tabs-list-bg: rgba(255, 255, 255, 0.045);
|
|
707
|
+
--willa-code-line-highlight: rgba(0, 0, 0, 0.36);
|
|
708
|
+
--willa-code-lang-color: rgba(235, 235, 245, 0.38);
|
|
709
|
+
--willa-code-text: #c9d1d9;
|
|
710
|
+
--willa-code-muted: #8b949e;
|
|
711
|
+
--willa-code-keyword: #ff7b72;
|
|
712
|
+
--willa-code-string: #a5d6ff;
|
|
713
|
+
--willa-code-number: #79c0ff;
|
|
714
|
+
--willa-code-title: #d2a8ff;
|
|
715
|
+
--willa-code-comment: #8b949e;
|
|
716
|
+
--willa-code-attr: #79c0ff;
|
|
717
|
+
--willa-code-symbol: #ffa657;
|
|
718
|
+
--willa-code-deletion: #ffdcd7;
|
|
719
|
+
--willa-code-addition: #aff5b4;
|
|
720
|
+
--willa-diff-viewer-bg: rgba(255, 255, 255, 0.055);
|
|
721
|
+
--willa-diff-viewer-header-bg: rgba(255, 255, 255, 0.06);
|
|
722
|
+
--willa-diff-viewer-label-bg: rgba(255, 255, 255, 0.045);
|
|
723
|
+
--willa-diff-viewer-code-bg: rgba(255, 255, 255, 0.035);
|
|
724
|
+
--willa-diff-viewer-border: rgba(255, 255, 255, 0.12);
|
|
725
|
+
--willa-diff-viewer-divider: rgba(255, 255, 255, 0.08);
|
|
726
|
+
--willa-diff-viewer-text: var(--willa-text);
|
|
727
|
+
--willa-diff-viewer-title: var(--willa-text-strong);
|
|
728
|
+
--willa-diff-viewer-muted: var(--willa-text-soft);
|
|
729
|
+
--willa-diff-viewer-mark-bg: rgba(255, 255, 255, 0.08);
|
|
730
|
+
--willa-diff-viewer-control-bg: rgba(255, 255, 255, 0.07);
|
|
731
|
+
--willa-diff-viewer-control-bg-hover: rgba(255, 255, 255, 0.11);
|
|
732
|
+
--willa-diff-viewer-control-border: rgba(255, 255, 255, 0.12);
|
|
733
|
+
--willa-diff-viewer-control-border-hover: rgba(130, 163, 236, 0.28);
|
|
734
|
+
--willa-diff-viewer-control-text: var(--willa-text-strong);
|
|
735
|
+
--willa-diff-viewer-insert-bg: rgba(134, 239, 172, 0.1);
|
|
736
|
+
--willa-diff-viewer-insert-soft-bg: rgba(134, 239, 172, 0.16);
|
|
737
|
+
--willa-diff-viewer-insert-border: rgba(134, 239, 172, 0.26);
|
|
738
|
+
--willa-diff-viewer-insert-text: #bbf7d0;
|
|
739
|
+
--willa-diff-viewer-delete-bg: rgba(248, 113, 113, 0.1);
|
|
740
|
+
--willa-diff-viewer-delete-soft-bg: rgba(248, 113, 113, 0.16);
|
|
741
|
+
--willa-diff-viewer-delete-text: #fecaca;
|
|
742
|
+
--willa-diff-viewer-empty-bg: rgba(255, 255, 255, 0.035);
|
|
743
|
+
--willa-diff-viewer-omitted-bg: rgba(255, 255, 255, 0.045);
|
|
744
|
+
--willa-step-marker-bg: #f3f4f6;
|
|
745
|
+
--willa-step-marker-color: #111827;
|
|
746
|
+
--willa-step-line: rgba(255, 255, 255, 0.16);
|
|
747
|
+
--willa-callout-note-accent: #7dd3fc;
|
|
748
|
+
--willa-callout-note-bg: rgba(125, 211, 252, 0.08);
|
|
749
|
+
--willa-callout-note-border: rgba(125, 211, 252, 0.14);
|
|
750
|
+
--willa-callout-note-icon-bg: rgba(125, 211, 252, 0.1);
|
|
751
|
+
--willa-callout-tip-accent: #c4b5fd;
|
|
752
|
+
--willa-callout-tip-bg: rgba(196, 181, 253, 0.08);
|
|
753
|
+
--willa-callout-tip-border: rgba(196, 181, 253, 0.15);
|
|
754
|
+
--willa-callout-tip-icon-bg: rgba(196, 181, 253, 0.11);
|
|
755
|
+
--willa-callout-warning-accent: #f8d26a;
|
|
756
|
+
--willa-callout-warning-bg: rgba(251, 191, 36, 0.08);
|
|
757
|
+
--willa-callout-warning-border: rgba(251, 191, 36, 0.16);
|
|
758
|
+
--willa-callout-warning-icon-bg: rgba(251, 191, 36, 0.11);
|
|
759
|
+
--willa-callout-success-accent: #86efac;
|
|
760
|
+
--willa-callout-success-bg: rgba(134, 239, 172, 0.07);
|
|
761
|
+
--willa-callout-success-border: rgba(134, 239, 172, 0.14);
|
|
762
|
+
--willa-callout-success-icon-bg: rgba(134, 239, 172, 0.1);
|
|
763
|
+
--willa-callout-error-accent: #fca5a5;
|
|
764
|
+
--willa-callout-error-bg: rgba(252, 165, 165, 0.08);
|
|
765
|
+
--willa-callout-error-border: rgba(252, 165, 165, 0.15);
|
|
766
|
+
--willa-callout-error-icon-bg: rgba(252, 165, 165, 0.1);
|
|
767
|
+
--willa-chat-bg: rgba(255, 255, 255, 0.035);
|
|
768
|
+
--willa-chat-time-text: rgba(226, 232, 240, 0.55);
|
|
769
|
+
--willa-chat-name-text: rgba(226, 232, 240, 0.62);
|
|
770
|
+
--willa-chat-avatar-bg: rgba(255, 255, 255, 0.08);
|
|
771
|
+
--willa-chat-avatar-border: rgba(255, 255, 255, 0.1);
|
|
772
|
+
--willa-chat-bubble-bg: rgba(255, 255, 255, 0.08);
|
|
773
|
+
--willa-chat-bubble-text: var(--willa-text-strong);
|
|
774
|
+
--willa-chat-bubble-user-bg: rgba(74, 222, 128, 0.28);
|
|
775
|
+
--willa-chat-bubble-user-text: #f0fdf4;
|
|
776
|
+
--willa-watermark-ink: rgba(255, 255, 255, 0.12);
|
|
777
|
+
}
|