-- 所有可用颜色已配置
Config.ColorToTextColor = {
black = '~HUD_COLOUR_BLACK~', -- 黑色
white = '~HUD_COLOUR_WHITE~', -- 白色
grey = '~HUD_COLOUR_GREY~', -- 灰色
red = '~HUD_COLOUR_RED~', -- 红色
redlight = '~HUD_COLOUR_REDLIGHT~', -- 浅红色
reddark = '~HUD_COLOUR_REDDARK~', -- 深红色
blue = '~HUD_COLOUR_BLUE~', -- 蓝色
bluelight = '~HUD_COLOUR_BLUELIGHT~', -- 浅蓝色
bluedark = '~HUD_COLOUR_BLUEDARK~', -- 深蓝色
yellow = '~HUD_COLOUR_YELLOW~', -- 黄色
yellowlight = '~HUD_COLOUR_YELLOWLIGHT~', -- 浅黄色
yellowdark = '~HUD_COLOUR_YELLOWDARK~', -- 深黄色
orange = '~HUD_COLOUR_ORANGE~', -- 橙色
orangelight = '~HUD_COLOUR_ORANGELIGHT~', -- 浅橙色
orangedark = '~HUD_COLOUR_ORANGEDARK~', -- 深橙色
green = '~HUD_COLOUR_GREEN~', -- 绿色
greenlight = '~HUD_COLOUR_GREENLIGHT~', -- 浅绿色
greendark = '~HUD_COLOUR_GREENDARK~', -- 深绿色
purple = '~HUD_COLOUR_PURPLE~', -- 紫色
purplelight = '~HUD_COLOUR_PURPLELIGHT~', -- 浅紫色
purpledark = '~HUD_COLOUR_PURPLEDARK~', -- 深紫色
pink = '~HUD_COLOUR_PINK~', -- 粉色
silver = '~HUD_COLOUR_SILVER~', -- 银色
gold = '~HUD_COLOUR_GOLD~', -- 金色
brown = '~HUD_COLOUR_TREVOR_DARK~', -- 棕色
}
-- 所有可用颜色已配置
Config.GangMenuColors = {
black = {
foreground = { 255, 255, 255 }, -- 前景色:白色
background = { 0, 0, 0 }, -- 背景色:黑色
},
white = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 255, 255, 255 }, -- 背景色:白色
},
grey = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 155, 155, 155 }, -- 背景色:灰色
},
red = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 224, 50, 50 }, -- 背景色:红色
},
redlight = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 240, 153, 153 }, -- 背景色:浅红色
},
reddark = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 112, 25, 25 }, -- 背景色:深红色
},
blue = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 93, 182, 229 }, -- 背景色:蓝色
},
bluelight = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 174, 219, 242 }, -- 背景色:浅蓝色
},
bluedark = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 47, 92, 115 }, -- 背景色:深蓝色
},
yellow = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 240, 200, 80 }, -- 背景色:黄色
},
yellowlight = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 254, 235, 169 }, -- 背景色:浅黄色
},
yellowdark = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 126, 107, 41 }, -- 背景色:深黄色
},
orange = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 255, 133, 85 }, -- 背景色:橙色
},
orangelight = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 255, 194, 170 }, -- 背景色:浅橙色
},
orangedark = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 127, 66, 42 }, -- 背景色:深橙色
},
green = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 114, 204, 114 }, -- 背景色:绿色
},
greenlight = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 185, 230, 185 }, -- 背景色:浅绿色
},
greendark = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 57, 102, 57 }, -- 背景色:深绿色
},
purple = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 132, 102, 226 }, -- 背景色:紫色
},
purplelight = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 192, 179, 239 }, -- 背景色:浅紫色
},
purpledark = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 67, 57, 111 }, -- 背景色:深紫色
},
pink = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 203, 54, 148 }, -- 背景色:粉色
},
silver = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 150, 153, 161 }, -- 背景色:银色
},
gold = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 214, 181, 99 }, -- 背景色:金色
},
brown = {
foreground = { 0, 0, 0 }, -- 前景色:黑色
background = { 127, 81, 43 }, -- 背景色:棕色
},
}