summaryrefslogtreecommitdiff
path: root/Widgets/Color.h
blob: 162261723e67863e21d833c5e6464a99267f50eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <AK/Types.h>

class Color {
public:
    Color() { }
    Color(byte r, byte g, byte b);

    dword value() const { return m_value; }

private:
    dword m_value { 0 };
};