테마 적용

This commit is contained in:
2026-02-11 14:06:06 +09:00
parent def87bd47a
commit 95291e6922
30 changed files with 1209 additions and 496 deletions

View File

@@ -59,7 +59,7 @@ export function AnimatedQuantity({
transition={{ duration: 1 }}
className={cn(
"absolute inset-0 z-0 rounded-sm",
flash === "up" ? "bg-red-200/50" : "bg-blue-200/50",
flash === "up" ? "bg-red-200/50" : "bg-brand-200/50",
)}
/>
)}
@@ -78,7 +78,7 @@ export function AnimatedQuantity({
transition={{ duration: 1.2, ease: "easeOut" }}
className={cn(
"relative z-20 whitespace-nowrap text-[9px] font-bold leading-none",
diff > 0 ? "text-red-500" : "text-blue-500",
diff > 0 ? "text-red-500" : "text-brand-600",
)}
>
{diff > 0 ? `+${diff.toLocaleString()}` : diff.toLocaleString()}