1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
use crate::foundation::colorspace::Color;
pub struct TextSelectionThemeData {
pub cursor_color: Color,
pub selection_color: Color,
pub selection_handle_color: Color,
}
impl Default for TextSelectionThemeData {
fn default() -> Self {
Self {
cursor_color: Default::default(),
selection_color: Default::default(),
selection_handle_color: Default::default(),
}
}
}