// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osuTK.Graphics; namespace osu.Framework.Graphics { public static class FrameworkColour { public static Color4 Blue => new Color4(40, 65, 82, 255); public static Color4 BlueDark => new Color4(22, 36, 44, 255); public static Color4 BlueGreen => new Color4(51, 88, 96, 255); public static Color4 BlueGreenDark => new Color4(29, 49, 52, 255); public static Color4 Green => new Color4(57, 110, 102, 255); public static Color4 GreenDark => new Color4(30, 57, 52, 255); public static Color4 GreenDarker => new Color4(20, 33, 35, 255); public static Color4 YellowGreen => new Color4(128, 164, 108, 255); public static Color4 YellowGreenDark => new Color4(69, 85, 57, 255); public static Color4 Yellow => new Color4(250, 221, 114, 255); public static Color4 YellowDark => new Color4(129, 112, 59, 255); } }