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

omwpcli

v1.0.5

Published

A tiny CLI to install, update and uninstall Warp terminal themes.

Readme

oh-my-warp-palette

Warp 终端自定义主题仓库。

在线预览:进入 site/ 目录,执行 npm install && npm run dev,浏览器访问 Vite 输出的地址即可查看所有主题配色与终端效果。

主题列表

| 主题 | 描述 | 背景色 | 前景色 | 强调色 | 配置文件 | |------|------|--------|--------|--------|----------| | April | 清新的春日配色 | #ffffff | #17703f | #5DA802 | april.yaml | | Atom One Dark | Atom 编辑器经典深色配色 | #282c34 | #abb2bf | #528bff | atom-one-dark.yaml | | Atom One Light | Atom 编辑器经典浅色配色 | #fafafa | #383a42 | #526fff | atom-one-light.yaml | | Ayu | 基于 ayutheme.com 官方配色(Dark 变体) | #10141c | #bfbdb6 | #e6b450 | ayu.yaml | | Ayu Light | 基于 ayutheme.com 官方配色(Light 变体) | #fcfcfc | #5c6166 | #f29718 | ayu-light.yaml | | Cocoa Cream | 暖棕可可,柔和舒适的深色主题 | #2b2624 | #d6cfc8 | #c8966d | cocoa-cream.yaml | | GitHub Dark | 基于 GitHub 官方深色配色 | #0d1117 | #c9d1d9 | #58a6ff | github-dark.yaml | | GitHub Dark Dimmed | GitHub 深色主题的柔和版本 | #22272e | #adbac7 | #539bf5 | github-dark-dimmed.yaml | | GitHub Light | 基于 GitHub 官方浅色配色(Colorblind 版本) | #ffffff | #1f2328 | #0969da | github-light.yaml | | Milk Tea | 奶茶暖调,柔和易读的浅色主题 | #faf6f0 | #5c4d42 | #b07d52 | milk-tea.yaml | | Muted Forest | 低饱和森林绿,护眼的深色主题 | #232b28 | #c5cbc4 | #7da585 | muted-forest.yaml | | Pastel Dawn | 粉紫粉蓝渐变感,清新的浅色主题 | #f7f4f9 | #4a4458 | #8b7ab8 | pastel-dawn.yaml | | Twilight Slate | 暮光蓝灰,沉稳柔和的深色主题 | #252a33 | #c9cdd4 | #7a9bc4 | twilight-slate.yaml |

npm CLI 安装(推荐跨平台)

如果你已安装 Node.js,可以直接使用 npx 运行,无需下载脚本:

npx --registry=https://registry.npmjs.org omwpcli install                 # 安装所有主题
npx --registry=https://registry.npmjs.org omwpcli install github-dark     # 仅安装指定主题
npx --registry=https://registry.npmjs.org omwpcli update github-dark      # 更新指定主题
npx --registry=https://registry.npmjs.org omwpcli uninstall github-light  # 卸载指定主题
npx --registry=https://registry.npmjs.org omwpcli list                    # 列出所有可用主题
npx --registry=https://registry.npmjs.org omwpcli help                    # 查看帮助

重复执行 installupdate 会覆盖本地同名文件,因此也用于更新到最新版本。

安装

安装时会直接覆盖本地同名的主题文件,因此重复执行即可更新到最新版本。

macOS / Linux

在终端执行以下命令即可一键安装所有主题:

curl -fsSL https://raw.githubusercontent.com/erub1t/oh-my-warp-palette/main/install.sh | bash

只安装某个主题:

curl -fsSL https://raw.githubusercontent.com/erub1t/oh-my-warp-palette/main/install.sh | bash -s -- github-dark

Windows

PowerShell 中执行:

irm https://raw.githubusercontent.com/erub1t/oh-my-warp-palette/main/install.ps1 | iex

只安装某个主题:

irm https://raw.githubusercontent.com/erub1t/oh-my-warp-palette/main/install.ps1 -OutFile install.ps1
.\install.ps1 github-dark

如果执行策略限制脚本运行,可加上 -ExecutionPolicy Bypass

powershell -ExecutionPolicy Bypass -File .\install.ps1 github-dark

Windows 下主题安装到 %APPDATA%\warp\Warp\data\themes,macOS / Linux 下为 ~/.warp/themes

安装完成后,打开 WarpSettingsAppearanceTheme,选择已安装的主题。

卸载主题

macOS / Linux

curl -fsSL -o /tmp/oh-my-warp-palette-install.sh https://raw.githubusercontent.com/erub1t/oh-my-warp-palette/main/install.sh
bash /tmp/oh-my-warp-palette-install.sh --uninstall github-light

Windows

irm https://raw.githubusercontent.com/erub1t/oh-my-warp-palette/main/install.ps1 -OutFile install.ps1
.\install.ps1 -Uninstall github-light

添加新主题

  1. themes/ 目录下新建一个 .yaml 主题文件。
  2. 将主题名称添加到 install.shBUILTIN_THEMES 数组和 install.ps1$BuiltinThemes 列表。
  3. 参考 Warp 主题规范 编写配置。
  4. 提交 pull request。

许可证

MIT