Applications/Internet/Cyberia: Set default colors for root node

Until we have a default style sheet implemented, set the default colors
to black text on white background for the root node, so that we don't
end up with unreadable black bars everywhere.
This commit is contained in:
Alec Murphy 2025-04-11 17:23:01 -04:00
parent 603e1d15ab
commit 6a394f8a86

View file

@ -212,6 +212,8 @@ U0 @cyberia_navigate()
// background1->ctx->fill(Color(255, 255, 255)); // background1->ctx->fill(Color(255, 255, 255));
status1->SetText("Rendering page..."); status1->SetText("Rendering page...");
node_list->backgroundColor = Color(255, 255, 255);
node_list->color = Color(0, 0, 0);
@render_node_list(node_list, renderer); @render_node_list(node_list, renderer);
@window_widgets_list* append = renderer->widgets_base; @window_widgets_list* append = renderer->widgets_base;