Add barebones pride flags
This commit is contained in:
parent
ed7e2e74bb
commit
bf80cf2794
1 changed files with 15 additions and 0 deletions
15
pyjecteur/homonerie.py
Normal file
15
pyjecteur/homonerie.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
import logging
|
||||
from colour import Color
|
||||
from typing import List, Callable, Optional, Union, Tuple
|
||||
from enum import Enum
|
||||
|
||||
# TODO: fill-in
|
||||
magenta = Color(rgb=(214, 2, 112))
|
||||
lavender = Color(rgb=(155, 79, 150))
|
||||
royal = Color(rgb=(0, 56, 168))
|
||||
RAINBOW = []
|
||||
BI = [magenta, magenta, lavender, royal, royal]
|
||||
INTER = []
|
||||
LESBIAN = []
|
||||
GAY = []
|
||||
NONBI = []
|
Loading…
Reference in a new issue