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 Analysis
核心用途是美化 DSH Web 界面,允许用户自定义字体并一键切换经典配色主题。适合对界面视觉、排版及代码字体有美化需求的用户。
Install
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:v587d/dsh-custom-skinREADME
Read the full 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()