From 976dc1a4ac140cf16b474ac8b4515aab6bad85ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=A2=E1=84=91=E1=85=B3=E1=86=AF=20=E1=84=82?= =?UTF-8?q?=E1=85=A9=E1=84=90=E1=85=B3=E1=84=87=E1=85=AE=E1=86=A8?= Date: Sun, 9 Jun 2019 00:48:43 +0900 Subject: [PATCH] Fix: HistoryText color --- src/game/lib/text/history_text.js | 6 +++--- src/game/result/record_board.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/game/lib/text/history_text.js b/src/game/lib/text/history_text.js index c72f3f9..3dfb878 100644 --- a/src/game/lib/text/history_text.js +++ b/src/game/lib/text/history_text.js @@ -28,9 +28,9 @@ HistoryText.prototype.makeRecordText = function(x, y) { HistoryText.prototype.resetText = function(text) { text.text = ""; - text.fill = "#ffffcc"; - text.stroke = "#888888"; - text.strokeThickness = 2; + text.fill = "#ffffaa"; + // text.stroke = "#888888"; + // text.strokeThickness = 2; }; HistoryText.prototype.reset = function() { diff --git a/src/game/result/record_board.js b/src/game/result/record_board.js index e4f59d6..f2d9602 100644 --- a/src/game/result/record_board.js +++ b/src/game/result/record_board.js @@ -20,7 +20,7 @@ RecordBoard.prototype.printRecordBoardHeader = function() { bar.beginFill(0x444444); bar.drawRect(0, posY, game.world.width, RecordBoard.HEADER_BAR_HEIGHT_PX); - var style = { font: "32px Arial", fill: "#ffc", align: "left", boundsAlignH: "center", boundsAlignV: "middle" }; + var style = { font: "32px Arial", fill: "#ffa", align: "left", boundsAlignH: "center", boundsAlignV: "middle" }; this.printHeader(posX, posY, "최근의 내 기록", style); posX = 285;