• Using forms with TextInput(using contrast) and TextArea components together
<><FormControl><FormControl.Label>Name</FormControl.Label><TextInputblockcontrast/></FormControl><FormControl><FormControl.Label>Name</FormControl.Label><TextInputblockcontrast/></FormControl><FormControl><FormControl.Label>About</FormControl.Label><Textareablock/></FormControl></>
• result in diferents background colors

• actually the way to fix
<FormControl><FormControl.Label>About</FormControl.Label><Textareablocksx={{backgroundColor: 'canvas.inset'}}/> 👈
</FormControl>• Maybe a better way introduced in this pr #3484
<FormControl><FormControl.Label>About</FormControl.Label><Textareablockcontrast/> 👈/* using contrast instead sx * /
</FormControl>
• Using forms with TextInput(using contrast) and TextArea components together
• result in diferents background colors
• actually the way to fix
• Maybe a better way introduced in this pr #3484