Colour conformity pass.

This commit is contained in:
Dean Herbert
2017-01-31 19:40:02 +09:00
parent 0d529cb636
commit a2cd829a2c
2 changed files with 4 additions and 1 deletions

View File

@ -13,6 +13,9 @@ namespace osu.Game.Graphics.UserInterface
{ {
public class OsuTextBox : TextBox public class OsuTextBox : TextBox
{ {
protected override Color4 BackgroundUnfocused => Color4.Black.Opacity(0.5f);
protected override Color4 BackgroundFocused => OsuColour.Gray(0.3f).Opacity(0.8f);
public OsuTextBox() public OsuTextBox()
{ {
Height = 40; Height = 40;

View File

@ -33,7 +33,7 @@ namespace osu.Game.Overlays
new Box { new Box {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Colour = Color4.Black, Colour = Color4.Black,
Alpha = 0.8f, Alpha = 0.6f,
}, },
new Container new Container
{ {