테마 적용
This commit is contained in:
@@ -84,7 +84,7 @@ export function StockOverviewCard({
|
||||
<CardDescription className="mt-1 flex items-center gap-1.5">
|
||||
<span>{effectivePriceSourceLabel}</span>
|
||||
{isRealtimeConnected && (
|
||||
<span className="inline-flex items-center gap-1 rounded bg-green-100 px-1.5 py-0.5 text-xs font-medium text-green-700">
|
||||
<span className="inline-flex items-center gap-1 rounded bg-brand-100 px-1.5 py-0.5 text-xs font-medium text-brand-700">
|
||||
<Activity className="h-3 w-3" />
|
||||
실시간
|
||||
</span>
|
||||
|
||||
@@ -19,7 +19,7 @@ export function StockPriceBadge({
|
||||
}: StockPriceBadgeProps) {
|
||||
const isPositive = change >= 0;
|
||||
const ChangeIcon = isPositive ? TrendingUp : TrendingDown;
|
||||
const changeColor = isPositive ? "text-red-500" : "text-blue-500";
|
||||
const changeColor = isPositive ? "text-red-500" : "text-brand-600";
|
||||
const changeSign = isPositive ? "+" : "";
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user