make colors configurable

This commit is contained in:
Markus Teich
2015-11-04 01:43:13 +01:00
parent fc82374b03
commit 9ab88b5935
2 changed files with 4 additions and 1 deletions

View File

@ -8,6 +8,9 @@ static char *fontfallbacks[] = {
#define NUMFONTSCALES 30
#define FONTSZ(x) ((int)(10.0 * powf(1.1288, (x)))) /* x in [0, NUMFONTSCALES-1] */
static const char *fgcol = "#000000";
static const char *bgcol = "#FFFFFF";
/* how much screen estate is to be used at max for the content */
static float usablewidth = 0.75;
static float usableheight = 0.75;