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:
parent
875ae344f8
commit
e8babfc2eb
1 changed files with 2 additions and 2 deletions
|
|
@ -4,7 +4,7 @@ import { motion } from 'framer-motion';
|
|||
import { cn } from '../../lib/utils';
|
||||
|
||||
/**
|
||||
* 777 Wolfpack UI Primitives
|
||||
* Veridian UI Primitives
|
||||
* High-performance, high-density components for operational management.
|
||||
*/
|
||||
|
||||
|
|
@ -230,7 +230,7 @@ export function StatusBadge({ status, label, className }: StatusBadgeProps) {
|
|||
|
||||
// Skeleton loader
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue