aboutsummaryrefslogtreecommitdiff
path: root/src/color.h
blob: af4a45cb1da3df2e09498e6e5864f79e686ae126 (plain)
1
2
3
4
5
6
7
8
/* See LICENSE file for copyright and license details. */

#ifndef __CHERRY_COLOR_H__
#define __CHERRY_COLOR_H__

#define RGB(r, g, b) (b + (g<<8) + (r<<16))

#endif /* __CHERRY_COLOR_H__ */