// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Game.Graphics.UserInterfaceV2; namespace osu.Game.Overlays.BeatmapSet.Buttons { public partial class HeaderButton : RoundedButton { public HeaderButton() { Height = 0; RelativeSizeAxes = Axes.Y; } [BackgroundDependencyLoader] private void load() { BackgroundColour = Color4Extensions.FromHex(@"094c5f"); } } }