🌲 Everforest Theme Showcase

A comprehensive theme system for developers

240
Generated Files
31
Supported Tools
6
Theme Variants
100%
Generated

Theme Variants

Color Palette

bg
fg
red
orange
yellow
green
aqua
blue
purple

Terminal Emulators

  • đŸ–Ĩī¸ Alacritty
  • 🐱 Kitty
  • 🚀 WezTerm
  • đŸĒŸ Windows Terminal
  • đŸ‘ģ Ghostty

Code Editors

  • ⚡ Neovim/Vim
  • 📝 VS Code
  • 🧠 JetBrains IDEs
  • ⚡ Zed
  • 🎨 Sublime Text

CLI Tools

  • ⭐ Starship
  • 🔍 FZF
  • 📊 htop/btop
  • 🌊 Delta
  • đŸ—‚ī¸ eza/ls
  • 🔎 ripgrep
  • + 20 more tools

Web Development

Complete CSS framework with utilities and components.

var(--everforest-blue)

Ready-to-use color variables and utility classes.

Syntax Highlighting Demo

// Everforest syntax highlighting example import { useState, useEffect } from 'react'; interface User { id: number; name: string; email: string; } const UserProfile = ({ userId }: { userId: number }) => { const [user, setUser] = useState<User | null>(null); const [loading, setLoading] = useState(true); useEffect(() => { fetchUser(userId) .then(setUser) .finally(() => setLoading(false)); }, [userId]); return ( <div className="everforest"> {loading ? 'Loading...' : user?.name} </div> ); };

Interactive Components

Form Elements

Alerts

â„šī¸ Information alert
✅ Success message
âš ī¸ Warning notice
❌ Error message