mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
colors = {
|
|
'DEFAULT': 0x000000,
|
|
'WHITE': 0xFFFFFF,
|
|
'AQUA': 0x1ABC9C,
|
|
'GREEN': 0x2ECC71,
|
|
'BLUE': 0x3498DB,
|
|
'PURPLE': 0x9B59B6,
|
|
'LUMINOUS_VIVID_PINK': 0xE91E63,
|
|
'GOLD': 0xF1C40F,
|
|
'ORANGE': 0xE67E22,
|
|
'RED': 0xE74C3C,
|
|
'GREY': 0x95A5A6,
|
|
'NAVY': 0x34495E,
|
|
'DARK_AQUA': 0x11806A,
|
|
'DARK_GREEN': 0x1F8B4C,
|
|
'DARK_BLUE': 0x206694,
|
|
'DARK_PURPLE': 0x71368A,
|
|
'DARK_VIVID_PINK': 0xAD1457,
|
|
'DARK_GOLD': 0xC27C0E,
|
|
'DARK_ORANGE': 0xA84300,
|
|
'DARK_RED': 0x992D22,
|
|
'DARK_GREY': 0x979C9F,
|
|
'DARKER_GREY': 0x7F8C8D,
|
|
'LIGHT_GREY': 0xBCC0C0,
|
|
'DARK_NAVY': 0x2C3E50,
|
|
'BLURPLE': 0x7289DA,
|
|
'GREYPLE': 0x99AAB5,
|
|
'DARK_BUT_NOT_BLACK': 0x2C2F33,
|
|
'NOT_QUITE_BLACK': 0x23272A,
|
|
'CRIMSON': 0xDC143C,
|
|
'HOT_PINK': 0xFF69B4,
|
|
'DEEP_PINK': 0xFF69B4,
|
|
'MAGENTA': 0xFF00FF,
|
|
'VIOLET': 0xEE82EE,
|
|
'TEAL': 0x008080,
|
|
'MIDNIGHT_BLUE': 0x191970,
|
|
'MISTY_ROSE': 0xFFE4E1,
|
|
'SEA_GREEN': 0x2E8B57,
|
|
'MEDIUM_VIOLET_RED': 0xC71585,
|
|
}
|
|
|
|
# Allowed channel for Enso~Chan commands
|
|
channels = ["enso-chan-commands"]
|
|
|
|
# Grabbing the list of colours
|
|
colour_list = [c for c in colors.values()]
|
|
|
|
# Instantiates a list for all the cogs
|
|
extensions = ['cogs.AnimeImages', 'cogs.FunCommands', 'cogs.GetInfo',
|
|
'cogs.HelpCommands', 'cogs.OwOText', 'cogs.Embeds',
|
|
'cogs.Reminder']
|