diff options
author | 2021-02-12 13:10:25 -0800 | |
---|---|---|
committer | 2021-02-12 13:10:25 -0800 | |
commit | 9ce9ab617ba0fdacb1922e2ed2007ed05e53c526 (patch) | |
tree | 20d22e2549bbe14419bb9e301325bb6a424bc466 | |
parent | Moved hyperlink to title. (diff) |
Added colours yellow, blue, and white.
-rw-r--r-- | bot/constants.py | 9 | ||||
-rw-r--r-- | config-default.yml | 9 |
2 files changed, 12 insertions, 6 deletions
diff --git a/bot/constants.py b/bot/constants.py index 91e41e334..8a93ff9cf 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -246,13 +246,16 @@ class Colours(metaclass=YAMLGetter): section = "style" subsection = "colours" + blue: int bright_green: int - soft_green: int - soft_orange: int - soft_red: int orange: int pink: int purple: int + soft_green: int + soft_orange: int + soft_red: int + white: int + yellow: int class DuckPond(metaclass=YAMLGetter): diff --git a/config-default.yml b/config-default.yml index d7415c821..25bbcc3c5 100644 --- a/config-default.yml +++ b/config-default.yml @@ -24,13 +24,16 @@ bot: style: colours: + blue: 0x3775a8 bright_green: 0x01d277 - soft_green: 0x68c290 - soft_orange: 0xf9cb54 - soft_red: 0xcd6d6d orange: 0xe67e22 pink: 0xcf84e0 purple: 0xb734eb + soft_green: 0x68c290 + soft_orange: 0xf9cb54 + soft_red: 0xcd6d6d + white: 0xfffffe + yellow: 0xffd241 emojis: badge_bug_hunter: "<:bug_hunter_lvl1:743882896372269137>" |