diff --git a/src/index.tsx b/src/index.tsx index 49f097b05..3c2467e11 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -111,6 +111,7 @@ function newElement( y: number, strokeColor: string, backgroundColor: string, + textColor: string, width = 0, height = 0 ) { @@ -123,6 +124,7 @@ function newElement( isSelected: false, strokeColor: strokeColor, backgroundColor: backgroundColor, + textColor: textColor, draw(rc: RoughCanvas, context: CanvasRenderingContext2D) {} }; return element; @@ -345,6 +347,7 @@ function generateDraw(element: ExcaliburElement) { element.draw = (rc, context) => { const font = context.font; context.font = element.font; + context.fillStyle = element.textColor; context.fillText( element.text, element.x, @@ -415,6 +418,7 @@ type AppState = { exportPadding: number; currentItemStrokeColor: string; currentItemBackgroundColor: string; + textColor: string; viewBackgroundColor: string; }; @@ -457,6 +461,7 @@ class App extends React.Component<{}, AppState> { exportPadding: 10, currentItemStrokeColor: "#000000", currentItemBackgroundColor: "#ffffff", + textColor: "#000000", viewBackgroundColor: "#ffffff" }; @@ -582,7 +587,8 @@ class App extends React.Component<{}, AppState> { x, y, this.state.currentItemStrokeColor, - this.state.currentItemBackgroundColor + this.state.currentItemBackgroundColor, + this.state.textColor ); let isDraggingElements = false; const cursorStyle = document.documentElement.style.cursor; @@ -764,6 +770,16 @@ class App extends React.Component<{}, AppState> { /> Shape Background +
Export