From 67f7394918a913f3a390024b183410b991fa44bb Mon Sep 17 00:00:00 2001 From: gigabit- <49173264+TheGiga@users.noreply.github.com> Date: Sat, 18 Feb 2023 18:01:28 +0200 Subject: [PATCH] discord moment Signed-off-by: gigabit- <49173264+TheGiga@users.noreply.github.com> --- discord/colour.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/discord/colour.py b/discord/colour.py index 5d0e28c0f9..c202351859 100644 --- a/discord/colour.py +++ b/discord/colour.py @@ -338,8 +338,8 @@ def embed_background(cls: type[CT], theme: str = "dark") -> CT: """A factory method that returns a :class:`Color` corresponding to the embed colors on discord clients, with a value of: - - ``0x2F3136`` (dark) - - ``0xf2f3f5`` (light) + - ``0x2B2D31`` (dark) + - ``0xEEEFF1`` (light) - ``0x000000`` (amoled). .. versionadded:: 2.0 @@ -350,8 +350,8 @@ def embed_background(cls: type[CT], theme: str = "dark") -> CT: The theme color to apply, must be one of "dark", "light", or "amoled". """ themes_cls = { - "dark": 0x2F3136, - "light": 0xF2F3F5, + "dark": 0x2B2D31, + "light": 0xEEEFF1, "amoled": 0x000000, }