diff --git a/features/prices/components/Price/Price.tsx b/features/prices/components/Price/Price.tsx
index ee79230..ead9b7f 100644
--- a/features/prices/components/Price/Price.tsx
+++ b/features/prices/components/Price/Price.tsx
@@ -13,7 +13,7 @@ export function Price({ price }: { price: PriceCoingecko }) {
return (
- ${price.usd}
+ ${price.usd}
{price?.usd_24h_change ? (
) : null}
diff --git a/features/prices/components/Price/PriceChange.module.css b/features/prices/components/Price/PriceChange.module.css
index d3b822a..ed4cafb 100644
--- a/features/prices/components/Price/PriceChange.module.css
+++ b/features/prices/components/Price/PriceChange.module.css
@@ -1,7 +1,7 @@
.change {
font-size: 0.7rem;
- --color-positive: #2ecc40;
+ --color-positive: #3d9970;
--color-negative: #ff4136;
}
@@ -9,12 +9,12 @@
.change[data-locale|='zh'],
.change[data-locale|='ja'] {
--color-positive: #ff4136;
- --color-negative: #2ecc40;
+ --color-negative: #3d9970;
}
.change[data-locale|='ko'] {
--color-positive: #0074d9;
- --color-negative: #2ecc40;
+ --color-negative: #3d9970;
}
.change svg {