fix box color

This commit is contained in:
NishiOwO 2025-04-14 20:21:05 +09:00
parent 976cb45c2f
commit 07ee1076df
No known key found for this signature in database
GPG Key ID: 27EF69B208EB9343

View File

@ -24,8 +24,8 @@ gf_gui_t* gf_gui_create(gf_draw_t* draw) {
gf_gui_id_t i;
gui->draw = draw;
GF_SET_COLOR(gf_gui_base_color, 32, 64, 32, 255);
GF_SET_COLOR(gf_gui_font_color, 220, 220, 220, 255);
GF_SET_COLOR(gf_gui_base_color, 48, 96, 48, 255);
GF_SET_COLOR(gf_gui_font_color, 256 - 32, 256 - 32, 256 - 32, 255);
for(i = 0; i < GF_GUI_MAX_COMPONENTS; i++) gui->area[i].type = -1;