Add difficulty levels

This commit is contained in:
cool-mist
2025-05-18 00:09:11 +05:30
parent 373d3da91b
commit d90e270cd5
3 changed files with 108 additions and 27 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ pub struct Button {
pub enum ButtonColor {
Grey,
Green,
Yellow,
Red,
}
impl ButtonColor {
@@ -21,7 +21,7 @@ impl ButtonColor {
match self {
ButtonColor::Grey => Color::from_rgba(140, 140, 140, 200),
ButtonColor::Green => Color::from_rgba(112, 140, 141, 200),
ButtonColor::Yellow => Color::from_rgba(123, 70, 85, 200),
ButtonColor::Red => Color::from_rgba(123, 70, 85, 200),
}
}