pub trait TextTheme: Send + Sync {
fn text_color(&self) -> &str;
fn text_color_hover(&self) -> &str;
}
#[derive(Default)]
pub struct DefaultTextTheme;
impl TextTheme for DefaultTextTheme {
fn text_color(&self) -> &str { "#d1d4dc" }
fn text_color_hover(&self) -> &str { "#ffffff" }
}