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
key-value-demo
No opentui live preview is registered for this example yet.
Installation
$ pnpm dlx shadcn@latest add @termcn/opentui-key-value
Usage
import { KeyValue } from "@/components/ui/key-value";<KeyValue
items={[
{ key: "Name", value: "my-app" },
{ key: "Version", value: "2.1.0" },
{ key: "License", value: "MIT" },
]}
/>API Reference
KeyValue
| Prop | Type | Default |
|---|---|---|
items | KeyValueItem[] | required |
keyWidth | number | - |
separator | string | ":" |
keyColor | string | - |
valueColor | string | - |
KeyValueItem
| Prop | Type | Default |
|---|---|---|
key | string | required |
value | ReactNode | required |
color | string | - |