pub trait DragHandleTheme {
fn grip_dots_color(&self) -> &str;
}
pub struct DefaultDragHandleTheme;
impl Default for DefaultDragHandleTheme {
fn default() -> Self {
Self
}
}
impl DragHandleTheme for DefaultDragHandleTheme {
fn grip_dots_color(&self) -> &str {
"#4a4e5a"
}
}