16 lines
405 B
C
16 lines
405 B
C
#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 */
|
|
|