aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Drawing.Skia/PercentPlayedDrawer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Drawing.Skia/PercentPlayedDrawer.cs')
-rw-r--r--Jellyfin.Drawing.Skia/PercentPlayedDrawer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Drawing.Skia/PercentPlayedDrawer.cs b/Jellyfin.Drawing.Skia/PercentPlayedDrawer.cs
index 0d5a1d3c0..c72f295fd 100644
--- a/Jellyfin.Drawing.Skia/PercentPlayedDrawer.cs
+++ b/Jellyfin.Drawing.Skia/PercentPlayedDrawer.cs
@@ -23,7 +23,7 @@ namespace Jellyfin.Drawing.Skia
foregroundWidth *= percent;
foregroundWidth /= 100;
- paint.Color = SKColor.Parse("#FF52B54B");
+ paint.Color = SKColor.Parse("#FF00A4DC");
canvas.DrawRect(SKRect.Create(0, (float)endY - IndicatorHeight, Convert.ToInt32(foregroundWidth), (float)endY), paint);
}
}