npx skills add https://github.com/clownnvd/claude-code-skills --skill claude-ui来源:PageFlows(2025年7月 — 19个流程,100+张截图)。项目:c:\nextjs_project\pulse-analytics → 在 GitHub 上重命名为 claude-ui。
| 令牌 | 值 | 用途 |
|---|---|---|
| 背景 | #F9F6F0 | 页面背景 — 暖奶油色,非白色 |
| 表面 | #FFFFFF | 卡片、模态框、聊天气泡 |
| 品牌强调色 | #C96A4A | 徽标、发送按钮、新聊天圆点 |
| 主要文本 | #0F0F0F |
Source: PageFlows (July 2025 — 19 flows, 100+ screenshots). Project: c:\nextjs_project\pulse-analytics → renamed to claude-ui on GitHub.
| Token | Value | Usage |
|---|---|---|
| Background | #F9F6F0 | Page bg — warm cream, NOT white |
| Surface | #FFFFFF | Cards, modals, chat bubbles |
| Brand accent | #C96A4A |
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| 正文文本 |
| 弱化文本 | #6B6B6B | 次要文本、占位符 |
| 边框 | #E0E0E0 | 所有边框、分隔线 |
| 活动导航项 | bg-black/8 | 侧边栏活动项(有效的 Tailwind v4) |
| 行动号召按钮 | bg-black text-white | 主要按钮 |
| 标题字体 | Georgia,'Times New Roman',serif | 仅用于 h1 标题 |
| 正文字体 | system-ui, sans-serif | 其他所有内容 |
| 错误 | 正确 |
|---|---|
用户消息右对齐(flex justify-end) | 左对齐 — flex items-start gap-3 |
| 侧边栏有 Anthropic 徽标 / 设置齿轮 | 无徽标,无齿轮 — 仅限 [≡][+][💬][📁][⊞][ST] |
| "新聊天"是全宽按钮 | 它是一个导航项行(珊瑚色圆点 + 文本) |
| 项目徽章是蓝色 | 蓝绿色 — bg-[#E8F4F8] text-[#3B82A0] |
| 响应工具栏悬停时显示 | 始终可见(非仅悬停显示) |
| 响应工具栏:所有按钮在左侧 | justify-between — AnthropicMark 在左,复制/👍/👎/重试在右 |
| "Claude 可能会犯错"在聊天输入框下方 | 每条消息单独显示,右对齐在响应工具栏下方(非全局) |
| 点击聊天标题 → 直接打开重命名模态框 | 先打开下拉菜单:收藏 / 重命名 / 删除 |
| StyleIcon 是闪电/闪电图标 | 3个滑块 SVG:d="M8 6h13M8 12h9m-9 6h5" |
使用 window.location.href 进行导航 | 使用 <Link href> 或 router.push() |
border-t border-gray-50(不可见) | 使用 border-[#E0E0E0] |
| AnthropicMark 在文件中重复 | 提取到 src/components/icons.tsx |
| AnthropicMark 使用双 A 字标路径 | 星形路径:M12 2L9.5 8.5H3L8.5 12.5L6 19L12 15L18 19L15.5 12.5L21 8.5H14.5L12 2Z |
bg-black/8 IDE 警告 | 在 Tailwind v4 中有效 — 编译正确 |
pnpm dev 在 VSCode 中失败(NODE_ENV=production) | 在 dev 脚本中添加 cross-env NODE_ENV=development |
<div className="flex h-screen bg-[#F9F6F0]">
<Sidebar /> {/* w-12 collapsed / w-64 expanded */}
<main className="flex-1 flex flex-col overflow-hidden">
{/* page content */}
</main>
</div>
src/app/
page.tsx # 登录(分割布局)
layout.tsx # 根布局
(chat)/
layout.tsx # 应用外壳(侧边栏 + 主区域)
new/page.tsx # 主页 / 聊天
recents/page.tsx # 聊天历史
settings/page.tsx # 设置选项卡
artifacts/page.tsx # 工件列表 + 分割视图
upgrade/page.tsx # 账单 / 方案卡片
(onboarding)/ # 5屏引导流程
src/components/
sidebar.tsx # 可折叠侧边栏 + 账户菜单
chat-input.tsx # 文本区域 + 工具栏 + 下拉菜单
references/design-tokens.md — 完整令牌表,Tailwind v4 @theme,尺寸规范references/flows.md — 所有 19 个流程表,导航规则,路由图references/components/sidebar.md — 折叠/展开状态,账户菜单弹出框references/components/chat-input.md — 工具栏按钮,StyleIcon SVG,下拉菜单,属性references/components/messages.md — 用户消息(左),助手消息,响应工具栏,AnthropicMarkreferences/components/modals.md — 重命名,分享,反馈,删除,删除账户references/pages/home.md — 空状态英雄区,对话视图,顶部栏,升级横幅references/pages/recents.md — 聊天卡片(无预览文本),选择模式工具栏references/pages/settings.md — 6个选项卡,个人资料字段,外观选择器,切换开关references/pages/login.md — 分割布局,5屏引导流程references/pages/billing.md — 方案卡片(免费/专业版/高级版),选项卡切换,账单切换references/pages/artifacts.md — 列表页,分类标签,卡片网格,分割视图aria-labelaria-hidden="true"role="switch" + aria-checked<label htmlFor> 或 aria-labeloutline: 2px solid #C96A4A@import "tailwindcss" 替换旧的 @tailwind base/components/utilities@theme inline 定义自定义工具类bg-black/8 = 有效的任意不透明度 — IDE 会警告但编译正确bg-cream, bg-brand, text-text-muted, border-border每周安装数
1
仓库
首次出现
今天
安全审计
安装于
zencoder1
amp1
cline1
openclaw1
opencode1
cursor1
| Logo, send btn, New Chat dot |
| Text primary | #0F0F0F | Body text |
| Text muted | #6B6B6B | Secondary text, placeholders |
| Border | #E0E0E0 | All borders, dividers |
| Active nav | bg-black/8 | Sidebar active item (valid Tailwind v4) |
| CTA | bg-black text-white | Primary buttons |
| Heading font | Georgia,'Times New Roman',serif | h1 headings only |
| Body font | system-ui, sans-serif | Everything else |
| Bug | Correct |
|---|---|
User messages right-aligned (flex justify-end) | LEFT-aligned — flex items-start gap-3 |
| Sidebar has Anthropic logo / settings gear | NO logo, NO gear — only [≡][+][💬][📁][⊞][ST] |
| "New chat" is a full-width button | It's a nav item row (coral dot + text) |
| Projects badge is blue | Teal — bg-[#E8F4F8] text-[#3B82A0] |
| Response toolbar shows on hover | ALWAYS visible (no hover-only) |
| Response toolbar: all buttons on left | justify-between — AnthropicMark LEFT, Copy/👍/👎/Retry RIGHT |
| "Claude can make mistakes" below chat input | Per-message, right-aligned BELOW response toolbar (not global) |
| Clicking chat title → Rename modal directly | Opens DROPDOWN first: Star / Rename / Delete |
| StyleIcon is a bolt/lightning bolt | 3 sliders SVG: d="M8 6h13M8 12h9m-9 6h5" |
window.location.href for navigation | Use <Link href> or router.push() |
border-t border-gray-50 (invisible) | Use border-[#E0E0E0] |
| AnthropicMark duplicated in files | Extract to src/components/icons.tsx |
| AnthropicMark uses double-A wordmark path | Star path: M12 2L9.5 8.5H3L8.5 12.5L6 19L12 15L18 19L15.5 12.5L21 8.5H14.5L12 2Z |
bg-black/8 IDE warning | Valid in Tailwind v4 — compiles correctly |
pnpm dev fails in VSCode (NODE_ENV=production) | Add cross-env NODE_ENV=development to dev script |
<div className="flex h-screen bg-[#F9F6F0]">
<Sidebar /> {/* w-12 collapsed / w-64 expanded */}
<main className="flex-1 flex flex-col overflow-hidden">
{/* page content */}
</main>
</div>
src/app/
page.tsx # Login (split layout)
layout.tsx # Root layout
(chat)/
layout.tsx # App shell (sidebar + main)
new/page.tsx # Home / chat
recents/page.tsx # Chat history
settings/page.tsx # Settings tabs
artifacts/page.tsx # Artifacts list + split view
upgrade/page.tsx # Billing / plan cards
(onboarding)/ # 5-screen onboarding flow
src/components/
sidebar.tsx # Collapsible sidebar + account menu
chat-input.tsx # Textarea + toolbar + dropdowns
references/design-tokens.md — Full token table, Tailwind v4 @theme, sizing conventionsreferences/flows.md — All 19 flows table, navigation rules, route mapreferences/components/sidebar.md — Collapsed/expanded states, account menu popupreferences/components/chat-input.md — Toolbar buttons, StyleIcon SVG, dropdowns, propsreferences/components/messages.md — UserMessage (LEFT), AssistantMessage, ResponseToolbar, AnthropicMarkreferences/components/modals.md — Rename, Share, Feedback, Delete, DeleteAccountreferences/pages/home.md — Empty state hero, conversation view, topbar, upgrade bannerreferences/pages/recents.md — Chat card (no preview text), select mode toolbarreferences/pages/settings.md — 6 tabs, Profile fields, Appearance picker, ToggleSwitchreferences/pages/login.md — Split layout, 5-screen onboarding flowreferences/pages/billing.md — Plan cards (Free/Pro/Max), tab toggle, billing togglereferences/pages/artifacts.md — List page, category pills, card grid, split viewaria-labelaria-hidden="true"role="switch" + aria-checked<label htmlFor> or aria-labeloutline: 2px solid #C96A4A in globals.css@import "tailwindcss" replaces old @tailwind base/components/utilities@theme inline in globals.css defines custom utility classesbg-black/8 = valid arbitrary opacity — IDE warns but compiles correctlybg-cream, bg-brand, text-text-muted, border-borderWeekly Installs
1
Repository
First Seen
Today
Security Audits
Installed on
zencoder1
amp1
cline1
openclaw1
opencode1
cursor1
React 组合模式指南:Vercel 组件架构最佳实践,提升代码可维护性
111,800 周安装
Python PDF处理教程:合并拆分、提取文本表格、创建PDF文件
59,800 周安装
browser-use CLI 浏览器自动化工具:快速持久会话,支持多步骤工作流
60,300 周安装
新闻内容提取工具 - 支持12个主流平台,自动输出JSON和Markdown格式
205 周安装
AI Elements:基于shadcn/ui的AI原生应用组件库,快速构建对话界面
62,200 周安装
专业SEO审计工具:全面网站诊断、技术SEO优化与页面分析指南
63,800 周安装
Azure GitHub Copilot SDK 部署指南:从零构建、集成到现有项目与模型配置
75,700 周安装