[Main] Back/text color to subtle dark/light grey

This commit is contained in:
Kostas Missos
2018-05-25 00:29:41 +03:00
committed by nwert
parent 4fd6d90c7f
commit 03729bddd5
3 changed files with 52 additions and 51 deletions

View File

@@ -87,9 +87,9 @@ void gfx_con_init(gfx_con_t *con, gfx_ctxt_t *ctxt)
con->gfx_ctxt = ctxt;
con->x = 0;
con->y = 0;
con->fgcol = 0xFFFFFFFF;
con->fgcol = 0xFFCCCCCC;
con->fillbg = 0;
con->bgcol = 0xFF000000;
con->bgcol = 0xFF1B1B1B;
}
void gfx_con_setcol(gfx_con_t *con, u32 fgcol, int fillbg, u32 bgcol)