herbe/config.h

17 lines
543 B
C
Raw Normal View History

2020-07-29 15:09:34 +02:00
const static char *background_color = "#FFFFFF";
const static char *border_color = "#FF0000";
2020-07-24 13:51:07 +02:00
const static char *font_style = "Inconsolata:style=Medium:size=13";
2020-07-29 15:09:34 +02:00
const static char *font_color = "#00FF00";
2020-07-24 13:51:07 +02:00
2020-07-29 15:09:34 +02:00
const static unsigned short width = 325;
const static unsigned short height = 50;
const static unsigned short border_size = 5;
const static unsigned short pos_x = 50;
const static unsigned short pos_y = 50;
2020-07-24 13:51:07 +02:00
2020-07-29 15:09:34 +02:00
enum corners { top_left, top_right, down_right, down_left };
enum corners corner = top_right;
const static short duration = 5;