Added Basic Darkmode and Fixed Small Bugs

This commit is contained in:
Ahmad 2025-01-13 19:12:06 -05:00
parent aacca3d141
commit 94fb5c7eb1
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
42 changed files with 593 additions and 72 deletions

View file

@ -18,9 +18,10 @@ const buttonVariants = cva(
'bg-secondary text-secondary-foreground hover:bg-secondary/80',
ghost: 'hover:bg-accent hover:text-accent-foreground',
link: 'text-primary underline-offset-4 hover:underline',
primary: 'bg-sky-700 text-primary-foreground hover:bg-sky-700/90',
primary:
'bg-sky-700 text-primary-foreground hover:bg-sky-700/90 dark:text-neutral-200',
transparent: 'bg-transparent text-white hover:bg-white/20',
gray: 'bg-neutral-200 text-secondary-foreground hover:bg-neutral-300',
gray: 'bg-neutral-200 text-secondary-foreground hover:bg-neutral-300 dark:bg-neutral-700 dark:text-neutral-200 dark:hover:bg-neutral-600',
},
size: {
default: 'h-10 px-4 py-2',