1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 14:07:25 +08:00

Recolour RankGraphTooltip

This commit is contained in:
TheWildTree 2020-01-30 22:05:06 +01:00
parent caf76511a7
commit c050eed79b

View File

@ -16,6 +16,7 @@ using osu.Game.Graphics.Sprites;
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 @@ namespace osu.Game.Overlays.Profile.Header.Components
[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)