style="background-color: #000000"
That's if you want your textareas to have separate colors, if you want them to all have the same, do one of the two:
Put this is your <head> tags:
<style>
textarea {
background-color: #000000;
}
</style>
or put the same thing in your css file without the <style> tags.