From 34464d00aa3ca955ed7cfbb315979539da987813 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Sun, 14 Apr 2024 19:44:10 +0200 Subject: [PATCH] change green --- features/prices/components/Price/Price.tsx | 2 +- features/prices/components/Price/PriceChange.module.css | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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 {