Last active
March 2, 2024 08:30
-
-
Save sudo-adduser-jordan/2116325c9510c4e6a577075df327df95 to your computer and use it in GitHub Desktop.
Discord.py Color Class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class colors: | |
default = 0 | |
teal = 0x1abc9c | |
dark_teal = 0x11806a | |
green = 0x2ecc71 | |
dark_green = 0x1f8b4c | |
blue = 0x3498db | |
dark_blue = 0x206694 | |
purple = 0x9b59b6 | |
dark_purple = 0x71368a | |
magenta = 0xe91e63 | |
dark_magenta = 0xad1457 | |
gold = 0xf1c40f | |
dark_gold = 0xc27c0e | |
orange = 0xe67e22 | |
dark_orange = 0xa84300 | |
red = 0xe74c3c | |
dark_red = 0x992d22 | |
lighter_grey = 0x95a5a6 | |
dark_grey = 0x607d8b | |
light_grey = 0x979c9f | |
darker_grey = 0x546e7a | |
blurple = 0x7289da | |
greyple = 0x99aab5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment