Browse Source

Add discord.Colour classmethod dark_theme

pull/5803/head
BluePhoenixGame 5 years ago
committed by GitHub
parent
commit
4b18238ade
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      discord/colour.py

9
discord/colour.py

@ -235,4 +235,13 @@ class Colour:
"""A factory method that returns a :class:`Colour` with a value of ``0x99aab5``.""" """A factory method that returns a :class:`Colour` with a value of ``0x99aab5``."""
return cls(0x99aab5) return cls(0x99aab5)
@classmethod
def dark_theme(cls):
"""A factory method that returns a :class:'Colour' with a value of ``0x36393F``.
Will appear transparent on Discord's dark theme and be the text colour on Discord's light theme.
.. versionadded:: 1.5
"""
return cls(0x36393F)
Color = Colour Color = Colour

Loading…
Cancel
Save