1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 02:52:54 +08:00
osu-lazer/osu.Game/Seasonal/SeasonalUIConfig.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
859 B
C#
Raw Normal View History

2024-12-19 16:59:48 +08:00
// 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.Seasonal
2024-12-19 16:59:48 +08:00
{
/// <summary>
/// General configuration setting for seasonal event adjustments to the game.
/// </summary>
public static class SeasonalUIConfig
2024-12-19 16:59:48 +08:00
{
2024-12-20 14:32:00 +08:00
public static readonly bool ENABLED = false;
2024-12-19 16:59:48 +08:00
2024-12-20 13:21:45 +08:00
public static readonly Color4 PRIMARY_COLOUR_1 = Color4Extensions.FromHex(@"D32F2F");
2024-12-19 16:59:48 +08:00
2024-12-20 13:21:45 +08:00
public static readonly Color4 PRIMARY_COLOUR_2 = Color4Extensions.FromHex(@"388E3C");
2024-12-19 16:59:48 +08:00
2024-12-20 13:21:45 +08:00
public static readonly Color4 AMBIENT_COLOUR_1 = Color4Extensions.FromHex(@"FFFFCC");
2024-12-19 16:59:48 +08:00
2024-12-20 13:21:45 +08:00
public static readonly Color4 AMBIENT_COLOUR_2 = Color4Extensions.FromHex(@"FFE4B5");
2024-12-19 16:59:48 +08:00
}
}