initial commit

This commit is contained in:
klein panic
2025-04-13 02:27:22 -04:00
commit cf50b5a377
18 changed files with 1920 additions and 0 deletions

15
include/config.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef CONFIG_H
#define CONFIG_H
/* Define CSS colors and style values */
#define WINDOW_BG_COLOR "#735290"
#define BUTTON_BG_COLOR "#D0C5FC"
#define BUTTON_TEXT_COLOR "#FFFFFF"
#define BUTTON_BORDER_RADIUS "5px"
#define BUTTON_PADDING "5px"
#define LABEL_TEXT_COLOR "#FFFFFF"
#define COMBO_BG_COLOR "#A28CC6"
#define COMBO_TEXT_COLOR "#FFFFFF"
#endif /* CONFIG_H */