Skip to content

Commit

Permalink
Adjust glow slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Oct 22, 2024
1 parent 05e2f6d commit 13fba9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions osu.Game/Overlays/Mods/ModPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using System.Collections.Generic;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Effects;
Expand Down Expand Up @@ -67,8 +66,9 @@ protected override void LoadComplete()
Content.EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Glow,
Colour = AccentColour.Opacity(0.5f),
Radius = 10,
Colour = AccentColour,
Hollow = true,
Radius = 2,
};
}
else
Expand Down

0 comments on commit 13fba9f

Please sign in to comment.