Is there a special CSS system color equivalent to the system's disabled text input background color? I know there's one for the disabled text color (GrayText), but I can't find one for the background color.
To make it more clear, I'm looking for the background color that gets set when you do something like:
<input type="text" disabled />
I don't want to restyle disabled inputs; I want to use the existing system style elsewhere.
Edit:
To be even more clear, I'm looking for the system color keyword, not the actual color. For example, to use the system's defined disabled text color, you would do this:
<span style="color: GrayText;">This text looks like disabled text in your operating system</span>
I just can't find the one for the background color.