diff options
Diffstat (limited to 'src/colors.rs')
| -rw-r--r-- | src/colors.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/colors.rs b/src/colors.rs new file mode 100644 index 0000000..b5db8d7 --- /dev/null +++ b/src/colors.rs @@ -0,0 +1,13 @@ +use poise::serenity_prelude::Colour; + +pub enum Colors { + Blue, +} + +impl Into<Colour> for Colors { + fn into(self) -> Colour { + match self { + Colors::Blue => Colour::from((136, 199, 253)), + } + } +} |
