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

cctheme

v1.1.0

Published

Custom color themes for Electron desktop apps

Readme

cctheme

Custom color themes for the Claude Desktop app on macOS. 25 built-in themes with instant hot-reload — switch themes without restarting.

Install

npx cctheme

That's it. An interactive theme picker will guide you through the rest.

Commands

| Command | Description | |---|---| | cctheme | Interactive theme picker | | cctheme apply <theme> | Apply a theme | | cctheme default | Switch to default appearance (keeps loader) | | cctheme update | Unpatch Claude so it can auto-update | | cctheme restore | Full uninstall | | cctheme list | List all themes | | cctheme preview <theme> | Preview colors in terminal | | cctheme status | Show active theme & loader status | | cctheme audit | Validate all themes |

Themes

Andromeda Ayu Dark Catppuccin Mocha Cobalt2 Dracula Everforest Dark GitHub Dark Gruvbox Dark Horizon Kanagawa Material Ocean Monokai Pro Night Owl Nord One Dark Pro One Monokai Palenight Poimandres Rose Pine Shades of Purple Solarized Dark Synthwave '84 Tokyo Night Tokyo Night Storm Vitesse Dark

How It Works

The first apply installs a tiny loader (~1.4KB) into the app bundle. This takes ~8 seconds and requires a restart. After that, theme switching is instant — the loader watches ~/.cctheme/active.css for changes and hot-swaps the CSS in real time.

  • Only affects dark mode — light mode is untouched
  • Survives app restarts

Updating Claude Desktop

cctheme's asar patching blocks Claude's auto-update. To update:

cctheme update                # unpatch Claude
# In Claude, open menu > Check for Updates, let it install
cctheme apply <theme>         # re-apply your theme

The theme CSS file at ~/.cctheme/active.css is preserved throughout — you just need to reinstall the loader after Claude updates.

Custom Themes

Create a .json file in the themes/ directory:

{
  "name": "My Theme",
  "author": "you",
  "colors": {
    "bg-main": "#1e1e1e",
    "bg-sidebar": "#181818",
    "bg-input": "#252525",
    "bg-deep": "#141414",
    "text-primary": "#d4d4d4",
    "text-secondary": "#cccccc",
    "text-muted": "#6a6a6a",
    "accent": "#007acc",
    "accent-light": "#3794ff",
    "accent-pro": "#c586c0",
    "border": "#333333",
    "border-focus": "#007acc",
    "selection": "#264f7840",
    "red": "#f44747",
    "orange": "#ce9178",
    "yellow": "#dcdcaa",
    "green": "#6a9955",
    "cyan": "#4ec9b0",
    "blue": "#569cd6",
    "purple": "#c586c0",
    "scrollbar-thumb": "#424242",
    "scrollbar-hover": "#4f4f4f"
  }
}

Colors map directly to VS Code theme properties — use editor.background, sideBar.background, terminal.ansi*, etc. as sources.

Validate with cctheme audit and inspect the full variable mapping with cctheme debug <name>.

Requirements

  • macOS
  • Node.js >= 18
  • Claude Desktop

License

MIT