File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -338,8 +338,8 @@ def embed_background(cls: type[CT], theme: str = "dark") -> CT:
338
338
"""A factory method that returns a :class:`Color` corresponding to the
339
339
embed colors on discord clients, with a value of:
340
340
341
- - ``0x2F3136 `` (dark)
342
- - ``0xf2f3f5 `` (light)
341
+ - ``0x2B2D31 `` (dark)
342
+ - ``0xEEEFF1 `` (light)
343
343
- ``0x000000`` (amoled).
344
344
345
345
.. versionadded:: 2.0
@@ -350,8 +350,8 @@ def embed_background(cls: type[CT], theme: str = "dark") -> CT:
350
350
The theme color to apply, must be one of "dark", "light", or "amoled".
351
351
"""
352
352
themes_cls = {
353
- "dark" : 0x2F3136 ,
354
- "light" : 0xF2F3F5 ,
353
+ "dark" : 0x2B2D31 ,
354
+ "light" : 0xEEEFF1 ,
355
355
"amoled" : 0x000000 ,
356
356
}
357
357
You can’t perform that action at this time.
0 commit comments