diff --git a/wideboy/systems/scene/entity_tiles.py b/wideboy/systems/scene/entity_tiles.py index ca2865b..b3200ce 100644 --- a/wideboy/systems/scene/entity_tiles.py +++ b/wideboy/systems/scene/entity_tiles.py @@ -370,7 +370,7 @@ def open(self): def cell_color_background(self): return ( CommonColors.COLOR_RED_DARK - if is_defined(self.value) and self.value < 50 + if is_defined(self.value) and self.value < 30 else CommonColors.COLOR_GREY_DARK ) @@ -378,7 +378,7 @@ def cell_color_background(self): def icon_color_background(self): return ( CommonColors.COLOR_RED - if is_defined(self.value) and self.value < 50 + if is_defined(self.value) and self.value < 30 else CommonColors.COLOR_GREY ) @@ -400,7 +400,7 @@ def open(self): def cell_color_background(self): return ( CommonColors.COLOR_RED_DARK - if is_defined(self.value) and self.value < 50 + if is_defined(self.value) and self.value < 30 else CommonColors.COLOR_GREY_DARK ) @@ -408,7 +408,7 @@ def cell_color_background(self): def icon_color_background(self): return ( CommonColors.COLOR_RED - if is_defined(self.value) and self.value < 50 + if is_defined(self.value) and self.value < 30 else CommonColors.COLOR_GREY )