does anybody know how can I change the color of Table and selection button in web3 uikit ?
You can use styled components to override the default components (Table, etc.).
import styled from 'styled-components';
const NewTable = styled(Table)`
// CSS
`;
<NewTable ...> // instead of <Table>