From 4f55e2909405b9608eedd1d445cf95d580ba8fdb Mon Sep 17 00:00:00 2001 From: Bsian Date: Tue, 21 Apr 2020 18:53:12 +0100 Subject: [PATCH] Fix hex parsing --- src/class/Util.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/class/Util.ts b/src/class/Util.ts index f31a4ca..10a0702 100644 --- a/src/class/Util.ts +++ b/src/class/Util.ts @@ -119,11 +119,7 @@ export default class Util { } public decimalToHex(int: number): string { - const red = (int && 0x0000ff) << 16; - const green = int && 0x00ff00; - const blue = (int && 0xff0000) >>> 16; - const number = red | green | blue; - const asHex = number.toString(16); - return '#000000'.substring(0, 7 - asHex.length) + asHex; + const hex = int.toString(16); + return '#000000'.substring(0, 7 - hex.length) + hex; } }