From dea5e99ed72041354569f45b73154edb0a307758 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 18 Dec 2022 15:43:15 -0600 Subject: [PATCH] Chat list index colour --- scripts/shared/utilities.js | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/scripts/shared/utilities.js b/scripts/shared/utilities.js index 8cc187ca..2d079229 100644 --- a/scripts/shared/utilities.js +++ b/scripts/shared/utilities.js @@ -153,6 +153,7 @@ let serverColours = { vehiclePurple: "B19CD9", jobYellow: "FFFF00", npcPink: "DB7093", + chatBoxListIndex: "0099FF", }, byName: { white: "FFFFFF", @@ -185,6 +186,7 @@ let serverColours = { vehiclePurple: "960096", jobYellow: "FFFF00", adminOrange: "ED4337", + chatBoxListIndex: "0099FF", }, }, @@ -214,10 +216,10 @@ let serverColours = { businessBlue: toColour(0, 153, 255, 255), houseGreen: toColour(17, 204, 17, 255), vehiclePurple: toColour(177, 156, 217, 255), - clanOrange: toColour(255, 153, 0, 255), + chatBoxListIndex: toColour(0, 153, 255, 255), npcPink: toColour(219, 112, 147, 255), adminOrange: toColour(205, 60, 60, 255), - chatBoxListIndex: toColour(0, 153, 255, 255), + clanOrange: toColour(255, 153, 0, 255), }, byName: { white: toColour(255, 255, 255, 255), @@ -233,22 +235,9 @@ let serverColours = { lightGrey: toColour(200, 200, 200, 255), mediumGrey: toColour(150, 150, 150, 255), darkGrey: toColour(64, 64, 64, 255), - policeBlue: toColour(50, 80, 200, 255), - medicPink: toColour(219, 112, 147, 255), - firefighterRed: toColour(205, 60, 60, 255), - busDriverGreen: toColour(50, 160, 50, 255), - taxiDriverYellow: toColour(240, 230, 100, 255), - deliveryPurple: toColour(177, 156, 217, 255), - civilianWhite: toColour(200, 200, 200, 255), + softYellow: toColour(234, 198, 126, 255), burntYellow: toColour(210, 210, 0, 255), burntOrange: toColour(210, 120, 0, 255), - bankGreen: toColour(0, 150, 0, 255), - softYellow: toColour(234, 198, 126, 255), - businessBlue: toColour(0, 153, 255, 255), - houseGreen: toColour(17, 204, 17, 255), - clanOrange: toColour(255, 153, 0, 255), - npcPink: toColour(219, 112, 147, 255), - adminOrange: toColour(205, 60, 60, 255), }, };