summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-07-17 23:03:20 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-07-17 23:03:20 (EDT)
commit54e97f3899dd747137f972c80c78196299acb3c5 (patch)
tree18f0af264d457af06dd3505067ab594897980dea
parentaaebf87cf60ce3c040eacf2403ff078b41e37331 (diff)
text_render(): Make default fg color "dark" white
-rw-r--r--src/text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text.c b/src/text.c
index 1d888d8..b7b569a 100644
--- a/src/text.c
+++ b/src/text.c
@@ -104,7 +104,7 @@ text_render(struct text *text, struct font *font, png_bytepp rows)
size_t row;
size_t col;
char *parameter;
- png_color fg = {255, 255, 255};
+ png_color fg = {170, 170, 170};
png_color bg = { 0, 0, 0};
string_start = calloc(strlen(text->string) + 1, sizeof(*text->string));