I am currently struggling to locate the exact definition of this border color. After inspecting the dom, I cannot seem to find any border style within the input component or its pseudo elements...
My main goal is to slightly lighten the color of the input border to better match my theme's disabled color.
Below is the code I have utilized and the corresponding render:
<OutlinedInput
size='small'
disabled={disabled}
value={value}
endAdornment={<InputAdornment position="end">{ctx.user.currency.short}</InputAdornment>}
inputProps={{ style: { paddingBottom: 4, } }}
style={{ fontWeight: 700, fontSize: 18 }}
{...props}
/>
I attempted using <TextField />
as well, but encountered the same issue. Could you possibly assist me with this problem?