dsh-custom-skin
DSH Web GUI 插件:支持自定义 UI 与代码字体,提供 Nord、Twilight、GitHub 等多款主题皮肤切换。
AI 分析
核心用途是美化 DSH Web 界面,允许用户自定义字体并一键切换经典配色主题。适合对界面视觉、排版及代码字体有美化需求的用户。
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:v587d/dsh-custom-skin说明文档
阅读完整 README ↗使用
- 打开 Web UI → 设置 → Custom Skin(若有该分节)
- Color theme:选
Default (DSH theme)或 Border / Nord / Twilight / GitHub / Atom One(默认 GitHub) - 填写本机已安装的字体名,例如:
- UI:
"OPPO Sans 4.0", "Microsoft YaHei", sans-serif - Code:
"Geist Mono", "Fira Code", Consolas, monospace
- UI:
没有设置页时,也可在控制台执行:
localStorage.setItem('dsh-custom-skin.v1', JSON.stringify({
uiFont: '"OPPO Sans 4.0", "Microsoft YaHei", sans-serif',
codeFont: '"Geist Mono", "Fira Code", Consolas, monospace',
theme: 'github' // 'default' | 'border' | 'nord' | 'twilight' | 'github' | 'atom-one'
}))
location.reload()