I am looking to customize a MUI select component that I have rendered on a dark background. My goal is to make the outline and all its contents light colors, specifically grey and white.
https://i.sstatic.net/HFUBj.png
So far, I have successfully changed the outline and text contents to light colors. However, I am struggling to figure out how to adjust the colors of the down and up arrows that are clicked on to open and close the select options. If you refer to the screenshot I provided, you'll notice that the up arrow is barely visible because it's black. How can I modify the color of the arrow to be grey or white?
This is my current setup:
<Select
variant="outlined"
sx={{
width: 100,
height: 40,
marginRight: 15,
border: "1px solid darkgrey",
color: "#fff",
}}
value={currency}
onChange={(e) => setCurrency(e.target.value)}
>
<MenuItem value={"USD"}>USD</MenuItem>
<MenuItem value={"INR"}>INR</MenuItem>
</Select>