add a color
This commit is contained in:
@ -336,6 +336,13 @@ class Colour:
|
||||
"""A factory method that returns a :class:`Colour` with a value of ``0xff7043``."""
|
||||
return cls(0xff7043)
|
||||
|
||||
@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 rust(cls):
|
||||
"""A factory method that returns a :class:`Colour` with a value of ``0xa83c09``."""
|
||||
|
Reference in New Issue
Block a user