模块:Db:修订间差异
MJ Hamster(留言 | 贡献) 小无编辑摘要 |
MJ Hamster(留言 | 贡献) 小无编辑摘要 |
||
| 第135行: | 第135行: | ||
if mode == 'sc' then | if mode == 'sc' then | ||
local blueGlow = ' text-shadow: 0 0 5px #3D66FF, 0 0 8px #3D66FF;' -- 定义统一的光晕样式 | |||
style = 'font-weight: bold;' | style = 'font-weight: bold;' | ||
if numValue >= 1 and numValue <= 5 then | if numValue >= 1 and numValue <= 5 then | ||
style = style .. ' color: #E00075;' | style = style .. ' color: #E00075;' | ||
| 第144行: | 第146行: | ||
style = style .. ' color: #3D66FF;' | style = style .. ' color: #3D66FF;' | ||
elseif numValue == 13 then | elseif numValue == 13 then | ||
-- NEW FIX: 13 | -- NEW FIX: 13 颜色改为橙色,光晕为 #3D66FF | ||
style = style .. ' color: | style = style .. ' color: orange;' .. blueGlow | ||
elseif numValue == 14 then | elseif numValue == 14 then | ||
-- 14 | -- NEW FIX: 14 颜色改为红色,光晕为 #3D66FF | ||
style = style .. ' color: | style = style .. ' color: red;' .. blueGlow | ||
elseif numValue == 15 then | elseif numValue == 15 then | ||
-- 15 | -- NEW FIX: 15 颜色改为紫色,光晕为 #3D66FF | ||
style = style .. ' color: | style = style .. ' color: purple;' .. blueGlow | ||
end | end | ||
elseif (mode == 'nm' or mode == 'hd' or mode == 'mx') then | elseif (mode == 'nm' or mode == 'hd' or mode == 'mx') then | ||