feat(console): add background drawing for console

This commit is contained in:
fallenoak 2023-04-08 23:10:53 -05:00
parent 43f6d1f3cd
commit 134d85bce6
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 76 additions and 1 deletions

17
src/console/Types.hpp Normal file
View file

@ -0,0 +1,17 @@
#ifndef CONSOLE_TYPES_HPP
#define CONSOLE_TYPES_HPP
enum COLOR_T {
DEFAULT_COLOR,
INPUT_COLOR,
ECHO_COLOR,
ERROR_COLOR,
WARNING_COLOR,
GLOBAL_COLOR,
ADMIN_COLOR,
HIGHLIGHT_COLOR,
BACKGROUND_COLOR,
NUM_COLORTYPES,
};
#endif