aboutsummaryrefslogtreecommitdiff
path: root/mons_3d/include/color.h
blob: 85b68c0647964af3ee9406ff89805bda38dbd5b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef MONS_COLOR_H
#define MONS_COLOR_H

#include "mons_math/vec4.h"

#define MONS_COLOR_BLACK (mons_vec4){0,0,0,1}
#define MONS_COLOR_WHITE MONS_VEC4_ONE
#define MONS_COLOR_RED (mons_vec4){1,0,0,1}
#define MONS_COLOR_GREEN (mons_vec4){0,1,0,1}
#define MONS_COLOR_BLUE (mons_vec4){0,0,1,1}

#endif