nguyenduclong-ict/dsh-plugin-custom-css ↗★ 0
dsh-plugin-custom-css
Custom CSS injection for DeepSeek Harness — a Settings section with an on/off toggle and a CSS textarea injected live into the Web GUI
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:nguyenduclong-ict/dsh-plugin-custom-css说明文档
阅读完整 README ↗3. Usage
- Open Settings (sidebar foot) → the Custom CSS row in the left nav.
- Flip Enable custom CSS on.
- Paste or write CSS into the textarea. It is injected immediately.
- Close the modal — the styles stay applied and are restored on the next launch.
Example snippets
/* Recolor the brand accent */
:root {
--dsw-alias-brand-primary: #22d3ee;
}
/* Wider, calmer conversation column */
[data-conversation-scroll] {
font-size: 15px;
line-height: 1.7;
}
Design tokens available to a snippet are the Harness CSS custom properties
(--dsw-alias-*, --dsw-font-*), so a theme can stay consistent with whatever
light/dark variant DSH is using.