Recolour RankGraphTooltip

This commit is contained in:
TheWildTree 2020-01-30 22:05:06 +01:00
parent caf76511a7
commit c050eed79b
1 changed files with 3 additions and 1 deletions

View File

@ -16,6 +16,7 @@
using osu.Game.Graphics.UserInterface;
using osu.Game.Users;
using osuTK;
using osuTK.Graphics;
namespace osu.Game.Overlays.Profile.Header.Components
{
@ -270,7 +271,8 @@ public RankGraphTooltip()
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
background.Colour = colours.GreySeafoamDark;
// To match osu-web, background and text should both be coloured using OverlayColourProvider
background.Colour = colours.Gray1;
}
public bool SetContent(object content)