diff options
author | Patrick 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) |
commit | 54e97f3899dd747137f972c80c78196299acb3c5 (patch) | |
tree | 18f0af264d457af06dd3505067ab594897980dea | |
parent | aaebf87cf60ce3c040eacf2403ff078b41e37331 (diff) |
text_render(): Make default fg color "dark" white
-rw-r--r-- | src/text.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |