fix: Replace blue slate skeleton colors with neutral zinc

- Change skeleton bg from slate to zinc for neutral appearance
- Update '777 Wolfpack' branding comment to 'Veridian'
This commit is contained in:
fullsizemalt 2026-01-12 13:32:29 -08:00
parent 875ae344f8
commit e8babfc2eb

View file

@ -4,7 +4,7 @@ import { motion } from 'framer-motion';
import { cn } from '../../lib/utils'; import { cn } from '../../lib/utils';
/** /**
* 777 Wolfpack UI Primitives * Veridian UI Primitives
* High-performance, high-density components for operational management. * High-performance, high-density components for operational management.
*/ */
@ -230,7 +230,7 @@ export function StatusBadge({ status, label, className }: StatusBadgeProps) {
// Skeleton loader // Skeleton loader
export function Skeleton({ className }: { className?: string }) { export function Skeleton({ className }: { className?: string }) {
return <div className={cn("animate-pulse bg-slate-100 dark:bg-slate-800 rounded", className)} />; return <div className={cn("animate-pulse bg-zinc-200 dark:bg-zinc-800 rounded", className)} />;
} }
// Card skeleton // Card skeleton