Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

tailwind-semantic-themeTailwind CSS semantic 主题

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

494

周安装

21

GitHub Stars

公开资料未说明

下载量

173
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tailwind-semantic-theme(Tailwind CSS semantic 主题)
来源仓库:https://github.com/sjunepark/custom-skills
仓库路径:skills/tailwind-semantic-theme
安装命令:
npx skills add https://github.com/sjunepark/custom-skills --skill tailwind-semantic-theme
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sjunepark/custom-skills --skill tailwind-semantic-theme

简介

专注于 Tailwind CSS 语义化主题的设计与实现支持。

  • 适用于构建可维护、语义清晰的 UI 主题系统。
  • 通过 GitHub 安装,兼容 Claude、Cursor 等主流开发环境。
  • 应集成到现有设计规范中,避免独立运行导致样式不一致。
  • tailwind-semantic-theme 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Tailwind Semantic Theme

Use shadcn's theming contract without adopting shadcn as a dependency.

Keep the token names and CSS structure. Adapt the file layout to the project in front of you.

Scope

  • Use this skill only when explicitly invoked by name or when the user explicitly asks for this methodology.
  • Target Tailwind v4 projects.
  • Prefer methodology first. If the user asks for implementation, turn the methodology into concrete edits in the existing project.
  • Do not add shadcn just to get this pattern.

Goals

  • Define theme values once as semantic CSS variables.
  • Keep light and dark mode on the same token names via :root and .dark.
  • Expose those tokens to Tailwind through @theme inline.
  • Preserve shadcn-compatible token names so future component adoption stays easy.
  • Prefer OKLCH values.

Workflow

  1. Inspect the current styling boundary.
  • Find the global stylesheet, Tailwind entrypoint, and dark-mode toggle.
  • Check whether the project already uses CSS variables, @theme, or a different dark-mode selector.
  • Reuse the existing global CSS file when possible. Do not create a competing theme layer.
  1. Decide whether the user wants guidance or edits.
  • For methodology-only requests, explain the structure, provide a scaffold, and give migration guidance.
  • For implementation requests, update the existing global CSS and any dark-mode wiring needed for a .dark class contract.
  1. Establish the token contract.
  • Use the full token set:

- background, foreground - card, card-foreground - popover, popover-foreground - primary, primary-foreground - secondary, secondary-foreground - muted, muted-foreground - accent, accent-foreground - destructive, destructive-foreground - border, input, ring - chart-1 through chart-5 - sidebar, sidebar-foreground - sidebar-primary, sidebar-primary-foreground - sidebar-accent, sidebar-accent-foreground - sidebar-border, sidebar-ring - radius

  • Keep name / name-foreground pairs for surface/text compatibility.
  • Keep raw color values in CSS variables, not in component class names.
  1. Structure the CSS in this order.
  • @import "tailwindcss";
  • @custom-variant dark (&:is(.dark *));
  • @theme inline {...} mappings from semantic vars to Tailwind tokens
  • :root {...} light values
  • .dark {...} dark values
  • @layer base {...} only for a small reset such as body/background/text and shared border/ring defaults
  1. Keep dark mode simple.
  • Follow the shadcn default: class-based dark mode via .dark.
  • Do not duplicate dark styling in component classes when token overrides are enough.
  • Do not invent automatic dark-value generation unless the user asks for it. Author light and dark values explicitly.
  1. Keep components semantic.
  • Prefer bg-background text-foreground, bg-card text-card-foreground, bg-primary text-primary-foreground, and similar semantic utilities.
  • If a raw palette class like bg-zinc-900 or text-slate-500 repeats across the app, promote that usage into a semantic token.
  • Avoid naming tokens after palette families such as slate, blue, or gray when the real role is semantic.
  1. Migrate incrementally.
  • Start with the global token scaffold.
  • Map the most reused surfaces and actions first.
  • Replace repeated raw color utilities with semantic ones in touched files.
  • Do not churn one-off decorative colors into the token system unless they are becoming reusable design primitives.

Output

For methodology-only requests, provide:

  • The target file or files to change.
  • The recommended Tailwind v4 scaffold.
  • The token contract and why it exists.
  • The migration order for existing classes.
  • Any dark-mode wiring needed for .dark.

For implementation requests, also:

  • Edit the existing stylesheet instead of introducing parallel theme files.
  • Preserve project-specific imports and layout.
  • Summarize any tokens added beyond the standard contract.

Reference Scaffold

When you need a concrete starting point, read references/tailwind-v4-theme-scaffold.css. Adapt it to the project's existing CSS file instead of copying it blindly.

Guardrails

  • Do not add shadcn as a dependency unless the user explicitly asks for shadcn.
  • Do not use Tailwind config theme colors when @theme inline in global CSS is the simpler fit.
  • Do not create a second theme system beside an existing one unless the user explicitly wants a migration.
  • Do not hardcode light and dark palette classes into components when semantic tokens can express the same intent.
  • Do not rename the standard tokens just to match a local preference if future shadcn-style compatibility matters.

Example Triggers

  • "$tailwind-semantic-theme help me set up shadcn-style theme variables in this Tailwind v4 app, but do not install shadcn."
  • "$tailwind-semantic-theme refactor my raw Tailwind colors into semantic tokens with .dark mode."
  • "$tailwind-semantic-theme show me the right globals.css structure for OKLCH tokens, @theme inline, and shadcn-compatible names."

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.94%
按下载量换算60

Claude

32.23%
按下载量换算56

Cursor

18.96%
按下载量换算33

Gemini CLI

9.29%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills