mirror of
https://github.com/ppy/osu.git
synced 2024-11-19 18:42:54 +08:00
18 lines
727 B
C#
18 lines
727 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
namespace osu.Game.Graphics
|
|
{
|
|
public class StreamColour
|
|
{
|
|
public static readonly Color4 STABLE = new Color4(102, 204, 255, 255);
|
|
public static readonly Color4 STABLEFALLBACK = new Color4(34, 153, 187, 255);
|
|
public static readonly Color4 BETA = new Color4(255, 221, 85, 255);
|
|
public static readonly Color4 CUTTINGEDGE = new Color4(238, 170, 0, 255);
|
|
public static readonly Color4 LAZER = new Color4(237, 18, 33, 255);
|
|
public static readonly Color4 WEB = new Color4(136, 102, 238, 255);
|
|
}
|
|
}
|