1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 10:07:18 +08:00
2024-12-19 18:08:42 +09:00

22 lines
725 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Extensions.Color4Extensions;
using osuTK.Graphics;
namespace osu.Game.Screens
{
public static class SeasonalUI
{
public static readonly bool ENABLED = true;
public static readonly Color4 PRIMARY_COLOUR_1 = Color4Extensions.FromHex("D32F2F");
public static readonly Color4 PRIMARY_COLOUR_2 = Color4Extensions.FromHex("388E3C");
public static readonly Color4 AMBIENT_COLOUR_1 = Color4Extensions.FromHex("FFC");
public static readonly Color4 AMBIENT_COLOUR_2 = Color4Extensions.FromHex("FFE4B5");
}
}