How do I add colour to my text in canvas. When I tried fillStyle the text just stayed black.

link|improve this question

38% accept rate
feedback

1 Answer

up vote 0 down vote accepted

you indeed have to set fillStyle and then call fill();

  ctx.strokeStyle = 'red';
  ctx.stroke();
  ctx.fillStyle= 'blue';
  ctx.fill();
link|improve this answer
Thanks, i found out after I posted the question. Here is the finished product of my question: nebkat.com/projects/alphaworks – NebNeb Mar 29 '10 at 16:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.