DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Colorful Output — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-colorful-output

Colorful Output

Colorize AI replies in the DSH Web chat with switchable palettes (Aurora/Nord/Sunset/Cyber) via a settings card.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add dsh-colorful-output@0.0.5
READMECompatibilityVersions
对话着色效果:AI 回复渐变标题 / 高亮加粗 / 渐变代码块,用户消息渐变文字设置卡片:4 套主题一键切换

Compatibility and provenance

Colorful Output is published as dsh-colorful-output and currently resolves to version 0.0.5. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/20/2026

Versions

0.0.5stable
8/24/2026
0.0.2stable
8/15/2026
0.0.1stable
8/15/2026

Related plugins

Loading related plugins…

Latest
0.0.5
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
28.1 kB
Files
6
Surface
web
License
MIT
Source
npm
GitHub
★ 1
Weekly downloads
36
Last push
8/24/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in ui-customization.

Better Sidebardsh-better-sidebarDSH web plugin: a VSCode-like right sidebar (explorer / editor / terminal / git / browser), isolated per conversation session. Exposes a service for other plugins to register sidebar tabs and file viewers.Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航 · A Codex-style sidebar, workspace session tree, global search, and turn navigation for DSH WebDafeiyudsh-dafeiyuA desktop-native BigFish companion driven by DeepSeek Harness session events.Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)

README

dsh-colorful-output

为 DeepSeek Harness 的 AI 回复着色:彩虹渐变标题、高亮重点、彩色引用与代码块,内置 4 套可切换配色主题,深浅主题自动适配,主题选择自动记忆。

功能

  • 🎨 AI 回复的标题、加粗、引用、代码块、列表、表格、分隔线全部上色
  • 🖌️ 4 套内置配色:极光 Aurora / 北极 Nord / 落日 Sunset / 赛博 Cyber
  • 🌗 每套主题含深/浅两套色值,自动跟随 DSH 明暗主题切换
  • ⚙️ 设置卡片切换(设置 → 插件 → 彩色输出),即点即生效,localStorage 记忆

安装

dsh plugin --profile web add dsh-colorful-output
# 重启 dsh web 后生效

使用

  1. 重启后打开 设置 → 插件 → 彩色输出
  2. 展开卡片,点选配色主题
  3. 立即生效,无需重启;选择自动保存

主题一览

主题风格标题渐变
极光 Aurora青 → 蓝 → 紫 → 粉,柔和高级#34d399 → #22d3ee → #818cf8 → #c084fc → #f472b6
北极 Nord低饱和冰川蓝青,安静耐看#8fbcbb → #88c0d0 → #81a1c1 → #b48ead
落日 Sunset珊瑚 → 蜜桃 → 杏黄,温暖治愈#ff7e5f → #feb47b → #ffd194 → #fec8d8
赛博 Cyber蓝紫粉霓虹,科技感#47a7f5 → #7aa2f7 → #bb9af7 → #ff79c6

截图

对话着色效果:AI 回复渐变标题 / 高亮加粗 / 渐变代码块,用户消息渐变文字

设置卡片:4 套主题一键切换

开发:如何新增主题

打开 lib/client.js,在 THEMES 对象中新增一项即可——设置卡片的按钮和 CSS 变量组会自动生成,无需改其他代码:

const THEMES = {
  // ...现有主题...
  mytheme: {
    dark:  { g1: "#...", g2: "#...", g3: "#...", g4: "#...", g5: "#...", accent: "#...", quote: "#...", code: "#...", b1: "#...", b2: "#...", b3: "#...", hr1: "#...", hr2: "#...", hr3: "#...", hr4: "#..." },
    light: { /* 浅色主题下的同结构色值 */ }
  }
};

字段说明:g1-g5 标题渐变五色、accent 加粗强调、quote 引用/列表/表头、code 行内代码、b1-b3 代码块边框、hr1-hr4 分隔线渐变。

License

MIT