diff --git a/scripts/result.lua b/scripts/result.lua index cce7308..5add94c 100644 --- a/scripts/result.lua +++ b/scripts/result.lua @@ -142,11 +142,11 @@ function drawTimingBar(y, value, max, type) gfx.BeginPath(); if type == 'crit' then - gfx.FillColor(253, 243, 24, 255); + gfx.FillColor(255, 255, 84, 255); elseif type == 'early' then - gfx.FillColor(215, 48, 182, 255); + gfx.FillColor(255, 16, 94, 255); elseif type == 'late' then - gfx.FillColor(46, 211, 241, 255); + gfx.FillColor(16, 225, 255, 255); end gfx.Rect(rightPanelX + 696, rightPanelY + y, 293 * (value / max), 8);