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

vscode-theme-customizer

v2.0.1

Published

A VSCode theme customizer package that provides blue/green theme configurations for your workspace

Readme

VSCode Theme Customizer by Rajan Singh

🎯 This is a TEMPLATE package! Take it and customize it as you want.

A simple VSCode theme template with blue/green colors that you can easily modify to create your own custom themes.

💡 The MVP Concept

This package is designed as a starting template. The core idea is:

  1. Install → Get a working theme instantly
  2. Fork/Copy → Take the code as your foundation
  3. Customize → Change colors, add features, make it yours
  4. Share → Create your own theme packages

🚀 One-Step Installation

npm i vscode-theme-customizer

That's it! The theme will be automatically applied to your project's .vscode/settings.json.

🎨 What You Get

A complete VSCode theme that customizes:

  • Activity Bar, Editor, Status Bar, Title Bar
  • Sidebar, Panel, Terminal, Tabs
  • All with a blue/green color scheme

Sample Colors:

  • Primary Blue: #0066cc
  • Dark Blue: #004c99
  • Accent Green: #00cc44
  • Editor Background: #1e1e1e

🔧 How to Customize

Option 1: Quick Override

After installation, edit .vscode/settings.json to override specific colors:

{
  "workbench.colorCustomizations": {
    "activityBar.background": "#your-color",
    "editor.background": "#your-background"
  }
}

Option 2: Fork & Build Your Own

  1. Fork this repository
  2. Modify colors in index.js
  3. Update package.json with your theme name
  4. Publish your own theme package

Option 3: Use Programmatically

const {
  getThemeConfig,
  getColorsByCategory,
} = require("vscode-theme-customizer");

// Get all colors
const theme = getThemeConfig();

// Get specific category colors
const editorColors = getColorsByCategory("editor");

📂 Project Structure

├── index.js          # Theme colors (main customization file)
├── bin/cli.js        # CLI tool
├── bin/postinstall.js # Auto-application script
└── templates/        # Template files

🎯 Perfect For

  • Developers who want to create custom VSCode themes
  • Teams who need branded development environments
  • Learning how VSCode theme customization works
  • Quick Setup for consistent project theming

Take this template and make it your own! 🚀