From 96eca8aa5351ed025a950ffbd90234bfb004afd8 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 13 May 2017 17:39:12 -0400 Subject: [PATCH] Add Colour.blurple and Colour.greyple. --- discord/colour.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/discord/colour.py b/discord/colour.py index 9f1044513..f6dc72269 100644 --- a/discord/colour.py +++ b/discord/colour.py @@ -200,5 +200,14 @@ class Colour: """A factory method that returns a :class:`Colour` with a value of ``0x546e7a``.""" return cls(0x546e7a) + @classmethod + def blurple(cls): + """A factory method that returns a :class:`Colour` with a value of ``0x7289da``.""" + return cls(0x7289da) + + @classmethod + def greyple(cls): + """A factory method that returns a :class:`Colour` with a value of ``0x99aab5``.""" + return cls(0x99aab5) Color = Colour