From 78ad0eda9df0fb328dda2a4b41ec2be0e8ff5aa9 Mon Sep 17 00:00:00 2001 From: Terence Ng Date: Mon, 27 May 2024 14:13:11 +0800 Subject: [PATCH] push (#291) Co-authored-by: Den <36603049+dhriaznov@users.noreply.github.com> --- src/app/components/tokenImage/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/components/tokenImage/index.tsx b/src/app/components/tokenImage/index.tsx index e56c0f463..563b6c35e 100644 --- a/src/app/components/tokenImage/index.tsx +++ b/src/app/components/tokenImage/index.tsx @@ -31,12 +31,12 @@ const TickerIconContainer = styled.div<{ size?: number; round?: boolean }>((prop height: props.size ?? DEFAULT_SIZE, width: props.size ?? DEFAULT_SIZE, borderRadius: '50%', - backgroundColor: props.theme.colors.white_400, + backgroundColor: props.theme.colors.white_850, })); const TickerIconText = styled.h1((props) => ({ ...props.theme.typography.body_bold_m, - color: props.theme.colors.elevation0, + color: props.theme.colors.white_0, textAlign: 'center', wordBreak: 'break-all', fontSize: 11, @@ -55,7 +55,7 @@ const ProtocolIcon = styled.div<{ isSquare?: boolean }>((props) => ({ position: 'absolute', right: props.isSquare ? -9 : -11, bottom: -2, - backgroundColor: props.theme.colors.elevation1, + backgroundColor: props.theme.colors.elevation0, padding: 2, }));