Skip to Content

HUD Colors

HUD colors are predefined colour values used throughout the GTA V interface. Use these IDs with natives like ReplaceHudColour, GetHudColour, and notification formatting.

Quick Usage

-- Get HUD colour RGBA values local r, g, b, a = GetHudColour(6) -- Red print(r, g, b, a) -- Replace a HUD colour ReplaceHudColour(6, 0, 255, 0, 255) -- Replace red with green
// JavaScript equivalent const [r, g, b, a] = GetHudColour(6); console.log(r, g, b, a); ReplaceHudColour(6, 0, 255, 0, 255);

All HUD Colors

158 entries
IDNameColorRGBA
HUD_COLOUR_PURE_WHITE#FFFFFF255255255255
HUD_COLOUR_WHITE#F0F0F0240240240255
HUD_COLOUR_BLACK#0A0A0A101010255
HUD_COLOUR_GREY#6E6E6E110110110255
HUD_COLOUR_GREYLIGHT#B2B2B2178178178255
HUD_COLOUR_GREYDARK#3B3B3B595959255
HUD_COLOUR_RED#E032322245050255
HUD_COLOUR_REDLIGHT#FF6464255100100255
HUD_COLOUR_REDDARK#A0000016000255
HUD_COLOUR_BLUE#2D7FDE45127222255
HUD_COLOUR_BLUELIGHT#69B4FF105180255255
HUD_COLOUR_BLUEDARK#0A2D61104597255
HUD_COLOUR_YELLOW#FFFF002552550255
HUD_COLOUR_YELLOWLIGHT#FFFF96255255150255
HUD_COLOUR_YELLOWDARK#CCC8002042000255
HUD_COLOUR_ORANGE#FF8C3225514050255
HUD_COLOUR_ORANGELIGHT#FFB464255180100255
HUD_COLOUR_ORANGEDARK#CC64002041000255
HUD_COLOUR_GREEN#32B4325018050255
HUD_COLOUR_GREENLIGHT#96FF96150255150255
HUD_COLOUR_GREENDARK#00640A010010255
HUD_COLOUR_PURPLE#B450DE18080222255
HUD_COLOUR_PURPLELIGHT#D296FF210150255255
HUD_COLOUR_PURPLEDARK#6E00A01100160255
HUD_COLOUR_PINK#FF82B4255130180255
HUD_COLOUR_RADAR_HEALTH#B4FF001802550255
HUD_COLOUR_RADAR_ARMOUR#6496C8100150200255
HUD_COLOUR_RADAR_DAMAGE#C8000020000255
HUD_COLOUR_NET_PLAYER1#C8A064200160100255
HUD_COLOUR_NET_PLAYER2#78C8B4120200180255
HUD_COLOUR_NET_PLAYER3#C8DC82200220130255
HUD_COLOUR_NET_PLAYER4#DC9696220150150255
HUD_COLOUR_NET_PLAYER5#C8C8C8200200200255
HUD_COLOUR_NET_PLAYER6#E6D2AA230210170255
HUD_COLOUR_NET_PLAYER7#78A0C8120160200255
HUD_COLOUR_NET_PLAYER8#F0D2AA240210170255
HUD_COLOUR_NET_PLAYER9#8CC8DC140200220255
HUD_COLOUR_NET_PLAYER10#B4F0B4180240180255
HUD_COLOUR_NET_PLAYER11#F0C8AA240200170255
HUD_COLOUR_NET_PLAYER12#A0E6F0160230240255
HUD_COLOUR_NET_PLAYER13#C8B4E6200180230255
HUD_COLOUR_NET_PLAYER14#F0A0C8240160200255
HUD_COLOUR_NET_PLAYER15#C8E6B4200230180255
HUD_COLOUR_NET_PLAYER16#F0DCB4240220180255
HUD_COLOUR_NET_PLAYER17#C8D2F0200210240255
HUD_COLOUR_NET_PLAYER18#B4B4E6180180230255
HUD_COLOUR_NET_PLAYER19#F0B4B4240180180255
HUD_COLOUR_NET_PLAYER20#C8F0D2200240210255
HUD_COLOUR_NET_PLAYER21#C8B4DC200180220255
HUD_COLOUR_NET_PLAYER22#DCF0B4220240180255
Page 1 of 4