Add original dark blurple

This adds the old discord dark blurple color as a classmethod for embeds and whatever.
This commit is contained in:
Jadon 2021-08-28 17:26:46 -05:00 committed by GitHub
parent 6bcc717e63
commit cc90d312f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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