Components
- Accordion
- Alert
- Alert Dialog
- Aspect Ratio
- Attachment
- Avatar
- Badge
- Breadcrumb
- Bubble
- Button
- Button Group
- Calendar
- Card
- Carousel
- Chart
- Checkbox
- Collapsible
- Combobox
- Command
- Context Menu
- Desktop Window
- Dialog
- Drawer
- Dropdown Menu
- Empty
- Field
- Frame
- Heading
- Hover Card
- Input
- Input Group
- Input OTP
- Item
- Kbd
- Label
- Live Waveform
- Marker
- Menubar
- Message
- Message Scroller
- Meter
- Meter Ring
- Native Select
- Navigation Menu
- NumberCount
- Pagination
- Popover
- Progress
- Progress Ring
- Radio Group
- Resizable
- Scroll Area
- Select
- Separator
- Sheet
- Sidebar
- Skeleton
- Slider
- Spinner
- Switch
- Table
- Tabs
- Textarea
- Timeline
- Toast
- Toggle
- Toggle Group
- Tooltip
Compositions
Utilities
The @ondo-ui/theme registry item configures typography and color tokens, and @ondo-ui/theme-provider wires up dark mode.
Typography#
The theme installs two font families from Fontsource:
- Pretendard —
--font-sansand--font-heading, with full Korean glyph coverage. - Monaspace Neon —
--font-monofor code.
Color tokens#
All colors are defined as CSS variables in the oklch color space, following the shadcn token convention (--background, --foreground, --primary, and so on). Light values live on :root, dark values on .dark. Browse them on the Colors page.
Dark mode#
ThemeProvider wraps next-themes with class-based switching:
import { ThemeProvider } from "@/components/theme-provider"
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" suppressHydrationWarning>
<body>
<ThemeProvider>{children}</ThemeProvider>
</body>
</html>
)
}It also registers a keyboard shortcut: press d anywhere to toggle between light and dark mode.