diff options
| author | seth <[email protected]> | 2023-11-30 22:18:51 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-01 07:12:49 -0500 |
| commit | 76c0f94e6d7aa108424b34826eb7d8514b026287 (patch) | |
| tree | 7315bd6dfe52c158041bed64ba39781718a69335 /src/colors.rs | |
| parent | db52e639b85d79bed870020aec7a045851ca5ee3 (diff) | |
feat: use eyre, better logging, & refactor
small commits be damned
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 ebd231e..5291933 100644 --- a/src/colors.rs +++ b/src/colors.rs @@ -2,12 +2,14 @@ use poise::serenity_prelude::Colour; pub enum Colors { Blue, + Orange, } impl From<Colors> for Colour { fn from(val: Colors) -> Self { match val { Colors::Blue => Colour::from((136, 199, 253)), + Colors::Orange => Colour::from((255, 179, 74)), } } } |
