@theme {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-success: var(--success);
  --color-success-foreground: var(--success-foreground);
  --color-warning: var(--warning);
  --color-warning-foreground: var(--warning-foreground);
  --radius-DEFAULT: var(--radius);
}

:root {
  --background: #fbf8f3;
  --foreground: #1a1714;
  --card: #ffffff;
  --card-foreground: #1a1714;
  --popover: #ffffff;
  --popover-foreground: #1a1714;
  --primary: #1a1714;
  --primary-foreground: #fbf8f3;
  --secondary: #f5f1e9;
  --secondary-foreground: #3c362f;
  --muted: #f5f1e9;
  --muted-foreground: #6e6455;
  --accent: #a33b22;
  --accent-foreground: #fbf8f3;
  --destructive: #8c1d18;
  --destructive-foreground: #fbf8f3;
  --border: #e6ded2;
  --input: #968e82;
  --ring: #a33b22;
  --success: #2f6b4f;
  --success-foreground: #fbf8f3;
  --warning: #7d5411;
  --warning-foreground: #fbf8f3;
  --radius: 3px;
  --font-display: "Shippori Mincho", serif;
  --font-text: "Zen Kaku Gothic New", serif;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --background: #191713;
    --foreground: #f2ede4;
    --card: #221f1a;
    --card-foreground: #f2ede4;
    --popover: #2b2722;
    --popover-foreground: #f2ede4;
    --primary: #f2ede4;
    --primary-foreground: #191713;
    --secondary: #2b2722;
    --secondary-foreground: #f2ede4;
    --muted: #2b2722;
    --muted-foreground: #b3aa9c;
    --accent: #e0714e;
    --accent-foreground: #191713;
    --destructive: #f09080;
    --destructive-foreground: #191713;
    --border: #34302a;
    --input: #7a7266;
    --ring: #e0714e;
    --success: #6fbf95;
    --success-foreground: #191713;
    --warning: #d9a44e;
    --warning-foreground: #191713;
    --radius: 3px;
    --font-display: "Shippori Mincho", serif;
    --font-text: "Zen Kaku Gothic New", serif;
  }
}

[data-theme="dark"] {
  --background: #191713;
  --foreground: #f2ede4;
  --card: #221f1a;
  --card-foreground: #f2ede4;
  --popover: #2b2722;
  --popover-foreground: #f2ede4;
  --primary: #f2ede4;
  --primary-foreground: #191713;
  --secondary: #2b2722;
  --secondary-foreground: #f2ede4;
  --muted: #2b2722;
  --muted-foreground: #b3aa9c;
  --accent: #e0714e;
  --accent-foreground: #191713;
  --destructive: #f09080;
  --destructive-foreground: #191713;
  --border: #34302a;
  --input: #7a7266;
  --ring: #e0714e;
  --success: #6fbf95;
  --success-foreground: #191713;
  --warning: #d9a44e;
  --warning-foreground: #191713;
  --radius: 3px;
  --font-display: "Shippori Mincho", serif;
  --font-text: "Zen Kaku Gothic New", serif;
}
