Make vehicle inline chat colour softer, easier to read

This commit is contained in:
Vortrex
2022-12-17 14:51:14 -06:00
parent 02ae2db0b2
commit 7ed0cc0e26

View File

@@ -150,7 +150,7 @@ let serverColours = {
businessBlue: "0099FF", businessBlue: "0099FF",
houseGreen: "11CC11", houseGreen: "11CC11",
clanOrange: "FF9900", clanOrange: "FF9900",
vehiclePurple: "960096", vehiclePurple: "B19CD9",
jobYellow: "FFFF00", jobYellow: "FFFF00",
npcPink: "DB7093", npcPink: "DB7093",
}, },
@@ -213,9 +213,11 @@ let serverColours = {
softYellow: toColour(234, 198, 126, 255), softYellow: toColour(234, 198, 126, 255),
businessBlue: toColour(0, 153, 255, 255), businessBlue: toColour(0, 153, 255, 255),
houseGreen: toColour(17, 204, 17, 255), houseGreen: toColour(17, 204, 17, 255),
vehiclePurple: toColour(177, 156, 217, 255),
clanOrange: toColour(255, 153, 0, 255), clanOrange: toColour(255, 153, 0, 255),
npcPink: toColour(219, 112, 147, 255), npcPink: toColour(219, 112, 147, 255),
adminOrange: toColour(205, 60, 60, 255), adminOrange: toColour(205, 60, 60, 255),
chatBoxListIndex: toColour(0, 153, 255, 255),
}, },
byName: { byName: {
white: toColour(255, 255, 255, 255), white: toColour(255, 255, 255, 255),
@@ -2340,7 +2342,7 @@ function getGameLocationFromParams(params) {
return toInteger(params); return toInteger(params);
} }
} }
return false; return -1;
} }
// =========================================================================== // ===========================================================================