Add line lightness column

This commit is contained in:
DarkPhoenix
2019-08-06 15:13:35 +03:00
parent e14d3d7214
commit e3ac9a7722
9 changed files with 113 additions and 31 deletions

View File

@@ -139,8 +139,9 @@ class TargetResistMode(IntEnum):
hull = autoId()
weightedAverage = autoId()
@unique
class Color(IntEnum):
class GraphColor(IntEnum):
red = autoId()
green = autoId()
blue = autoId()
@@ -149,3 +150,10 @@ class Color(IntEnum):
magenta = autoId()
orange = autoId()
purple = autoId()
@unique
class GraphLightness(IntEnum):
normal = autoId()
dark = autoId()
bright = autoId()