mod traits;
use ratatui::style::Color;
#[derive(Clone)]
pub struct MarkdownStyle {
pub h1_icon: &'static str,
pub h2_icon: &'static str,
pub h3_icon: &'static str,
pub h4_icon: &'static str,
pub h5_icon: &'static str,
pub h6_icon: &'static str,
pub h1_fg: Color,
pub h1_bg: Color,
pub h2_fg: Color,
pub h2_bg: Color,
pub h3_fg: Color,
pub h3_bg: Color,
pub h4_fg: Color,
pub h4_bg: Color,
pub h5_fg: Color,
pub h5_bg: Color,
pub h6_fg: Color,
pub h6_bg: Color,
pub bullet_l1: &'static str,
pub bullet_l2: &'static str,
pub bullet_l3: &'static str,
pub code_block_border: bool,
pub code_block_bg: Color,
pub inline_code_bg: Color,
pub inline_code_fg: Color,
pub quote_icon: &'static str,
pub quote_fg: Color,
pub quote_bg: Color,
pub callout_note_icon: &'static str,
pub callout_tip_icon: &'static str,
pub callout_warning_icon: &'static str,
pub callout_caution_icon: &'static str,
pub text_fg: Color,
pub text_bg: Color,
pub link_fg: Color,
pub emph_fg: Color,
pub strong_fg: Color,
pub hr_fg: Color,
pub table_border_fg: Color,
}