make RED, YELLOW, and GREEN slightly brighter
This commit is contained in:
+3
-3
@@ -1,9 +1,9 @@
|
|||||||
use crate::features::game_networking::BlockedStatus;
|
use crate::features::game_networking::BlockedStatus;
|
||||||
use eframe::egui;
|
use eframe::egui;
|
||||||
|
|
||||||
pub const RED: egui::Color32 = egui::Color32::from_rgb(255, 128, 128);
|
pub const RED: egui::Color32 = egui::Color32::from_rgb(255, 96, 96);
|
||||||
pub const YELLOW: egui::Color32 = egui::Color32::from_rgb(255, 255, 128);
|
pub const YELLOW: egui::Color32 = egui::Color32::from_rgb(255, 255, 96);
|
||||||
pub const GREEN: egui::Color32 = egui::Color32::from_rgb(128, 255, 128);
|
pub const GREEN: egui::Color32 = egui::Color32::from_rgb(96, 255, 96);
|
||||||
|
|
||||||
impl From<BlockedStatus> for egui::Color32 {
|
impl From<BlockedStatus> for egui::Color32 {
|
||||||
fn from(value: BlockedStatus) -> Self {
|
fn from(value: BlockedStatus) -> Self {
|
||||||
|
|||||||
Reference in New Issue
Block a user