Is there a way to customize the color of the TextField frame? It always shows up as black, making it hard to use in dark mode. I am looking to change the color of both the label and the input line.
return (
<div
align="center"
id="rl-signup"
className="background h-screen w-screen grid-flow-row auto-rows-auto"
>
<TextField
className="m-auto mb-4 custom-color"
id="signup-email"
label="Email"
placeholder="<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="84e7e5e3e5f0e5fdc4f6e1e8edeaefaae7ebe9">[email protected]</a>"
helperText="Your organization is ReLink"
onChange={(e) => setEmail(e.target.value)}
variant="standard"
required
/>
</div>
);
I'm wondering what steps need to be taken to personalize the TextField colors, similar to this image: