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.

Ui Liteglass — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-ui-liteglass

Ui Liteglass

A lightweight appearance plugin for DeepSeek Harness: custom wallpaper, glass-like panel transparency, and accent color. Ships a host half plus a web client half in one npm package.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-ui-liteglass@0.1.0
READMECompatibilityVersions
LiteGlass — light modeLiteGlass — dark modeLiteGlass — Appearance settings

Compatibility and provenance

Ui Liteglass is published as dsh-ui-liteglass 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
npm
Registry updated
8/27/2026

Versions

0.1.0stable
8/27/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
305.4 kB
Files
14
Surface
web
License
MIT
Source
npm
GitHub
★ 1
Weekly downloads
0
Last push
8/27/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-ui-liteglass

LiteGlass — English | 简体中文

A lightweight appearance skin for DeepSeek Harness.

Wallpaper. Glass. Accent. That's it.

Screenshots

Real captures of the running plugin — light / dark main interface and the Appearance settings — under docs/screenshots/, wired into screenshots.json for storefront display.

LiteGlass — light mode

LiteGlass — dark mode

LiteGlass — Appearance settings

Features

  1. Custom Wallpaper

    • Remote image URL, or upload a local image
    • Adjustable background opacity and background blur
  2. Glass-like Panels

    • Adjustable panel transparency for a lightweight glass-like look
  3. Accent Color

    • Customize the accent color used across supported DSH interface states
    • Adapts automatically to DSH's native Light / Dark appearance

What makes it different

  • Server-side persistence, multi-device. Settings and uploaded wallpaper are stored on the DSH host (not in the browser), so every device that reaches the host shares the same look.
  • Does not take over the native color mode. Light / Dark / System stays fully owned by DSH native settings; the plugin only enhances appearance on top.
  • No second theme system. Built on the official theme.overrideTokens seam and the DSH token system — no bundled CSS framework, no competing theme model.
  • Small, focused, predictable. Wallpaper + glass + accent, nothing else.

Identity

FieldValue
packagedsh-ui-liteglass
display nameLiteGlass
plugin id (client module / settings.section / theme source)dsh-ui-liteglass
rowId / wiring.id (loader entry / skin-market)ui-liteglass

rowId matches the loader entry id in cordis.patch.yml, which is what skin markets use for mutual-exclusion wiring. See docs/IDENTITY.md for the canonical record.

Compatibility

  • Supported: the DeepSeek Harness 0.1.0-rc line (the current release-candidate series). The plugin uses only stable official seams (webServer, settings, theme.overrideTokens, dsh.client inject).
  • Tested with: DeepSeek Harness 0.1.0-rc.7 (development runtime; client theme bundle 0.1.0-rc.8).

DeepSeek Harness is still evolving quickly, so a future release may change plugin interfaces; the supported range above is a declaration, not a promise of forward-compatibility.

Installation

From npm (once published):

dsh plugin --profile web add dsh-ui-liteglass

Or directly from the GitHub repository (works today):

dsh plugin --profile web add git+https://github.com/mumuer1024/dsh-ui-liteglass.git
dsh --profile web

To pin a specific release, add the tag:

dsh plugin --profile web add 'git+https://github.com/mumuer1024/dsh-ui-liteglass.git#v0.1.0'

dsh plugin add initializes the profile on first use and wires the bundle automatically. After that, start the Web UI and open Settings → Appearance.

Configuration

Open Settings → Appearance (the plugin adds its own section there):

  • Background: Off / URL / local upload; background opacity; background blur.
  • Panel transparency: how translucent the main surfaces are.
  • Accent color: pick a color, or reset to the native value.

Changes are saved to the server and shared across devices that reach the DSH host.

Uninstallation

dsh plugin --profile web remove dsh-ui-liteglass

Removing the plugin restores the original appearance. Note that uploaded wallpaper files and the plugin config under $DSH_HOME/ui-liteglass/ are not removed by the uninstall command — delete that directory manually if you want them gone.

Known Limitations

  • Panel blur (backdrop-filter) is currently not enabled. Applying a backdrop blur to the main panel containers breaks Settings / overlay positioning in the current build, so that effect is disabled. Background blur and panel transparency are functional and are not affected.
  • The color mode (Light / Dark / System) is always controlled by DSH native settings — this plugin does not provide a color-mode switch.

Development / Testing

Automated Node test suites cover the host routes, the client state model, and the no-color-mode guarantee:

node test/host-smoke.mjs && node test/lifecycle.mjs && node test/no-appearance.mjs

npm publish runs the same suites via prepublishOnly. See docs/ARCHITECTURE.md for design details.

License

MIT