Add Text Colors (#67)

* Add ability to choose a color when creating text elements

* use strokeColor instead of adding a new field
This commit is contained in:
Faustino Kialungila 2020-01-03 17:29:12 +01:00 committed by Christopher Chedeau
parent 527209e740
commit f2386eb131

View File

@ -345,11 +345,14 @@ function generateDraw(element: ExcaliburElement) {
element.draw = (rc, context) => { element.draw = (rc, context) => {
const font = context.font; const font = context.font;
context.font = element.font; context.font = element.font;
const fillStyle = context.fillStyle;
context.fillStyle = element.strokeColor;
context.fillText( context.fillText(
element.text, element.text,
element.x, element.x,
element.y + element.actualBoundingBoxAscent element.y + element.actualBoundingBoxAscent
); );
context.fillStyle = fillStyle;
context.font = font; context.font = font;
}; };
} else { } else {