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.

Nico Theme — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
N

dsh-nico-theme

Nico Theme

Nico glass theme for DeepSeek Harness Web UI — glass material rendered by nico-glass-kit. Adapted for DSH 0.1.2-rc.1. Not affiliated with DeepSeek.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:more-nico/dsh-nico-theme#e3f1dda3bf89bbc0654ef82b50fe84bc20a54d4d
READMECompatibilityVersions
Nico Theme settings page: material knobs and the wallpaper blur slider dragged to 3px

Compatibility and provenance

Nico Theme is published as dsh-nico-theme and currently resolves to version 0.3.1. 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/16/2026

Versions

0.3.1stable
9/16/2026

Related plugins

Loading related plugins…

Latest
0.3.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
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.

Deepseek Idesigndeepseek-idesigniPolloWork Design Studio and its curated design templates as a native DeepSeek Harness conversation view.Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio and its curated slide templates as a native DeepSeek Harness conversation view.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 WebDream Skindsh-dream-skinDeepSeek Harness 换肤插件(Dream Skin for DSH):8 套 iOS / Linear 式清透冷调的高质感主题 + 弥散光壁纸 + 每皮肤智能背景 + 强调色 + 主题包分享,把换肤做成材质与配色克制的高级感工艺,而非贴图。Works in native DSH Web and third-party desktop clients (DSH Desktop): 8 original premium themes, glass materials, wallpaper 2.0

README

dsh-nico-theme

English | 中文 · Changelog

A switchable liquid-glass theme for the DeepSeek Harness web UI. Header, sidebar, composer, docks, and conversation pads become frosted panes over a living fluid backdrop (image or video wallpaper is optional). Turning the plugin off restores the stock UI — no DSH source changes.

Panels leaning together with the pointer under hover elasticity

Hover elasticity, recorded at maximum strength (0.5); the default is 0.2.


Contents

  • What it is
  • Highlights
  • Gallery
  • Origins
  • Requirements
  • Install
  • Develop
  • License

What it is

A DSH client plugin. The panel glass is rendered by nico-glass-kit: every pane portals a GlassSurface, whose backdrop runs an SVG displacement filter, so the glass bends the picture along its rounded corners instead of only blurring it. The fluid backdrop, wallpaper layers and reading pads are this repo's own CSS/canvas work. Not affiliated with DeepSeek.

Highlights

  • Mica floating glass panels (32px corners, nico-glass-kit material), or compat mode (stock layout, frosted material)
  • 14 panes covered: header, sidebar, composer, docks, dialogs, background-task popover, new-session capsule
  • Fluid backdrop with hue / depth knobs; optional image or video wallpaper with its own blur slider
  • Material knobs on the kit scale: blur, brightness, refraction, depth, curvature, dispersion, rim highlight
  • Hover elasticity: the glass and the panel content lean together under the pointer; hosts that clip their own overflow keep the glass rigid, and prefers-reduced-motion turns it off
  • Conversation reading pads (user bubbles and assistant prose only)
  • No adaptive text color

Gallery

Start screen — fluid backdrop under the glass composer.

Home screen in dark mode, fluid backdrop and glass composer

Conversation and rail — glass header, todo dock, and reading pads over the fluid backdrop.

Conversation in dark mode, glass header, todo dock, and reading pads Collapsed sidebar rail over the dark fluid backdrop

Settings — the Nico Theme page carries every material knob; the clip drags the wallpaper blur to 3px.

Nico Theme settings page: material knobs and the wallpaper blur slider dragged to 3px

Origins

This repository is a fork of WYH66666666/DSH-Transparent-UI-Plugin (MIT, © 2026 John Wu), adapted for DSH 0.1.2-rc.1.

The panel glass — refraction, bevel, tint, rim light, and elasticity — is rendered by nico-glass-kit (^0.3.0, MIT). The fluid backdrop, wallpaper layers, and reading pads are this repository's own CSS/canvas work.

Requirements

  • @deepseek-ai/dsh@0.1.2-rc.1 (or newer in the 0.1.2 line)
  • Node.js 22+
  • The refraction pass wants a Chromium browser; Firefox and Safari fall back to the kit's plain CSS frost on their own

Install

DSH plugins live on a profile, not in the global dsh install. dsh plugin add runs pnpm inside that profile and, because this package declares dsh.bundle, appends it to dsh.profile.bundles automatically. Then restart the profile.

Daily Web UI

dsh plugin --profile web add dsh-nico-theme@latest

Then restart dsh web. Enable Nico glass theme in Settings → Plugins. Every knob lives on the dedicated Nico Theme page in the settings left nav.

Throwaway profile (does not touch web)

dsh plugin --profile nico-theme-test add dsh-nico-theme@latest
dsh --profile nico-theme-test --host 127.0.0.1 --port 18765 --no-open

Update later with the same command (@latest) or dsh plugin --profile web update. Remove with dsh plugin --profile web remove dsh-nico-theme.

From a local checkout (development)

pnpm install && pnpm bundle
dsh plugin --profile nico-theme-test add .

Develop

pnpm install
pnpm bundle          # tsdown + lib/types/*.d.ts
pnpm typecheck       # tsc --noEmit against the installed DSH client packages
pnpm visual          # Playwright checks against the test profile
pnpm readme-shots    # refresh the dark-fluid images in assets/
pnpm readme-gifs     # record assets/*.gif (needs NICO_THEME_URL; settings clip also needs NICO_WALLPAPER)

The material itself lives in nico-glass-kit; this repo mounts it onto DSH's panels and wires the knobs to its settings page.

Maintainers: npm login, then git tag v0.1.0 && git push origin v0.1.0. GitHub Actions publishes the tarball (needs repo secret NPM_TOKEN). Or pnpm publish locally after pnpm bundle.

License

MIT

  • Fork of DSH-Transparent-UI-Plugin (MIT)
  • Glass material from nico-glass-kit (MIT)

Screenshots and clips in assets/ were recorded on a local test profile over Vincent van Gogh's The Starry Night (1889, public domain).