Recolor buttons

This commit is contained in:
TheWildTree
2020-01-29 22:25:28 +01:00
parent 06eded16e2
commit 87521f35ed
2 changed files with 7 additions and 7 deletions

View File

@ -25,10 +25,10 @@ namespace osu.Game.Overlays.Profile.Header.Components
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
private void load(OverlayColourProvider colourProvider)
{
IdleColour = colours.GreySeafoamLight;
HoverColour = colours.GreySeafoamLight.Darken(0.2f);
IdleColour = colourProvider.Background2;
HoverColour = colourProvider.Background2.Lighten(0.2f);
Child = icon = new SpriteIcon
{