diff options
author | 2020-11-16 01:10:20 +0100 | |
---|---|---|
committer | 2020-11-16 01:10:20 +0100 | |
commit | 99ffe92dee79f4884bde4c086b2a8dc853684861 (patch) | |
tree | b1c3e0d2ff390eec4ab54313949b98a34856e066 | |
parent | Merge pull request #1284 from python-discord/sebastiaan/features/move-ci-to-g... (diff) |
Add bright green color to constants
- The color is used in the new help channel embed
-rw-r--r-- | bot/constants.py | 1 | ||||
-rw-r--r-- | config-default.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 731f06fed..719895567 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -248,6 +248,7 @@ class Colours(metaclass=YAMLGetter): soft_red: int soft_green: int soft_orange: int + bright_green: int class DuckPond(metaclass=YAMLGetter): diff --git a/config-default.yml b/config-default.yml index 8912841ff..cdcf914ce 100644 --- a/config-default.yml +++ b/config-default.yml @@ -27,6 +27,7 @@ style: soft_red: 0xcd6d6d soft_green: 0x68c290 soft_orange: 0xf9cb54 + bright_green: 0x01d277 emojis: defcon_disabled: "<:defcondisabled:470326273952972810>" |