本文档涵盖了 Langflow 全面的样式架构,包括主题系统、颜色管理、Tailwind CSS 配置和样式工具。该系统通过支持浅色和深色主题、不同组件类型的动态配色方案以及广泛的自定义功能,为整个应用程序提供了一致的视觉设计语言。
有关 UI 组件及其实现的信息,请参阅 用户界面与样式。有关聊天界面样式细节,请参阅 聊天与消息界面。
Langflow 实现了一个基于 CSS 自定义属性的主题系统,通过一套全面的设计标记支持浅色和深色模式。
主题系统围绕两个主要上下文定义的 CSS 自定义属性展开
来源:src/frontend/src/style/index.css8-463
通过 CSS 类切换实现深色主题
来源:src/frontend/src/stores/darkStore.ts src/frontend/src/style/index.css205-463
Langflow 为不同的节点类型和数据类型使用复杂的颜色映射系统
来源:src/frontend/src/utils/styleUtils.ts84-185
该系统包含各种 UI 元素的预定义渐变
来源:src/frontend/src/utils/styleUtils.ts14-82
Langflow 扩展了 Tailwind CSS,为设计系统提供了自定义配置
来源:src/frontend/tailwind.config.mjs10-400
配置包括自定义动画以增强用户体验
来源:src/frontend/tailwind.config.mjs45-111
styleUtils.ts 文件提供了全面的样式管理工具函数
来源:src/frontend/src/utils/styleUtils.ts1-529
系统包含针对不同文件类型和 UI 组件的专用样式
来源:src/frontend/src/utils/styleUtils.ts187-287
样式系统将 CSS 类组织成逻辑组
来源:src/frontend/src/style/applies.css1-1900 src/frontend/src/style/classes.css1-444 src/frontend/src/App.css1-226
节点根据其状态和类型获得动态样式
来源:src/frontend/src/CustomNodes/GenericNode/components/NodeStatus/index.tsx190-232 src/frontend/src/style/applies.css338-376
组件通过 CSS 自定义属性和 Tailwind 类与主题系统集成
来源:src/frontend/src/CustomNodes/GenericNode/components/nodeIcon/index.tsx28-31 src/frontend/src/CustomNodes/hooks/use-icons-status.tsx4-39
系统包含用于键盘快捷键显示的专用样式
来源:src/frontend/src/pages/FlowPage/components/nodeToolbarComponent/shortcutDisplay/index.tsx1-40 src/frontend/src/pages/FlowPage/components/nodeToolbarComponent/toolbarSelectItem/index.tsx1-28 src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/CellRenderWrapper/index.tsx1-8
系统为组件构建状态和验证状态提供视觉反馈
来源:src/frontend/src/CustomNodes/hooks/use-icons-status.tsx1-41 src/frontend/src/CustomNodes/GenericNode/components/NodeStatus/components/build-status-display.tsx1-74 src/frontend/src/components/core/chatComponents/DurationDisplay.tsx1-69