aboutsummaryrefslogtreecommitdiff
path: root/host/matelight/color.h
diff options
context:
space:
mode:
authorjaseg <jaseg@jaseg.net>2014-01-03 16:40:44 +0100
committerjaseg <jaseg@jaseg.net>2014-01-03 16:40:44 +0100
commitd27f9ecf7ea92b702df128f856c1063aa91c51f2 (patch)
tree1dc2b1ff871e28966aceb7a6bf7da8f190a6cd24 /host/matelight/color.h
parent9ef5c135e894b2da95940e2556f4df9ce2205552 (diff)
downloadmatelight-d27f9ecf7ea92b702df128f856c1063aa91c51f2.tar.gz
matelight-d27f9ecf7ea92b702df128f856c1063aa91c51f2.tar.bz2
matelight-d27f9ecf7ea92b702df128f856c1063aa91c51f2.zip
Maybe gif-lib wasn't too bright an idea...
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__