summaryrefslogtreecommitdiff
path: root/src/colors.rs
blob: b5db8d787732cd6292e40838064352707ed87a2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)),
		}
	}
}