diff options
author | 2021-03-10 19:31:37 +0000 | |
---|---|---|
committer | 2021-03-10 19:31:37 +0000 | |
commit | 2ff509601fb97466ba6d980d226f6c0e481a1961 (patch) | |
tree | c446055d0e3dd8ef8e9f14fbb77f8381c72ccccf /bot/constants.py | |
parent | Split up complex line. (diff) |
Move colours to constants
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index b8e30a7c..5c95d9c1 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -162,6 +162,22 @@ 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: star = "\u2B50" |