# Osaka Jade

Japanese-inspired theme with jade green tones.

## Installation

  <TabsTrigger value="cli">Command</TabsTrigger>
  <TabsTrigger value="manual">Manual</TabsTrigger>

```bash
npx shadcn@latest add @termcn/theme-osaka-jade
```

<Step>Copy and paste the following code into your project.</Step>

```ts
import type { Theme } from "@/components/ui/theme-provider";

export const osakaJadeTheme: Theme = {
  border: {
    color: "#53685b",
    focusColor: "#2dd5b7",
    style: "round",
  },
  colors: {
    accent: "#549e6a",
    accentForeground: "#111c18",
    background: "#111c18",
    border: "#53685b",
    error: "#ff5345",
    errorForeground: "#111c18",
    focusRing: "#2dd5b7",
    foreground: "#c1c497",
    info: "#2dd5b7",
    infoForeground: "#111c18",
    muted: "#0a110f",
    mutedForeground: "#53685b",
    primary: "#2dd5b7",
    primaryForeground: "#111c18",
    secondary: "#1a2921",
    secondaryForeground: "#c1c497",
    selection: "#2dd5b7",
    selectionForeground: "#111c18",
    success: "#549e6a",
    successForeground: "#111c18",
    warning: "#e5c736",
    warningForeground: "#111c18",
  },
  name: "osaka-jade",
  spacing: {
    0: 0,
    1: 1,
    2: 2,
    3: 3,
    4: 4,
    6: 6,
    8: 8,
  },
  typography: {
    base: "",
    bold: true,
    lg: "bold",
    sm: "dim",
    xl: "bold",
  },
};
```

<Step>Update the import paths to match your project setup.</Step>

## Usage

```tsx
import { ThemeProvider } from "@/components/ui/theme-provider";
import { osakaJadeTheme } from "@/lib/terminal-themes/osaka-jade";
import { Badge } from "@/components/ui/badge";

export function Example() {
  return (
    <ThemeProvider theme={osakaJadeTheme}>
      <Badge variant="info">{"Osaka Jade"}</Badge>
    </ThemeProvider>
  );
}
```