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

@mtdt/observeops-ds-css

v0.1.0

Published

The ObserveOps design-system "look" package — exact design tokens (light + dark) + structural scale + status-tag chips as a standalone CSS file. Import it in any project (HTML, React, Vue, anything) for pixel-exact ObserveOps styling.

Readme

@mtdt/observeops-ds-css

The ObserveOps design-system "look" package — a single standalone CSS file with the exact design tokens (light + dark), the structural scale, and the status-tag chips. Import it in any project (HTML, React, Vue, Svelte, plain CSS) and get pixel-exact ObserveOps styling — brand is navy, not blue. No framework, no build step required.

This is the styling foundation for Goal #4. It ships the look; the real components come later (@mtdt/observeops-ds-elements, Web Components).

Install

npm install @mtdt/observeops-ds-css

…or with no build step at all, over the CDN:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mtdt/observeops-ds-css/dist/observeops-ds.css" />

Use

Import it once, then use var(--token) anywhere:

@import '@mtdt/observeops-ds-css';   /* or the <link> above */

.my-button {
  background: var(--primary-button-bg);   /* navy */
  color: var(--primary-button-text);
  height: var(--input-height-base);       /* 32px */
  border-radius: var(--btn-radius);       /* 4px */
  font-family: var(--font-family);        /* Poppins */
  padding: 0 var(--padding-md);           /* 16px */
}

Dark theme: set data-theme="dark-theme" on a root element — every colour token swaps automatically.

<html data-theme="dark-theme"> … </html>

Status tag chips are included as ready classes:

<span class="tag-green">Active</span>
<span class="tag-red">Inactive</span>
<span class="tag-yellow">Pending</span>

What's inside

  • Colour tokens — 331 light + 311 dark CSS custom properties (--primary, --page-text-color, --secondary-*, --severity-*, --neutral-*, surfaces, borders, …). Brand --primary = navy #111c2c / #e3e8f2. The cyan --primary-color / --ant-primary (#099dd9) is the form-control accent only.
  • Structural scale — spacing/sizing/radius/type as CSS vars (--padding-md, --btn-radius, --text-sm, --font-family, …).
  • Status-tag chips.tag-green / .tag-red / .tag-yellow / .tag-orange / .tag-primary.
  • The Poppins font (@import at the top).

Open in any browser: dist/tokens.html — the complete token gallery (every colour + structural token, searchable, light/dark toggle), and example.html — a small component demo.

Scope (honest)

This package is the look only — tokens + chips. It does NOT include component behaviour or the full component styling (those are welded to the app and ship with the real components later). For real components anywhere, that's @mtdt/observeops-ds-elements (Goal #4, Web Components).

Maintaining

Generated from the design-system token spec — don't hand-edit dist/. Rebuild with node design-system/scripts/build-css-package.js (it reads tokens/variables.json, structural.json, and kit-accents.json). Bump version, then npm publish.