npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@neystan/dsh-client-ui-skin-harbor

v0.1.16

Published

Hot-pluggable 夕港 (harbor) skin for the dsh web GUI: dusk-harbor art backdrop with live theme scrim, deep navy surfaces with amber-orange accents, translucent panes

Readme

@neystan/dsh-client-ui-skin-harbor

English | 中文

Harbor (夕港) is a dusk-harbor theme for the dsh web GUI, adapted from the original harbor skin in dsh-skins: the anime-girl twilight-harbor painting (a blue evening sky melting into sunset orange over the water, figure left of center, quiet right half) sits behind translucent panes, a readability scrim swaps live with the base light/dark theme, and a deep-navy (#141a2e family) palette with amber-orange accents (#ff9d5c / #ffb46b) is remapped onto the dsh alias token layer.

It is a hot-pluggable client plugin. apply() sets the data-dsh-harbor body attribute (the whole stylesheet's scope), paints the harbor art as a fixed full-viewport backdrop (base64 data URL with a scrim chosen by the current theme, swapped live on data-ds-dark-theme changes), and injects a harbor favicon (inline SVG: navy square, sunset-orange sun, dark water). Its effect disposer retracts all of it: the attribute, the backdrop inline styles (restoring whatever was there before), and the favicon. The stylesheet ships inside the bundle via CSS-modules auto-inject, so the loader removes it when the entry is disposed.

The skin is presentation-only: no services are injected, no cordis events are emitted, nothing reaches a model request. The dusk palette is the skin's identity and stays in both theme modes; only the scrim differs — a thin twilight haze in light mode and a deeper dusk veil in dark mode (body[data-dsh-harbor][data-ds-dark-theme]) — so the base theme system keeps working underneath.

Installing (official bundle)

Prefer the family aggregate package @neystan/dsh-skins — every skin at once; for this skin alone, install with link::

# All skins (recommended)
dsh plugin --profile web add @neystan/dsh-skins
# Or just this skin
dsh plugin --profile web add @neystan/dsh-client-ui-skin-harbor
# Activate: dsh-skin use harbor
# From the repo (dev): dsh plugin --profile web add link:$(pwd)/packages/skins/harbor

$(pwd) is your clone of the dsh-web-ui monorepo.

A local link: install needs built artifacts first — lib/ is git-ignored and not committed, so run pnpm install && pnpm -r build in the monorepo before linking. Git installs (dsh plugin --profile web add github:<org>/dsh-web-ui#<sha>) build lib/ themselves via the prepare script; pnpm ≥10 blocks that until you copy the printed package key into the profile's pnpm-workspace.yaml allowBuilds list and re-run.

Activate or switch with dsh-skin use harbor (helper script scripts/dsh-skin in the monorepo); only one skin is active at a time.

The backdrop art

src/client/art.ts embeds the original harbor painting (1600×900 WebP, about 83KB) as a data URL; the file header shows the exact regeneration steps (node scripts/embed-skin-art harbor HARBOR_ART <imagePath> 1600). The light scrim is a thin twilight haze, the dark one a deeper dusk veil — both tuned so text stays readable over the brightest sky and the darkest water.

Preview

Light (preview/light.png) · Dark (preview/dark.png) — captured against a stock web profile on 0815.

Requirements

The ambient translucency is token-level (--dsw-alias-bg-*, --dsw-specific-sidebar-fill), so it applies regardless of pane layout. backdrop-filter is deliberately unused: a blurred ancestor becomes the containing block for fixed-position overlays (the settings panel would render trapped inside the sidebar column).

Model Experience

None. The skin mutates only the browser DOM; nothing here reaches a model request.

KV Cache effect

None; this package neither assembles nor sends a provider request.