用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vamseeachanta/workspace-hub --skill theme-factory-htmlcss命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | theme-factory-htmlcss |
| description | Sub-skill of theme-factory: HTML/CSS (+2). |
| version | 2.0.0 |
| category | business |
| type | reference |
| scripts_exempt | true |
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=JetBrains+Mono&display=swap" rel="stylesheet">
<style>
:root {
--primary: #0d0221;
--secondary: #1a0533;
--accent: #7c3aed;
--highlight: #a78bfa;
--text: #f5f3ff;
*See sub-skills for full details.*
## PowerPoint (python-pptx)
```python
from pptx.dml.color import RGBColor
# Tech Innovation theme
THEME = {
'primary': RGBColor(0x0d, 0x02, 0x21),
'secondary': RGBColor(0x1a, 0x05, 0x33),
'accent': RGBColor(0x7c, 0x3a, 0xed),
'highlight': RGBColor(0xa7, 0x8b, 0xfa),
'text': RGBColor(0xf5, 0xf3, 0xff),
*See sub-skills for full details.*
## Excel (openpyxl)
```python
from openpyxl.styles import PatternFill, Font
# Tech Innovation theme
header_fill = PatternFill(start_color="7c3aed", fill_type="solid")
header_font = Font(name="Space Grotesk", color="f5f3ff", bold=True)
# Apply to cells
for cell in ws[1]:
cell.fill = header_fill
cell.font = header_font