sure, in style.css modify the input box colors like so:
Code:
/* Form elements */
input.button, input.post, textarea, textarea.post, select {
background-color : #FAFAFA;
color: #000;
font: normal 11px Verdana, Arial, Helvetica, sans-serif;
border-color : #5B5B5B;
border-top-color: #5B5B5B;
border-left-color: #5B5B5B;
border-right-color: #5B5B5B;
border-bottom-color: #5B5B5B;
border-top-width: 1px;
border-left-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
}
The background color and color attributes are what you want to change. I've gone ahead and changed the background to light grey and text to black for you. Just copy and paste the code over the current one.