use egui::Color32;
use crate::TitleBar;
impl TitleBar {
pub fn with_menu_text_color(mut self, color: Color32) -> Self {
self.menu_text_color = color;
self
}
pub fn with_menu_hover_color(mut self, color: Color32) -> Self {
self.menu_hover_color = color;
self
}
pub fn with_menu_text_size(mut self, size: f32) -> Self {
self.menu_text_size = size;
self
}
}