A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4using osuTK.Graphics;
5
6namespace osu.Framework.Graphics
7{
8 public static class FrameworkColour
9 {
10 public static Color4 Blue => new Color4(40, 65, 82, 255);
11 public static Color4 BlueDark => new Color4(22, 36, 44, 255);
12
13 public static Color4 BlueGreen => new Color4(51, 88, 96, 255);
14 public static Color4 BlueGreenDark => new Color4(29, 49, 52, 255);
15
16 public static Color4 Green => new Color4(57, 110, 102, 255);
17 public static Color4 GreenDark => new Color4(30, 57, 52, 255);
18 public static Color4 GreenDarker => new Color4(20, 33, 35, 255);
19
20 public static Color4 YellowGreen => new Color4(128, 164, 108, 255);
21 public static Color4 YellowGreenDark => new Color4(69, 85, 57, 255);
22
23 public static Color4 Yellow => new Color4(250, 221, 114, 255);
24 public static Color4 YellowDark => new Color4(129, 112, 59, 255);
25 }
26}