Remove palettes from here

This commit is contained in:
Constantin Gierczak--Galle 2023-12-15 11:31:10 +01:00
parent 1b1049e03c
commit 5ff9df9894
2 changed files with 0 additions and 37 deletions

View file

@ -1,28 +0,0 @@
import logging
from colour import Color
from typing import List, Callable, Optional, Union, Tuple
from enum import Enum
RAINBOW = [Color("red"), Color("orange"), Color("yellow"), Color("green"),
Color("blue"), Color("purple")]
magenta = Color(rgb=(214 / 255, 2 / 255, 112 / 255))
lavender = Color(rgb=(155 / 255, 79 / 255, 150 / 255))
royal = Color(rgb=(0 / 255, 56 / 255, 168 / 255))
BI = [magenta, magenta, lavender, royal, royal]
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 = []
LESBIAN = []
GAY = []
yellow = Color(rgb=(255 / 255, 244 / 255, 51 / 255))
purple = Color(rgb=(155 / 255, 89 / 255, 208 / 255))
NONBI = [yellow, Color("white"), purple, Color("black")]
blue = Color(rgb=(91 / 255, 206 / 255, 250 / 255))
pink = Color(rgb=(245 / 255, 169 / 255, 184 / 255))
TRANS = [blue, pink, Color("white"), pink, blue]

View file

@ -1,9 +0,0 @@
from colour import Color
purple = Color("#711DB0")
pink = Color("#C21292")
red = Color("#EF4040")
orange = Color("#FFA732")
SUNSET = [purple, purple, purple, pink, pink, red, orange]