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.

Darkplus Code — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
D

dsh-darkplus-code

Darkplus Code

VS Code Dark+ syntax colors and font-size control for DeepSeek Harness code blocks: recolors chat code blocks with the Dark+ palette, makes their font size follow the DSH content font size, and adds a dedicated settings row.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:yis94744/dsh-darkplus-code#6fd684f3d17e286c121ab8d52de5a1cec36d20ff
READMECompatibilityVersions

Compatibility and provenance

Darkplus Code is published as dsh-darkplus-code and currently resolves to version 1.0.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/11/2026

Versions

1.0.0stable
9/11/2026

Related plugins

Loading related plugins…

Latest
1.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/11/2026
View source ↗
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.

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)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Pet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

README

dsh-darkplus-code

VS Code Dark+ syntax colors and font-size control for DeepSeek Harness (dsh) code blocks.

DSH ships exactly two palettes (light / dark) and fixes code blocks at 11px, so chat code does not follow the content font size you set in Settings → General → Font size. This plugin changes only the code blocks — nothing else in the interface is touched.

中文说明

What it does

1. Dark+ syntax colors

Replaces the built-in code-block token palette with the VS Code Dark+ palette:

TokenDarkLightExample
keyword#c586c0#af00dbpublic class, if, return
constant#b5cea8#0986580f, 10000, true
string#ce9178#a31515"配置"
comment#6a9955#008000// comment
parameter#9cdcfe#001080identifiers, locals
punctuation#d4d4d4#1f1f1f( ) { } ;
link#4fc1ff#0563c1markdown links
type / function#4ec9b0#267f99MapNpc, LateUpdate

Code block background #1e1e1e (dark) / #ffffff (light), foreground #9cdcfe (dark) / #001080 (light).

2. Font size that follows your font-size setting

DSH sizes every other content font with calc(base + var(--dsh-content-font-delta)) — headings grow when you raise the font size, code blocks do not. This plugin puts code blocks onto the same mechanism:

Your DSH font sizeBody textCode block (default follow mode)
1212px10px
1414px12px
1717px15px

3. Its own settings row

Settings → General → Code block appearance, placed next to the built-in font-size row:

  • Follow font size (default) · Ratio · Fixed — plus 13 14 15 16 17 px presets
  • Type/function teal or function yellow — shiki assigns both entity.name.type and entity.name.function to one variable, so they cannot differ; this picks which one wins
  • Palette on/off
  • A live readout (body 17px · code 15px · inline 15px)

Settings persist to ~/.dsh-darkplus-code/config.json, so they survive restarts and port changes.

Install

dsh plugin --profile <your-profile> add dsh-darkplus-code

Use your real profile name (desktop for DSH Desktop, web for the web build). Then restart DSH — or reload the page after a profile patch reload — and open Settings → General to configure it.

To remove it:

dsh plugin --profile <your-profile> remove dsh-darkplus-code

Scope

This plugin writes only --shiki-* token variables, the two --dsw-font-markdown-code* font tokens, and code-block element rules under .md-code-block / pre.shiki. It does not touch any other --dsw-alias-* interface token, so background, borders, radii, glass effects and every other surface keep their current theme.

Why !important

DSH renders code through shiki's css-variables theme: each token span carries an inline style="color:var(--shiki-token-*)". Measured against a live DSH instance, the variable itself resolves correctly on <body> while the span still computed to the inherited color, so a variable-only override does not always take effect. An author rule with !important is the one declaration that outranks an inline non-important style, so this plugin writes the resolved color on the span as well as rewriting the variable.

Compatibility

  • DSH Desktop and the web profile.
  • Verified against DSH dsh-web-app with the shiki css-variables theme and .md-code-block code surfaces.
  • No host dependencies beyond the optional webServer service; without it the plugin still styles code blocks and simply cannot persist settings.

License

MIT