CCaptcha and text color

Hi,

Is anyone know how to change the text color of the capcha letter ? (I would like blue to red) ?

Thanks

You can change a foreColor attribute in captcha settings with your colour hex code:




	public function actions() {

		return array(

			'captcha'=>array(

				'class'=>'CCaptchaAction',

				'backColor'=>0xFFFFFF,

				'transparent'=>true,

				'testLimit'=>1,

				'foreColor'=>0x348017

			),

		);

	}



Thanks a lot :)