remove temporary alias

This commit is contained in:
Sadie Dotzler 2022-04-10 22:04:45 -07:00
parent 35f5e6eec9
commit 29f771caec

View file

@ -81,7 +81,6 @@ class ColorProfile:
result += '\033[0m' result += '\033[0m'
return result return result
_C = ColorProfile # for convenience, must remove
PRESETS: dict[str, ColorProfile] = { PRESETS: dict[str, ColorProfile] = {
'rainbow': ColorProfile([ 'rainbow': ColorProfile([
'#E50000', '#E50000',
@ -160,19 +159,19 @@ PRESETS: dict[str, ColorProfile] = {
# below sourced from https://www.flagcolorcodes.com/flags/pride # below sourced from https://www.flagcolorcodes.com/flags/pride
# goto f"https://www.flagcolorcodes.com/{preset}" for info # goto f"https://www.flagcolorcodes.com/{preset}" for info
# todo: sane sorting # todo: sane sorting
'autosexual': _C([ 'autosexual': ColorProfile([
'#99D9EA', '#99D9EA',
'#7F7F7F' '#7F7F7F'
]), ]),
'intergender': _C([ 'intergender': ColorProfile([
# todo: implement weighted spacing # todo: use weighted spacing
'#900DC2', '#900DC2',
'#900DC2', '#900DC2',
'#FFE54F', '#FFE54F',
'#900DC2', '#900DC2',
'#900DC2', '#900DC2',
]), ]),
'greygender': _C([ 'greygender': ColorProfile([
'#B3B3B3', '#B3B3B3',
'#B3B3B3', '#B3B3B3',
'#FFFFFF', '#FFFFFF',
@ -182,14 +181,14 @@ PRESETS: dict[str, ColorProfile] = {
'#535353', '#535353',
'#535353', '#535353',
]), ]),
'akiosexual': _C([ 'akiosexual': ColorProfile([
'#F9485E', '#F9485E',
'#FEA06A', '#FEA06A',
'#FEF44C', '#FEF44C',
'#FFFFFF', '#FFFFFF',
'#000000', '#000000',
]), ]),
'transmasculine': _C([ 'transmasculine': ColorProfile([
'#FF8ABD', '#FF8ABD',
'#CDF5FE', '#CDF5FE',
'#9AEBFF', '#9AEBFF',
@ -198,7 +197,7 @@ PRESETS: dict[str, ColorProfile] = {
'#CDF5FE', '#CDF5FE',
'#FF8ABD', '#FF8ABD',
]), ]),
'demifaun': _C([ 'demifaun': ColorProfile([
'#7F7F7F', '#7F7F7F',
'#7F7F7F', '#7F7F7F',
'#C6C6C6', '#C6C6C6',
@ -213,26 +212,26 @@ PRESETS: dict[str, ColorProfile] = {
'#7F7F7F', '#7F7F7F',
'#7F7F7F', '#7F7F7F',
]), ]),
'neutrois': _C([ 'neutrois': ColorProfile([
'#FFFFFF', '#FFFFFF',
'#1F9F00', '#1F9F00',
'#000000' '#000000'
]), ]),
'biromantic alt 2': _C([ 'biromantic alt 2': ColorProfile([
'#8869A5', '#8869A5',
'#D8A7D8', '#D8A7D8',
'#FFFFFF', '#FFFFFF',
'#FDB18D', '#FDB18D',
'#151638', '#151638',
]), ]),
'biromantic alt 2': _C([ 'biromantic alt 2': ColorProfile([
'#740194', '#740194',
'#AEB1AA', '#AEB1AA',
'#FFFFFF', '#FFFFFF',
'#AEB1AA', '#AEB1AA',
'#740194', '#740194',
]), ]),
'autoromantic': _C([ # symbol interpreted 'autoromantic': ColorProfile([ # symbol interpreted
'#99D9EA', '#99D9EA',
'#99D9EA', '#99D9EA',
'#99D9EA', '#99D9EA',
@ -249,7 +248,7 @@ PRESETS: dict[str, ColorProfile] = {
'#7F7F7F', '#7F7F7F',
]), ]),
# i didn't expect this one to work. cool! # i didn't expect this one to work. cool!
'boyflux alt 2': _C([ 'boyflux alt 2': ColorProfile([
'#E48AE4', '#E48AE4',
'#9A81B4', '#9A81B4',
'#55BFAB', '#55BFAB',