'use client'; import { useThemeStore } from '@/lib/stores/use-theme-store'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { Label } from '@/components/ui/label'; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'; import { Switch } from '@/components/ui/switch'; import { cn } from '@/lib/utils'; import { ACCENT_COLORS, FONTS, DENSITIES, THEME_MODES } from '@/lib/theme'; export function SettingsAppearance() { const { mode, accent, font, density, reducedMotion, setMode, setAccent, setFont, setDensity, setReducedMotion } = useThemeStore(); return ( Appearance Customize how Project E looks and feels. {/* Theme mode */}
{/* Accent color */}
{ACCENT_COLORS.map((color) => (
{/* Font */}
{/* Density */}
{/* Reduced motion */}

Minimize animations and transitions

); }