379
Sponsor

Flexoki

Versatile theme with warm colors and good contrast.

Terminal

Installation

$ pnpm dlx shadcn@latest add @termcn/theme-flexoki

Usage

import { ThemeProvider } from "@/components/ui/theme-provider";
import { flexokiTheme } from "@/lib/terminal-themes/flexoki";
import { Badge } from "@/components/ui/badge";
 
export function Example() {
  return (
    <ThemeProvider theme={flexokiTheme}>
      <Badge variant="info">{"Flexoki"}</Badge>
    </ThemeProvider>
  );
}