summaryrefslogtreecommitdiff
path: root/src/dged/display.h
diff options
context:
space:
mode:
authorAlbert Cervin <albert@acervin.com>2024-01-29 23:34:07 +0100
committerAlbert Cervin <albert@acervin.com>2024-01-30 15:04:44 +0100
commitdda591fa33ac10c433289aa3ee862c3ded41eed3 (patch)
tree9a25edbc810fd5d8fbc20f367c71ebcd81bb6026 /src/dged/display.h
parent880199011075afd4f2d9bd16c7ce42a04741b5b7 (diff)
downloaddged-dda591fa33ac10c433289aa3ee862c3ded41eed3.tar.gz
dged-dda591fa33ac10c433289aa3ee862c3ded41eed3.tar.xz
dged-dda591fa33ac10c433289aa3ee862c3ded41eed3.zip
Syntax highlight is a go
Diffstat (limited to 'src/dged/display.h')
-rw-r--r--src/dged/display.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/dged/display.h b/src/dged/display.h
index 2fc807b..aae2614 100644
--- a/src/dged/display.h
+++ b/src/dged/display.h
@@ -119,6 +119,25 @@ struct command_list *command_list_create(uint32_t capacity,
*/
void command_list_set_show_whitespace(struct command_list *list, bool show);
+enum colors {
+ Color_Black = 0,
+ Color_Red,
+ Color_Green,
+ Color_Yellow,
+ Color_Blue,
+ Color_Magenta,
+ Color_Cyan,
+ Color_White,
+ Color_BrightBlack = 8,
+ Color_BrightRed,
+ Color_BrightGreen,
+ Color_BrightYellow,
+ Color_BrightBlue,
+ Color_BrightMagenta,
+ Color_BrightCyan,
+ Color_BrightWhite
+};
+
/**
* Set background color
*