diff options
| author | 2021-04-30 12:14:37 +0300 | |
|---|---|---|
| committer | 2021-04-30 12:14:37 +0300 | |
| commit | 9981c0b4f2af3fb0a91c4d1f49fcf4400a8bfc6b (patch) | |
| tree | b20a8cc425d98d2f4b2ffc11ac1fe665b62b8192 /bot/constants.py | |
| parent | Merge pull request #709 from chincholikarsalil/fix-grammatical-error (diff) | |
| parent | Merge branch 'main' into Enforce-image-processing-concurrency (diff) | |
Merge pull request #597 from python-discord/Enforce-image-processing-concurrency
Move avatar commands into executors
Diffstat (limited to 'bot/constants.py')
| -rw-r--r-- | bot/constants.py | 17 | 
1 files changed, 17 insertions, 0 deletions
| diff --git a/bot/constants.py b/bot/constants.py index bcbdcba0..6cbfa8db 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -152,8 +152,25 @@ class Colours:      python_yellow = 0xFFD43B      grass_green = 0x66ff00 +    easter_like_colours = [ +        (255, 247, 0), +        (255, 255, 224), +        (0, 255, 127), +        (189, 252, 201), +        (255, 192, 203), +        (255, 160, 122), +        (181, 115, 220), +        (221, 160, 221), +        (200, 162, 200), +        (238, 130, 238), +        (135, 206, 235), +        (0, 204, 204), +        (64, 224, 208), +    ] +  class Emojis: +    cross_mark = "\u274C"      star = "\u2B50"      christmas_tree = "\U0001F384"      check = "\u2611" | 
