diff options
Diffstat (limited to 'src/ui.h')
| -rw-r--r-- | src/ui.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ui.h b/src/ui.h new file mode 100644 index 0000000..f190ad2 --- /dev/null +++ b/src/ui.h @@ -0,0 +1,13 @@ +#ifndef UI_H_ +#define UI_H_ + +#include <stdbool.h> +#include <stddef.h> +#include "clay/clay.h" + +static const Clay_Color COLOR_BG = (Clay_Color){45, 53, 59, 255}; +static const Clay_Color COLOR_FG = (Clay_Color){211, 198, 170, 255}; + +void draw_ui(bool *pressed_keys, size_t keys_amount); + +#endif // UI_H_ |
