/// The style of a [`crate::MarkWidget`]
/// that affects how it's rendered.
#[derive(Debug, Clone, Copy, PartialEq, Default)]pubstructStyle{/// Color of regular text.
pubtext_color:Option<iced::Color>,
/// Color of link **text**.
////// Default: `#5A6B9E`
publink_color:Option<iced::Color>,
/// Background color for text highlights (`<mark>` element).
////// Default: `#F7D84B`
pubhighlight_color:Option<iced::Color>,
}