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

astro-terminal-themes

v0.1.1

Published

Astro integration to convert terminal themes (Ghostty, Warp, etc.) to Tailwind CSS themes

Readme

Astro Terminal Themes

Convert terminal theme configurations (Ghostty, Warp, iTerm2, etc.) into Tailwind CSS themes for your Astro website.

Features

  • 🎨 Multiple Terminal Support: Ghostty, Warp (more coming soon)
  • 🔥 Hot Reloading: Automatically regenerate CSS when theme files change
  • 🚀 Tailwind 4 Ready: Uses the new @theme directive syntax
  • 🔧 Modular Adapters: Easy to extend with new terminal formats
  • 📁 Auto-Discovery: Automatically finds themes in your themes directory
  • 🎯 Two Mapping Modes: Direct ANSI colors or semantic color names

Requirements

  • Node.js: v22.0.0 or higher
  • Astro: v5.0.0 or higher

Installation

npm install astro-terminal-themes

Setup

1. Add to Astro Config

// astro.config.mjs
import { defineConfig } from 'astro/config';
import terminalThemes from 'astro-terminal-themes';

export default defineConfig({
  integrations: [
    terminalThemes({
      themesDir: './themes',           // Where your theme files are stored
      outputFile: './src/styles/theme.css',  // Generated CSS output
      semanticMapping: false,          // Use semantic names (primary, accent) vs direct (red, blue)
      defaultTheme: 'my-theme'        // Default theme name (optional)
    })
  ]
});

2. Create Themes Directory

mkdir themes

3. Add Theme Files

Ghostty Theme (themes/my-theme.conf):

palette = 0=#22212C
palette = 1=#FF9580
palette = 2=#8AFF80
palette = 3=#FFFF80
palette = 4=#9580FF
palette = 5=#FF80BF
palette = 6=#80FFEA
palette = 7=#F8F8F2
palette = 8=#504C67
palette = 9=#FFAA99
palette = 10=#A2FF99
palette = 11=#FFFF99
palette = 12=#AA99FF
palette = 13=#FF99CC
palette = 14=#99FFEE
palette = 15=#FFFFFF
background = #22212C
foreground = #F8F8F2
cursor-color = #7970A9
selection-background = #454158
selection-foreground = #F8F8F2

Warp Theme (themes/my-theme.yaml):

name: Custom Theme
accent: '#268bd2'
cursor: '#95D886'
background: '#002b36'
foreground: '#839496'
details: darker
terminal_colors:
  bright:
    black: '#002b36'
    blue: '#839496'
    cyan: '#93a1a1'
    green: '#586e75'
    magenta: '#6c71c4'
    red: '#cb4b16'
    white: '#fdf6e3'
    yellow: '#657b83'
  normal:
    black: '#073642'
    blue: '#268bd2'
    cyan: '#2aa198'
    green: '#859900'
    magenta: '#d33682'
    red: '#dc322f'
    white: '#eee8d5'
    yellow: '#b58900'

4. Import Generated CSS

Add the generated theme CSS to your main stylesheet:

/* src/styles/global.css */
@import './theme.css';
@import 'tailwindcss';

Or import it in your Astro layout:

---
// src/layouts/Layout.astro
import '../styles/theme.css';
---

Usage

Direct Color Mapping (Default)

With semanticMapping: false, colors map directly to ANSI names:

<div class="bg-background text-foreground">
  <h1 class="text-red">Error Message</h1>
  <p class="text-green">Success Message</p>
  <button class="bg-blue text-white">Primary Button</button>
  <div class="border-bright-black">Card with border</div>
</div>

Available colors:

  • background, foreground
  • black, red, green, yellow, blue, magenta, cyan, white
  • bright-black, bright-red, bright-green, bright-yellow, bright-blue, bright-magenta, bright-cyan, bright-white
  • cursor, selection (if defined in theme)

Semantic Color Mapping

With semanticMapping: true, colors map to semantic UI names:

<div class="bg-background text-foreground">
  <h1 class="text-destructive">Error Message</h1>
  <p class="text-success">Success Message</p>
  <button class="bg-primary text-primary-foreground">Primary Button</button>
  <div class="border-border">Card with border</div>
</div>

Available semantic colors:

  • background, foreground
  • primary, secondary, accent, destructive
  • muted, border, input, ring
  • success, warning, info

Theme Selection

Environment Variable

Set the THEME environment variable to choose a theme:

THEME=my-dark-theme npm run dev

Default Theme

Specify a default in your config:

terminalThemes({
  defaultTheme: 'my-theme'  // Will use this if THEME env var not set
})

Auto-Selection

If no theme is specified, the first theme found alphabetically will be used.

Hot Reloading

During development (astro dev), the integration watches your themes directory for changes:

  • File modified: Theme CSS regenerated
  • File added: New theme becomes available
  • File deleted: Theme CSS regenerated

Extending with Custom Adapters

You can add support for additional terminal formats:

// src/adapters/iterm-adapter.js
import { ThemeProcessor } from 'astro-terminal-themes';

class iTerm2Adapter {
  name = 'iterm2';
  extensions = ['.itermcolors'];

  parse(content) {
    // Parse iTunes plist format
    // Return ThemeColors object
  }
}

// In your astro config
const processor = new ThemeProcessor();
processor.registerAdapter(new iTerm2Adapter());

API Reference

Integration Options

interface TerminalThemeIntegrationOptions {
  themesDir?: string;        // Default: './themes'
  outputFile?: string;       // Default: './src/styles/theme.css'
  defaultTheme?: string;     // Default: first theme found
  semanticMapping?: boolean; // Default: false
}

ThemeColors Interface

interface ThemeColors {
  background: string;
  foreground: string;
  cursor?: string;
  selection?: {
    background: string;
    foreground?: string;
  };
  colors: {
    black: string;
    red: string;
    green: string;
    yellow: string;
    blue: string;
    magenta: string;
    cyan: string;
    white: string;
    brightBlack: string;
    brightRed: string;
    brightGreen: string;
    brightYellow: string;
    brightBlue: string;
    brightMagenta: string;
    brightCyan: string;
    brightWhite: string;
  };
}

Supported Formats

✅ Currently Supported

  • Ghostty (.conf, .config) - Full support
  • Warp (.yaml, .yml) - Full support

🚧 Coming Soon

  • iTerm2 (.itermcolors)
  • VS Code (.json)
  • Alacritty (.yml, .yaml)
  • Kitty (.conf)

Examples

Check out the examples/ directory for complete Astro project setups using various terminal themes.

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Add your terminal adapter in src/adapters/
  4. Add tests and examples
  5. Submit a pull request

License

MIT