v587d/dsh-custom-skin1

dsh-custom-skin

DSH Web GUI 插件:支持自定义 UI 与代码字体,提供 Nord、Twilight、GitHub 等多款主题皮肤切换。

AI 分析

核心用途是美化 DSH Web 界面,允许用户自定义字体并一键切换经典配色主题。适合对界面视觉、排版及代码字体有美化需求的用户。

包名
dsh-custom-skin
版本
0.1.2
许可证
MIT
最近更新
2026年8月29日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:v587d/dsh-custom-skin

使用

  1. 打开 Web UI → 设置 → Custom Skin(若有该分节)
  2. Color theme:选 Default (DSH theme) 或 Border / Nord / Twilight / GitHub / Atom One(默认 GitHub)
  3. 填写本机已安装的字体名,例如:
    • UI:"OPPO Sans 4.0", "Microsoft YaHei", sans-serif
    • Code:"Geist Mono", "Fira Code", Consolas, monospace

没有设置页时,也可在控制台执行:

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()