Browse Source

Add gray alias for discord.Colour

pull/5155/head
SebbyLaw 5 years ago
committed by Rapptz
parent
commit
9b24ff4f77
  1. 8
      discord/colour.py

8
discord/colour.py

@ -202,21 +202,29 @@ class Colour:
"""A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``.""" """A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``."""
return cls(0x95a5a6) return cls(0x95a5a6)
lighter_gray = lighter_grey
@classmethod @classmethod
def dark_grey(cls): def dark_grey(cls):
"""A factory method that returns a :class:`Colour` with a value of ``0x607d8b``.""" """A factory method that returns a :class:`Colour` with a value of ``0x607d8b``."""
return cls(0x607d8b) return cls(0x607d8b)
dark_gray = dark_grey
@classmethod @classmethod
def light_grey(cls): def light_grey(cls):
"""A factory method that returns a :class:`Colour` with a value of ``0x979c9f``.""" """A factory method that returns a :class:`Colour` with a value of ``0x979c9f``."""
return cls(0x979c9f) return cls(0x979c9f)
light_gray = light_grey
@classmethod @classmethod
def darker_grey(cls): def darker_grey(cls):
"""A factory method that returns a :class:`Colour` with a value of ``0x546e7a``.""" """A factory method that returns a :class:`Colour` with a value of ``0x546e7a``."""
return cls(0x546e7a) return cls(0x546e7a)
darker_gray = darker_grey
@classmethod @classmethod
def blurple(cls): def blurple(cls):
"""A factory method that returns a :class:`Colour` with a value of ``0x7289da``.""" """A factory method that returns a :class:`Colour` with a value of ``0x7289da``."""

Loading…
Cancel
Save