Change color of owncloud slogan: "owncloud - a safe home for all your data"

Where can I change the color of owncloud slogan: “owncloud - a safe home for all your data” ?

What file / line is responsible for that?

I know how to change the text in slogan https://central.owncloud.org/t/10754 , need to change color.

Thanks

Owncloud 10.0.8

create theme app and override css of the text slogan. https://github.com/owncloud/theme-example/blob/master/core/css/styles.css

Thank you. Would you mind letting me know what line do I need to overwrite in styles.css ? There is 44 places where color can be edited, I’m not sure what is responsible for slogan color.

add this line to your css file.

#body-login footer p.info a{
	color: green;
}

It works, thanks alot