OurOS 0.1
Operating System built by McGill Students
 
Loading...
Searching...
No Matches
color.h
1#ifndef _SYS_COLOR_H
2#define _SYS_COLOR_H
3
4#include <stdint.h>
5
6#define RED 0x00FF0000
7#define GREEN 0x0000FF00
8#define BLUE 0x000000FF
9#define BLACK 0x00000000
10#define WHITE 0x00FFFFFF
11#define YELLOW 0x00FFFF00
12#define MAGENTA 0x00FF00FF
13#define CYAN 0x0000FFFF
14
15typedef uint32_t color_t;
16
17#endif