aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/exts/evergreen/conversationstarters.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bot/exts/evergreen/conversationstarters.py b/bot/exts/evergreen/conversationstarters.py
index 8a07eea2..179fe478 100644
--- a/bot/exts/evergreen/conversationstarters.py
+++ b/bot/exts/evergreen/conversationstarters.py
@@ -2,7 +2,7 @@ import json
import random
from pathlib import Path
-from discord import Embed
+from discord import Color, Embed
from discord.ext import commands
from bot.constants import WHITELISTED_CHANNELS
@@ -55,7 +55,9 @@ class ConvoStarters(commands.Cog):
description=(
"No topics found for this Python channel. You can suggest new ideas for topics "
"[here](https://github.com/python-discord/seasonalbot/issues/426)!"
- ))
+ ),
+ color=Color.blurple
+ )
await ctx.send(embed=embed)