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
Installation
$ pnpm dlx shadcn@latest add @termcn/big-text
Usage
import { BigText } from "@/components/ui/big-text";<BigText>HELLO</BigText>Examples
Font variants
font can be block (default pixel font), simple (lighter block), shade (density characters), or slim (box-drawing style).
Terminal
import { Box } from "ink";
import { BigText } from "@/components/ui/big-text";
export function BigTextFonts() {
return (
<Box flexDirection="column" gap={1}>
<BigText font="block">BLOCK</BigText>
<BigText font="shade">SHADE</BigText>
<BigText font="slim">SLIM</BigText>
</Box>
);
}API Reference
BigText
| Prop | Type | Default |
|---|---|---|
children | string | required |
color | string | - |
font | "block" | "simple" | "shade" | "slim" | "block" |