23 lines
580 B
Python
23 lines
580 B
Python
import logging
|
|
from colour import Color
|
|
from typing import List, Callable, Optional, Union, Tuple
|
|
from enum import Enum
|
|
|
|
# TODO: fill-in
|
|
RAINBOW = [Color("red"), Color("orange"), Color("yellow"), Color("green"),
|
|
Color("blue"), Color("purple")]
|
|
|
|
magenta = Color(rgb=(214, 2, 112))
|
|
lavender = Color(rgb=(155, 79, 150))
|
|
royal = Color(rgb=(0, 56, 168))
|
|
BI = [magenta, magenta, lavender, royal, royal]
|
|
|
|
PAN = []
|
|
|
|
INTER = []
|
|
LESBIAN = []
|
|
GAY = []
|
|
|
|
yellow = Color(rgb=(255, 244, 51))
|
|
purple = Color(rgb=(155, 89, 208))
|
|
NONBI = [yellow, Color("white"), purple, Color("black")]
|