Themes
- Default
- Catppuccin
- Dracula
- High Contrast
- High Contrast Light
- Monokai
- Nord
- One Dark
- Solarized
- Tokyo Night
- AMOLED
- Aura
- Ayu
- Carbonfox
- Catppuccin Frappe
- Catppuccin Macchiato
- Cobalt2
- Cursor
- Everforest
- Flexoki
- GitHub
- Gruvbox
- Kanagawa
- Lucent Orng
- Material
- Matrix
- Mercury
- Night Owl
- OC-2
- One Dark Pro
- OpenCode
- Orng
- Osaka Jade
- Palenight
- Rose Pine
- Shades of Purple
- Synthwave '84
- Vercel
- Vesper
- Zenburn
Utility
AI
Terminal
command-palette-demo
No opentui live preview is registered for this example yet.
Installation
$ pnpm dlx shadcn@latest add @termcn/command-palette
Usage
import { CommandPalette } from "@/components/ui/command-palette";<CommandPalette
isOpen={true}
onClose={() => setOpen(false)}
commands={[
{ id: "save", label: "Save", onSelect: () => {} },
{ id: "quit", label: "Quit", onSelect: () => {} },
]}
/>API Reference
CommandPalette
| Prop | Type | Default |
|---|---|---|
commands | Command[] | required |
isOpen | boolean | required |
onClose | () => void | required |
placeholder | string | "Type a command..." |
maxItems | number | 8 |
Command
| Prop | Type | Default |
|---|---|---|
id | string | required |
label | string | required |
description | string | - |
shortcut | string | - |
onSelect | () => void | required |
group | string | - |