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.

Color Schemes — DSH Plugin for DeepSeek Harness
← Plugins
C

color-schemes

Color Schemes

A DSH web GUI color-scheme plugin: a data-driven registry of themes (Catppuccin, Everforest, Nord) selectable from a settings row, with theme-adapted tooltips and hover cards. Add new schemes by dropping one file into ./schemes and rebuilding.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:hatanokokosa/dsh-colorschemes#e7edea386d322d2c025b22637422f807b5daa35d
READMECompatibilityVersions

Compatibility and provenance

Color Schemes is published as color-schemes 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
8/22/2026

Versions

1.0.0stable
8/22/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
BSD-2-Clause
Source
github
GitHub
★ 2
Weekly downloads
0
Last push
8/22/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in ui-customization.

Remote 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.Client Ui Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundlePet@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

color-schemes

A color-scheme plugin for the DSH web GUI. It registers a set of themes, selectable from Settings > General > Color Scheme, and keeps hover popups (tooltips, hover cards) consistent with the active theme.

Features:

  • Seven built-in schemes: Catppuccin (Latte, Frappe, Macchiato, Mocha), Everforest (Dark, Light), Nord.
  • The selected scheme persists across refresh and restart (localStorage, key dsh.color-schemes.state).
  • Schemes are typed TypeScript data files in schemes/; a script rebuilds the client bundle. No UI code is touched when adding a scheme.

Install

The package is a bundle: package.json declares dsh.bundle.patch (./cordis.patch.yml), so installing it in any profile activates the plugin row automatically.

The package is not published to an npm registry yet. Two current sources:

Git:

dsh plugin --profile web add github:hatanokokosa/dsh-colorschemes

Tarball (offline or self-hosted; generated with pnpm pack in the package directory):

dsh plugin --profile web add ./color-schemes-1.0.0.tgz

Then restart dsh web; the Color Scheme row appears in Settings > General. The built lib/ is committed in the repository, so neither form needs a build step or build permission (a git install runs no prepare script, so no pnpm allowBuilds is required).

Remove with dsh plugin --profile web remove color-schemes.

Local development

Inside a profile (as in this repository) the package is linked as a file dependency instead:

  1. Put this package at web/ext/color-schemes.
  2. Add to web/package.json:
    "color-schemes": "file:./ext/color-schemes"
    
  3. Add to web/cordis.patch.yml:
    - insert:
        - id: color-schemes
          name: 'color-schemes'
    
  4. Link the package into web/node_modules (or run the profile's package manager), then restart dsh web.

Add a scheme

See schemes/README.md. The short version: create a new scheme file in schemes/, register it in schemes/index.ts, run npm run build.

lib/client.js is generated and committed; running it requires no build tooling. Building it requires Node >= 23.6 (native TypeScript type stripping) plus the dev dependencies (npm install inside this package): npm run build type-checks the sources with tsc and bundles src/client.ts + schemes/*.ts with esbuild into the loader bundle.

Uninstall

For a bundle install: dsh plugin --profile web remove color-schemes.

For a file-dependency install: remove the patch row from the profile's cordis.patch.yml, the color-schemes entry from web/package.json, and the web/node_modules/color-schemes link. The localStorage entry is inert once the plugin is gone.

License

BSD-2-Clause