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.

One Dark Pro Dsh Plugin — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
O

one-dark-pro-dsh-plugin

One Dark Pro Dsh Plugin

One Dark Pro theme for DeepSeek Harness Web UI

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

npx -y @deepseek-ai/dsh plugin --profile web add github:yudaxia1/one-dark-pro-dsh-plugin#7e218a3a15f46b0079d7b92a7169a03329fca4fa
READMECompatibilityVersions
Light themeOne Dark Pro themeOne Dark Pro toggle offOne Dark Pro toggle on

Compatibility and provenance

One Dark Pro Dsh Plugin is published as one-dark-pro-dsh-plugin and currently resolves to version 0.1.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
8/30/2026

Versions

0.1.0stable
8/30/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 3
Weekly downloads
0
Last push
9/16/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 pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient 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.

README

one-dark-pro-dsh-plugin

One Dark Pro theme for DeepSeek Harness Web UI.

Install this plugin to add a "One Dark Pro" toggle in Settings → General. When enabled, the entire DSH Web interface switches to the classic VSCode One Dark Pro dark palette.

中文 README

Features

  • Registers a third-party one-dark-pro theme id via the official ctx.theme service
  • Toggle in Settings → General
  • Switches the base preference to dark and stacks a One Dark Pro token override layer
  • Persists the choice in browser localStorage
  • Remembers and restores your previous light/dark/system preference when disabled
  • Cross-tab sync

Screenshots

Before (light)After (One Dark Pro)
Light themeOne Dark Pro theme

The toggle row in Settings → General:

One Dark Pro toggle off One Dark Pro toggle on

Installation

Method A: Install from tarball (recommended)

Build the plugin (see Development), then pack and install it into the web profile:

cd one-dark-pro-dsh-plugin
pnpm pack
dsh plugin --profile web add ./one-dark-pro-dsh-plugin-0.1.0.tgz

Verify the layer is present without booting:

dsh --profile web --dump-config

Then restart dsh web and open the Web UI.

Method B: Install from source inside the DSH monorepo

For development, place this directory inside the DSH checkout so the workspace build can compile it:

# On Windows, use a junction so edits stay in one place
New-Item -ItemType Junction -Path deepseek-harness\packages\client\one-dark-pro-dsh-plugin -Target one-dark-pro-dsh-plugin

Add the package to deepseek-harness/tsconfig.client.json references:

{ "path": "./packages/client/one-dark-pro-dsh-plugin" }

Build the client libraries:

cd deepseek-harness
pnpm run build:lib:client

Then pack from the workspace copy and install as in Method A.

Method C: Install from GitHub

dsh plugin --profile web add github:yudaxia1/one-dark-pro-dsh-plugin

Git installs run the prepare script to build the plugin. On pnpm ≥ 10 you must first authorize the build in the profile's pnpm-workspace.yaml.

Uninstall

dsh plugin --profile web remove one-dark-pro-dsh-plugin

Development

This plugin is written in TypeScript and uses the DSH shared clientBundle tsdown preset. It must be built from inside the deepseek-harness monorepo because the preset and TypeScript base config live there.

# After creating the junction in packages/client/one-dark-pro-dsh-plugin
cd deepseek-harness
pnpm run build:lib:client

The build emits:

  • lib/index.js — host half
  • lib/invariant.js — shared invariants
  • lib/client.js — browser bundle
  • lib/types/ — TypeScript declarations

Color mapping

One Dark Pro colors are mapped to DSH semantic tokens. The full mapping lives in src/client/color-themes.ts; key tokens include:

DSH tokenOne Dark Pro
--dsw-alias-bg-base#282c34
--dsw-alias-bg-layer-1#21252b
--dsw-alias-bg-layer-2#2c313c
--dsw-alias-bg-layer-3#3a404d
--dsw-alias-label-primary#abb2bf
--dsw-alias-label-secondary#828997
--dsw-alias-label-tertiary#5c6370
--dsw-alias-brand-primary#528bff
--dsw-alias-border-l1#181a1f
--dsw-alias-border-l2#3e4452
--dsw-alias-button-primary-fill#528bff
--dsw-alias-interactive-bg-hover#ffffff0a
--dsw-alias-state-error-primary#e06c75
--dsw-alias-state-success-primary#98c379
--dsw-alias-state-warn-primary#d19a66
--dsw-specific-sidebar-fill#21252b
--dsw-specific-input-major#21252b
--dsw-specific-bubble#2c313c

License

MIT