aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/UI/ThemeColor.cs
blob: c5cfb14743344d26af39328c4addd1e92f91b255 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Ryujinx.HLE.UI
{
    public readonly struct ThemeColor
    {
        public float A { get; }
        public float R { get; }
        public float G { get; }
        public float B { get; }

        public ThemeColor(float a, float r, float g, float b)
        {
            A = a;
            R = r;
            G = g;
            B = b;
        }
    }
}