Changing the color of the text?

Changing the color of the text?

by Javier Martínez Alfonso -
Number of replies: 1
Hi everybody

I´m changing some things in the moodle standard theme, but I don´t know how to change the text color, it´s always black!

I´ve managed to change the links color, but not "normal" text color. Does anybody know how to do it?

Thanks in advance!
Average of ratings: -
In reply to Javier Martínez Alfonso

Re: Changing the color of the text?

by Joseph Rézeau -
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers Picture of Translators

In standard theme, open styles_color.css, and add a color property to the body selector.

body {
background-color: #FAFAFA;
color: colorOfMyChoice;
}

Joseph