无编辑摘要
无编辑摘要
第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 颜色换成和 11/12 一致 (#3D66FF),并加上 #BECCFF 光晕
             -- NEW FIX: 13 颜色改为橙色,光晕为 #3D66FF
             style = style .. ' color: #3D66FF; text-shadow: 0 0 5px #BECCFF, 0 0 8px #BECCFF;'
             style = style .. ' color: orange;' .. blueGlow
         elseif numValue == 14 then
         elseif numValue == 14 then
             -- 14: 白色,#3D66FF 光晕
             -- NEW FIX: 14 颜色改为红色,光晕为 #3D66FF
             style = style .. ' color: white; text-shadow: 0 0 5px #3D66FF, 0 0 8px #3D66FF;'
             style = style .. ' color: red;' .. blueGlow
         elseif numValue == 15 then
         elseif numValue == 15 then
             -- 15: 黄色,#3D66FF 光晕
             -- NEW FIX: 15 颜色改为紫色,光晕为 #3D66FF
             style = style .. ' color: yellow; text-shadow: 0 0 5px #3D66FF, 0 0 8px #3D66FF;'
             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