adjust map colors

This commit is contained in:
Donnie 2020-06-29 17:31:35 -04:00
parent d994673e91
commit df2659787c
2 changed files with 2 additions and 5 deletions

View File

@ -59,8 +59,8 @@ COLORS: Dict[str, QColor] = {
"orange": QColor(254, 125, 10),
"night_overlay": QColor(12, 20, 69),
"dawn_dust_overlay": QColor(46, 38, 85),
"white_transparent": QColor(255, 255, 255, 30),
"grey_transparent": QColor(150, 150, 150, 20),
"white_transparent": QColor(255, 255, 255, 35),
"grey_transparent": QColor(150, 150, 150, 30),
}
CP_SIZE = 24

View File

@ -96,9 +96,6 @@ class QMapControlPoint(QGraphicsRectItem):
@property
def pen_color(self) -> QColor:
if self.parent.game.player_country in db.BLUEFOR_FACTIONS:
return self.model.captured and CONST.COLORS["white"] or CONST.COLORS["white"]
else:
return self.model.captured and CONST.COLORS["white"] or CONST.COLORS["white"]
def openBaseMenu(self):