diff --git a/components/ShareModal/PredictionCard.tsx b/components/ShareModal/PredictionCard.tsx index 7cfc28a..7f0f08e 100644 --- a/components/ShareModal/PredictionCard.tsx +++ b/components/ShareModal/PredictionCard.tsx @@ -109,21 +109,21 @@ const ShareCard = styled.div<{ $predictionResult: PredictionResult }>` height: 430px; flex-shrink: 0; color: white; - + background-color: transparent; ${(props) => { if (props.$predictionResult === 'KOREA') return css` - background: linear-gradient(180deg, #f84853 0%, #ffb1b1 100%); + //background: linear-gradient(180deg, #f84853 0%, #ffb1b1 100%); color: #f3233c; `; else if (props.$predictionResult === 'YONSEI') return css` - background: linear-gradient(180deg, #8bd5ff 0%, #445fff 100%); + //background: linear-gradient(180deg, #8bd5ff 0%, #445fff 100%); color: #2948ff; `; else return css` - background: linear-gradient(360deg, #d0b2ff 0%, #7e41ff 100%, #6e2bff 100%); + //background: linear-gradient(360deg, #d0b2ff 0%, #7e41ff 100%, #6e2bff 100%); color: #4c0eb0; `; }} diff --git a/components/ShareModal/constants.ts b/components/ShareModal/constants.ts index 606aa20..9df0f0e 100644 --- a/components/ShareModal/constants.ts +++ b/components/ShareModal/constants.ts @@ -1,4 +1,4 @@ -export const YONSEI_WIN_IMAGE_LIST = [ +export const KOREA_WIN_IMAGE_LIST = [ '/image-proxy/card/korea1.png', '/image-proxy/card/korea2.png', '/image-proxy/card/korea3.png', @@ -11,7 +11,7 @@ export const YONSEI_WIN_IMAGE_LIST = [ '/image-proxy/card/korea10.png', ]; -export const KOREA_WIN_IMAGE_LIST = [ +export const YONSEI_WIN_IMAGE_LIST = [ '/image-proxy/card/yonsei1.png', '/image-proxy/card/yonsei2.png', '/image-proxy/card/yonsei3.png',