diff --git a/src/components/Discover/TrendingTokens.tsx b/src/components/Discover/TrendingTokens.tsx index bd8a9adc4b1..3a14f94011a 100644 --- a/src/components/Discover/TrendingTokens.tsx +++ b/src/components/Discover/TrendingTokens.tsx @@ -170,7 +170,7 @@ function CategoryFilterButton({ }: { category: TrendingCategory; icon: string; - iconColor: string; + iconColor: string | { default: string; selected: string }; highlightedBackgroundColor: string; iconWidth?: number; label: string; @@ -208,7 +208,7 @@ function CategoryFilterButton({ }} > @@ -675,8 +676,8 @@ export function TrendingTokens() { category={TrendingCategory.New} label={i18n.t(t.filters.categories.NEW)} icon="􀋃" - iconColor={'#FFDA24'} - highlightedBackgroundColor={'#F9EAA1'} + iconColor={{ default: isDarkMode ? globalColors.yellow60 : '#FFBB00', selected: '#F5A200' }} + highlightedBackgroundColor={'#FFEAC2'} iconWidth={18} />