From 2b561fbb13399d0542d5ccc9b3f82f24a60ef6f3 Mon Sep 17 00:00:00 2001 From: terrainbuilder52 <32080764+terrainbuilder52@users.noreply.github.com> Date: Sat, 8 Feb 2020 08:36:23 -0600 Subject: [PATCH] Adjusted population color. --- game/visualizer/graphs.py | 2 +- game/visualizer/health_bar.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/game/visualizer/graphs.py b/game/visualizer/graphs.py index c8ef2d6..86deddb 100644 --- a/game/visualizer/graphs.py +++ b/game/visualizer/graphs.py @@ -22,7 +22,7 @@ def __init__(self, parser, length=500, height=300, x=200, y=100, color=(255, 255 49: { 'points': population_list, 'title': 'Population', - 'color': (0, 0, 255, 255), + 'color': (56, 168, 255, 255), }, 50: { 'points': structure_list, diff --git a/game/visualizer/health_bar.py b/game/visualizer/health_bar.py index 5bd6725..0828536 100644 --- a/game/visualizer/health_bar.py +++ b/game/visualizer/health_bar.py @@ -29,7 +29,7 @@ def __init__(self, display_size, turn_info): self.add(pop_label) self.add(struct_label) - pop_bar = cocos.draw.Line(p_start, p_end, color=(0,0,255,255), stroke_width=15) + pop_bar = cocos.draw.Line(p_start, p_end, color=(56,168,255,255), stroke_width=15) struct_bar = cocos.draw.Line(s_start, s_end, color=(255,0,0,255), stroke_width=15)