pub trait ClockStyle {
fn font(&self) -> &str {
"13px monospace"
}
fn hover_bg_radius(&self) -> f64 {
4.0
}
fn hover_bg_vertical_inset(&self) -> f64 {
2.0
}
fn text_padding_right(&self) -> f64 {
8.0
}
}
pub struct DefaultClockStyle;
impl ClockStyle for DefaultClockStyle {}