diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/constants.py | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/bot/constants.py b/bot/constants.py index 4e09b448..ec8a1a4d 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -61,6 +61,7 @@ class Client(NamedTuple):  class Colours:      soft_red = 0xcd6d6d      soft_green = 0x68c290 +    bright_green = 0x01d277      dark_green = 0x1f8b4c      orange = 0xe67e22      pink = 0xcf84e0 @@ -72,6 +73,11 @@ class Emojis:      check = "\u2611" +class Lovefest: +    channel_id = int(environ.get("LOVEFEST_CHANNEL_ID", 542272993192050698)) +    role_id = int(environ.get("LOVEFEST_ROLE_ID", 542431903886606399)) + +  class Hacktoberfest(NamedTuple):      channel_id = 498804484324196362      voice_id = 514420006474219521 | 
