From 62e7e26310927d2898eca5c5036d29fd5e79fcc0 Mon Sep 17 00:00:00 2001 From: Daniel <24366082+danielgulic@users.noreply.github.com> Date: Mon, 1 Oct 2018 22:02:50 +1000 Subject: [PATCH] Add white to colours (#2853) * add white to colorresolvable typedef * add colour white --- src/util/Constants.js | 1 + src/util/Util.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/util/Constants.js b/src/util/Constants.js index c4ab29a93..32413c257 100644 --- a/src/util/Constants.js +++ b/src/util/Constants.js @@ -382,6 +382,7 @@ exports.ClientApplicationAssetTypes = { exports.Colors = { DEFAULT: 0x000000, + WHITE: 0xFFFFFF, AQUA: 0x1ABC9C, GREEN: 0x2ECC71, BLUE: 0x3498DB, diff --git a/src/util/Util.js b/src/util/Util.js index c413cdd64..119d0c7c7 100644 --- a/src/util/Util.js +++ b/src/util/Util.js @@ -245,6 +245,7 @@ class Util { * ``` * or one of the following strings: * - `DEFAULT` + * - `WHITE` * - `AQUA` * - `GREEN` * - `BLUE`