herbe/config.h

17 lines
558 B
C
Raw Normal View History

const static char *background_color = "#3e3e3e";
const static char *border_color = "#ececec";
2020-07-24 13:51:07 +02:00
2020-07-29 19:39:15 +02:00
const static char *font_style = "Inconsolata:style=Medium:size=15";
const static char *font_color = "#ececec";
2020-07-29 19:39:15 +02:00
const static unsigned short text_padding = 10;
2020-07-24 13:51:07 +02:00
2020-07-29 19:39:15 +02:00
const static unsigned short width = 300;
const static unsigned short border_size = 2;
const static unsigned short pos_x = 40;
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;
2020-07-29 19:39:15 +02:00
const static unsigned short duration = 5;