aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Drawing.Skia/UnplayedCountIndicator.cs
diff options
context:
space:
mode:
authorBill Thornton <billt2006@gmail.com>2019-03-04 22:36:23 -0500
committerBill Thornton <billt2006@gmail.com>2019-03-04 22:36:23 -0500
commit41df94115f2a475628b07aec351a381335e8f8a4 (patch)
treedf8026dd475afe6009a1f240a852af42dfe83d19 /Jellyfin.Drawing.Skia/UnplayedCountIndicator.cs
parentaba22b92bc01659f80159bf3e2624aa5a30e1399 (diff)
Update image overlays to use Jellyfin blue
Diffstat (limited to 'Jellyfin.Drawing.Skia/UnplayedCountIndicator.cs')
-rw-r--r--Jellyfin.Drawing.Skia/UnplayedCountIndicator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Drawing.Skia/UnplayedCountIndicator.cs b/Jellyfin.Drawing.Skia/UnplayedCountIndicator.cs
index ba712bff77..dbf935f4e7 100644
--- a/Jellyfin.Drawing.Skia/UnplayedCountIndicator.cs
+++ b/Jellyfin.Drawing.Skia/UnplayedCountIndicator.cs
@@ -15,7 +15,7 @@ namespace Jellyfin.Drawing.Skia
using (var paint = new SKPaint())
{
- paint.Color = SKColor.Parse("#CC52B54B");
+ paint.Color = SKColor.Parse("#CC00A4DC");
paint.Style = SKPaintStyle.Fill;
canvas.DrawCircle((float)x, OffsetFromTopRightCorner, 20, paint);
}