aboutsummaryrefslogtreecommitdiff
path: root/host/matelight/color.h
diff options
context:
space:
mode:
Diffstat (limited to 'host/matelight/color.h')
-rw-r--r--host/matelight/color.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/host/matelight/color.h b/host/matelight/color.h
deleted file mode 100644
index 48f325b..0000000
--- a/host/matelight/color.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef __COLOR_H__
-#define __COLOR_H__
-
-#include <stdint.h>
-
-typedef struct {
- uint8_t r;
- uint8_t g;
- uint8_t b;
-} color_t;
-
-int xterm_color_index(color_t c);
-
-// gray
-#define DEFAULT_FG_COLOR 7
-// black
-#define DEFAULT_BG_COLOR 0
-
-extern color_t colortable[256];
-
-#endif//__COLOR_H__