1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 20:22:55 +08:00

Oops colours were wrong

This commit is contained in:
Dean Herbert 2017-05-18 21:56:19 +09:00
parent e3ae2bca6d
commit c78dfb4a13
2 changed files with 4 additions and 4 deletions

View File

@ -154,8 +154,9 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
normalColour = colours.SpinnerFill;
background.AccentColour = colours.SpinnerBackground;
normalColour = colours.SpinnerBaseColour;
background.AccentColour = normalColour;
completeColour = colours.YellowLight.Opacity(0.6f);

View File

@ -88,7 +88,6 @@ namespace osu.Game.Graphics
public readonly Color4 ChatBlue = FromHex(@"17292e");
public readonly Color4 SpinnerBackground = FromHex(@"05222b");
public readonly Color4 SpinnerFill = FromHex(@"002c3c");
public readonly Color4 SpinnerBaseColour = FromHex(@"002c3c");
}
}