I learned, that there are ways to change the color of single texts. However I\'d like to find out how to change the color of all texts of my website at one time.
I foun
Use .color instead of using .backgroundColor.
.color
.backgroundColor
document.body.style.color = "red";
This is text that will change colors!
As stated in the comments above, you should really think about using CSS like this:
body{ color:red; }