If you use a form with your website you can change the look of the Submit and Reset buttons to match the color of your site.
When you add your form, click on the submit button and switch to html view, using the button at the bottom of the page. Other editor users just switch to HTML view and find the appropriate piece of code. Add the following code to the <Input> line, putting it after the text, but just before the closing bracket.
style="border: 2px groove #000000; background-color: #F3DABB"
Your Input line should now read as follows:
<input type="submit" value="Submit" name="submit" style="border: 2px groove #000000; background-color: #F3DABB">
You can modify the Reset button in this manner as well.