【职业筛选】颜色修改

dev_chengFeng
gaoxin 2022-01-04 14:07:15 +08:00
parent ad8653d679
commit c07ba438a0
2 changed files with 12 additions and 7 deletions

View File

@ -1254,6 +1254,11 @@ UIColor = {
BTN_TEXT = Color.New(50/255, 50/255, 50/255, 1), BTN_TEXT = Color.New(50/255, 50/255, 50/255, 1),
PERPLE = Color.New(155/255, 20/255, 255/255, 1), PERPLE = Color.New(155/255, 20/255, 255/255, 1),
BLUE = Color.New(20/255, 128/255, 255/255, 1), BLUE = Color.New(20/255, 128/255, 255/255, 1),
PURE_RED = Color.New(1, 0, 0, 1),
PURE_GREEN = Color.New(0, 1, 0, 1),
PURE_BLUE = Color.New(0, 0, 1, 1),
PURE_YELLOW = Color.New(1, 1, 0, 1),
} }
UIColorStr = { UIColorStr = {
RED = "#e25b58", RED = "#e25b58",

View File

@ -162,13 +162,13 @@ end
local _showConfig = { local _showConfig = {
[1] = {text="眩晕", color=UIColor.YELLOW}, [1] = {text="眩晕", color=UIColor.PURE_RED},
[2] = {text="沉默", color=UIColor.BLUE}, [2] = {text="沉默", color=UIColor.PURE_RED},
[3] = {text="麻痹", color=UIColor.GRAY}, [3] = {text="麻痹", color=UIColor.PURE_RED},
[4] = {text="灼烧", color=UIColor.RED}, [4] = {text="灼烧", color=UIColor.PURE_GREEN},
[5] = {text="中毒", color=UIColor.PERPLE}, [5] = {text="中毒", color=UIColor.PURE_GREEN},
[6] = {text="追击", color=UIColor.WRITE}, [6] = {text="追击", color=UIColor.PURE_YELLOW},
[7] = {text="恢复", color=UIColor.GREEN}, [7] = {text="恢复", color=UIColor.PURE_YELLOW},
} }
local function loopFadeText(txt, highlight, data, index) local function loopFadeText(txt, highlight, data, index)
Log("loopFadeText") Log("loopFadeText")