diff options
Diffstat (limited to 'src/colors.rs')
| -rw-r--r-- | src/colors.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/colors.rs b/src/colors.rs index 5291933..2a3f402 100644 --- a/src/colors.rs +++ b/src/colors.rs @@ -3,6 +3,7 @@ use poise::serenity_prelude::Colour; pub enum Colors { Blue, Orange, + Red, } impl From<Colors> for Colour { @@ -10,6 +11,7 @@ impl From<Colors> for Colour { match val { Colors::Blue => Colour::from((136, 199, 253)), Colors::Orange => Colour::from((255, 179, 74)), + Colors::Red => Colour::from((255, 94, 74)), } } } |
