mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:07:52 +08:00
Fix dangerous buttons using different shades of pink
This commit is contained in:
parent
6358a5e210
commit
af89d69fc4
@ -82,7 +82,7 @@ namespace osu.Game.Tournament.Screens.Editors
|
||||
new TourneyButton
|
||||
{
|
||||
RelativeSizeAxes = Axes.X,
|
||||
BackgroundColour = colours.Pink3,
|
||||
BackgroundColour = colours.DangerousButtonColour,
|
||||
Text = "Clear all",
|
||||
Action = () =>
|
||||
{
|
||||
|
@ -397,5 +397,7 @@ namespace osu.Game.Graphics
|
||||
|
||||
public Color4 SpotlightColour => Green2;
|
||||
public Color4 FeaturedArtistColour => Blue2;
|
||||
|
||||
public Color4 DangerousButtonColour => Pink3;
|
||||
}
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ namespace osu.Game.Graphics.UserInterface
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(OsuColour colours)
|
||||
{
|
||||
BackgroundColour = colours.PinkDark;
|
||||
BackgroundColour = colours.DangerousButtonColour;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -65,7 +65,7 @@ namespace osu.Game.Overlays.FirstRunSetup
|
||||
{
|
||||
Anchor = Anchor.TopRight,
|
||||
Origin = Anchor.TopRight,
|
||||
BackgroundColour = colours.Pink3,
|
||||
BackgroundColour = colours.DangerousButtonColour,
|
||||
Text = FirstRunSetupOverlayStrings.ClassicDefaults,
|
||||
RelativeSizeAxes = Axes.X,
|
||||
Action = applyClassic
|
||||
|
@ -14,7 +14,7 @@ namespace osu.Game.Overlays.Settings
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(OsuColour colours)
|
||||
{
|
||||
BackgroundColour = colours.Pink3;
|
||||
BackgroundColour = colours.DangerousButtonColour;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -90,7 +90,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
|
||||
applyNewButton = new HoverableRoundedButton
|
||||
{
|
||||
Text = InputSettingsStrings.ApplyNewBinding,
|
||||
BackgroundColour = colours.Pink3,
|
||||
BackgroundColour = colours.DangerousButtonColour,
|
||||
RelativeSizeAxes = Axes.X,
|
||||
Width = 0.48f,
|
||||
Anchor = Anchor.CentreRight,
|
||||
|
Loading…
Reference in New Issue
Block a user