diff --git a/ui/address/tokenSelect/TokenSelectItem.tsx b/ui/address/tokenSelect/TokenSelectItem.tsx index bd9b9ea007..1d0bf2233e 100644 --- a/ui/address/tokenSelect/TokenSelectItem.tsx +++ b/ui/address/tokenSelect/TokenSelectItem.tsx @@ -62,7 +62,7 @@ const TokenSelectItem = ({ data }: Props) => { _hover={{ bgColor: useColorModeValue('blue.50', 'gray.800'), }} - color="initial" + color={ useColorModeValue('gray.900', 'gray.50') } fontSize="sm" href={ url } > diff --git a/ui/address/tokenSelect/TokenSelectMenu.tsx b/ui/address/tokenSelect/TokenSelectMenu.tsx index d247a0e3cd..8b87176a9d 100644 --- a/ui/address/tokenSelect/TokenSelectMenu.tsx +++ b/ui/address/tokenSelect/TokenSelectMenu.tsx @@ -24,7 +24,7 @@ interface Props { const TokenSelectMenu = ({ erc20sort, erc1155sort, filteredData, onInputChange, onSortClick, searchTerm }: Props) => { const searchIconColor = useColorModeValue('blackAlpha.600', 'whiteAlpha.600'); const inputBorderColor = useColorModeValue('blackAlpha.100', 'whiteAlpha.200'); - + const textColor = useColorModeValue('gray.900', 'gray.50'); const hasFilteredResult = _sumBy(Object.values(filteredData), ({ items }) => items.length) > 0; return ( @@ -68,9 +68,14 @@ const TokenSelectMenu = ({ erc20sort, erc1155sort, filteredData, onInputChange, return ( - { type } tokens ({ numPrefix }{ tokenInfo.items.length }) + { type } tokens ({ numPrefix }{ tokenInfo.items.length }) { hasSort && ( - + ) }