Merge pull request #15 from WhoTheOOF/patch-3

Add original dark blurple
This commit is contained in:
iDutchy
2021-09-01 04:40:12 +02:00
committed by GitHub

View File

@ -324,6 +324,15 @@ class Colour:
.. versionadded:: 2.0
"""
return cls(0xFEE75C)
@classmethod
def dark_blurple(cls: Type[CT]) -> CT:
"""A factory method that returns a :class:`Colour` with a value of ``0x4E5D94``.
This is the original Dark Blurple branding.
.. versionadded:: 2.0
"""
return cls(0x4E5D94)
Color = Colour