fix default color for graphs (#468)

This commit is contained in:
Roman Konz 2024-01-04 21:46:11 +01:00 committed by GitHub
parent cee9a83b36
commit 69dd1338c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,8 +9,8 @@ void graph_init(struct graph* graph) {
graph->overrides_fill_color = false;
graph->enabled = true;
color_init(&graph->line_color, 0xcccccc);
color_init(&graph->fill_color, 0xcccccc);
color_init(&graph->line_color, 0xffcccccc);
color_init(&graph->fill_color, 0xffcccccc);
}
void graph_setup(struct graph* graph, uint32_t width) {