path colors
This commit is contained in:
parent
c09e78cb0e
commit
4cf135354c
1 changed files with 8 additions and 6 deletions
|
@ -6,17 +6,19 @@ from enum import Enum
|
||||||
RAINBOW = [Color("red"), Color("orange"), Color("yellow"), Color("green"),
|
RAINBOW = [Color("red"), Color("orange"), Color("yellow"), Color("green"),
|
||||||
Color("blue"), Color("purple")]
|
Color("blue"), Color("purple")]
|
||||||
|
|
||||||
magenta = Color(rgb=(214, 2, 112))
|
magenta = Color(rgb=(214 / 255, 2 / 255, 112 / 255))
|
||||||
lavender = Color(rgb=(155, 79, 150))
|
lavender = Color(rgb=(155 / 255, 79 / 255, 150 / 255))
|
||||||
royal = Color(rgb=(0, 56, 168))
|
royal = Color(rgb=(0 / 255, 56 / 255, 168 / 255))
|
||||||
BI = [magenta, magenta, lavender, royal, royal]
|
BI = [magenta, magenta, lavender, royal, royal]
|
||||||
|
|
||||||
PAN = [Color(rgb=(33, 177, 255)), Color(rgb=(255, 216, 0)), Color(rgb=(255, 33, 140))]
|
PAN = [Color(rgb=(33 / 255, 177 / 255, 255 / 255)), Color(rgb=(255 / 255, 216 /
|
||||||
|
255, 0)),
|
||||||
|
Color(rgb=(255 / 255, 33 / 255, 140 / 255))]
|
||||||
|
|
||||||
INTER = []
|
INTER = []
|
||||||
LESBIAN = []
|
LESBIAN = []
|
||||||
GAY = []
|
GAY = []
|
||||||
|
|
||||||
yellow = Color(rgb=(255, 244, 51))
|
yellow = Color(rgb=(255 / 255, 244 / 255, 51 / 255))
|
||||||
purple = Color(rgb=(155, 89, 208))
|
purple = Color(rgb=(155 / 255, 89 / 255, 208 / 255))
|
||||||
NONBI = [yellow, Color("white"), purple, Color("black")]
|
NONBI = [yellow, Color("white"), purple, Color("black")]
|
||||||
|
|
Loading…
Reference in a new issue