add nitro booster color
This commit is contained in:
parent
6bcc717e63
commit
803bc178c5
@ -251,6 +251,12 @@ class Colour:
|
||||
def red(cls: Type[CT]) -> CT:
|
||||
"""A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``."""
|
||||
return cls(0xe74c3c)
|
||||
|
||||
@classmethod
|
||||
def nitro_booster(cls):
|
||||
"""A factory method that returns a :class:`Colour` with a value of ``0xf47fff``.
|
||||
.. versionadded:: 1.5.1.5"""
|
||||
return cls(0xf47fff)
|
||||
|
||||
@classmethod
|
||||
def dark_red(cls: Type[CT]) -> CT:
|
||||
|
Loading…
x
Reference in New Issue
Block a user