diff options
| author | spl3g <spleefer6@yandex.ru> | 2025-10-10 13:33:47 +0300 |
|---|---|---|
| committer | spl3g <spleefer6@yandex.ru> | 2025-10-10 13:34:29 +0300 |
| commit | febc94a11b127fd9ebb4153c06c9289949ffaab9 (patch) | |
| tree | 41d88c744496f63c41bab81d50d98c7acb30f0a1 /src/ui.h | |
| parent | 549c398ea44444b8569503b43494ecd39d5a9ca9 (diff) | |
Move ui out to it's own file
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_ |
