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

@sandlada/opencode-material-theme

v0.0.3

Published

Material Design 3 (Material You) themes for the OpenCode TUI: 194 static JSON themes across 9 variants x 12 hues, plain + OLED.

Readme

MD3 Themes for OpenCode TUI

194 static Material Design 3 (Material You) themes for the OpenCode TUI: 9 variants × 12 hues (monochrome only ships hue 0), plain + OLED, each file carrying both light and dark appearances (OpenCode switches itself).

| Light | Dark | | ------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------- | | Fidelity 150 light OLED | Fidelity 150 dark OLED | | Expressive 30 Light OLED | Expressive 30 Dark OLED |

More screenshots in docs/ on GitHub.

Requirements

  • A terminal with truecolor support (COLORTERM=truecolor), otherwise colors degrade to the nearest 256-color approximation.
  • Node.js 22+ (installer only; the themes themselves are plain JSON).

Install

One-click full install (194 themes) into your user themes directory (requires the published package, v0.0.1+):

npx -y -p @sandlada/opencode-material-theme opencode-md3-themes install

Preview without installing:

npx -y -p @sandlada/opencode-material-theme opencode-md3-themes --dry-run

Install a subset (expressive greens, plain only):

npx -y -p @sandlada/opencode-material-theme opencode-md3-themes install --variant expressive --hue 120,150 --oled plain

List what the package ships:

npx -y -p @sandlada/opencode-material-theme opencode-md3-themes list

Manual install via git (bash):

git clone --depth 1 https://github.com/sandlada/opencode-material-theme.git
mkdir -p ~/.config/opencode/themes
cp opencode-material-theme/tui/*.json ~/.config/opencode/themes/

Manual install via git (PowerShell):

git clone --depth 1 https://github.com/sandlada/opencode-material-theme.git
New-Item -ItemType Directory -Path "$env:USERPROFILE\.config\opencode\themes" -Force
Copy-Item -Path ".\opencode-material-theme\tui\*.json" -Destination "$env:USERPROFILE\.config\opencode\themes\" -Force

Single theme via curl:

mkdir -p ~/.config/opencode/themes
curl -o ~/.config/opencode/themes/md3-expressive-120-oled.json \
  https://raw.githubusercontent.com/sandlada/opencode-material-theme/main/tui/md3-expressive-120-oled.json

Use

Pick a theme inside OpenCode with /theme, or pin one in tui.json:

{ "$schema": "https://opencode.ai/tui.json", "theme": "md3-expressive-120-oled" }

Theme names

md3-{variant}-{hue}[-oled][-high|-reduced].json, all lowercase:

  • {variant}: monochrome, neutral, tonal-spot, vibrant, expressive, fidelity, content, rainbow, fruit-salad
  • {hue}: HCT hue 0-330 step 30 (monochrome only ships hue 0); every source is Hct.from(hue, 75, 50)
  • each file holds light and dark ({ "dark": …, "light": … }); -oled marks the file whose dark half is pitch-black

Regenerate from source

npm install
bun scripts/generate-md3-matrix.mjs --out ./tui

Single hue:

bun scripts/generate-md3-tokens.mjs --variant Expressive --hue 120 --out ./tui

Generation fails closed on schema drift, unknown roles, and contrast violations (text 4.5, muted/wash 3.0; reduced text 3.0 by design). See AGENTS.md for the mapping and naming contracts.

License

MIT, copyright Kai-Orion & Sandlada.