v587d/dsh-custom-skin1

dsh-custom-skin

DSH Web GUI plugin: custom UI/code fonts plus theme selection (palettes ported from dsh-refined: Border / Nord / Twilight / GitHub / Atom One), live settings page, localStorage persistence.

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