We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2297a66 commit b6bd0c8Copy full SHA for b6bd0c8
1 file changed
discord/colour.py
@@ -338,8 +338,8 @@ def embed_background(cls: type[CT], theme: str = "dark") -> CT:
338
"""A factory method that returns a :class:`Color` corresponding to the
339
embed colors on discord clients, with a value of:
340
341
- - ``0x2F3136`` (dark)
342
- - ``0xf2f3f5`` (light)
+ - ``0x2B2D31`` (dark)
+ - ``0xEEEFF1`` (light)
343
- ``0x000000`` (amoled).
344
345
.. versionadded:: 2.0
@@ -350,8 +350,8 @@ def embed_background(cls: type[CT], theme: str = "dark") -> CT:
350
The theme color to apply, must be one of "dark", "light", or "amoled".
351
"""
352
themes_cls = {
353
- "dark": 0x2F3136,
354
- "light": 0xF2F3F5,
+ "dark": 0x2B2D31,
+ "light": 0xEEEFF1,
355
"amoled": 0x000000,
356
}
357
0 commit comments