- Added theme context and provider for light/dark mode support. - Integrated theme toggle button in the Header component. - Updated UI components to utilize CSS variables for consistent theming. - Enhanced Kanban components and forms with new theme styles for better visual coherence. - Adjusted global styles to define color variables for both themes, improving maintainability.
45 lines
1.5 KiB
TypeScript
45 lines
1.5 KiB
TypeScript
import { InputHTMLAttributes, forwardRef } from 'react';
|
|
import { cn } from '@/lib/utils';
|
|
|
|
interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
label?: string;
|
|
error?: string;
|
|
}
|
|
|
|
const Input = forwardRef<HTMLInputElement, InputProps>(
|
|
({ className, label, error, ...props }, ref) => {
|
|
return (
|
|
<div className="space-y-2">
|
|
{label && (
|
|
<label className="block text-sm font-mono font-medium text-[var(--muted-foreground)] uppercase tracking-wider">
|
|
{label}
|
|
</label>
|
|
)}
|
|
<input
|
|
className={cn(
|
|
'w-full px-3 py-2 bg-[var(--input)] border border-[var(--border)]/50 rounded-lg',
|
|
'text-[var(--foreground)] font-mono text-sm placeholder-[var(--muted-foreground)]',
|
|
'focus:outline-none focus:ring-2 focus:ring-[var(--primary)]/50 focus:border-[var(--primary)]/50',
|
|
'hover:border-[var(--border)] transition-all duration-200',
|
|
'backdrop-blur-sm',
|
|
error && 'border-[var(--destructive)]/50 focus:ring-[var(--destructive)]/50 focus:border-[var(--destructive)]/50',
|
|
className
|
|
)}
|
|
ref={ref}
|
|
{...props}
|
|
/>
|
|
{error && (
|
|
<p className="text-xs font-mono text-[var(--destructive)] flex items-center gap-1">
|
|
<span className="text-[var(--destructive)]">⚠</span>
|
|
{error}
|
|
</p>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
);
|
|
|
|
Input.displayName = 'Input';
|
|
|
|
export { Input };
|