blob: 2510006bbc80e14497468df5e19dfcde66ecdfb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef CONFIG_H_
#define CONFIG_H_
#include <stdint.h>
typedef struct {
float r,g,b,a;
} color_t;
static const uint32_t min_width = 500;
static const uint32_t font_size = 14;
static const color_t text_color = {0.85, 0.85, 0.85, 1.0};
static const color_t highlight_color = {0.1, 0.3, 0.7, 1.0};
static const color_t background_color = {0.1, 0.1, 0.1, 1.0};
#endif
|