cel-tui
    Preparing search index...

    Interface MarkdownTheme

    Style configuration for the Markdown component.

    Each property controls the styling of a specific markdown element. All properties are optional — unset values fall back to the built-in default theme.

    interface MarkdownTheme {
        blockquoteBar?: StyleProps;
        blockquoteText?: StyleProps;
        bold?: StyleProps;
        codeBlock?: StyleProps;
        codeContent?: StyleProps;
        heading1?: StyleProps;
        heading2?: StyleProps;
        heading3?: StyleProps;
        hr?: { char?: string; fgColor?: Color };
        inlineCode?: StyleProps;
        italic?: StyleProps;
        link?: StyleProps;
        listMarker?: StyleProps;
    }
    Index

    Properties

    blockquoteBar?: StyleProps

    Style for the blockquote bar character ().

    blockquoteText?: StyleProps

    Text style for blockquote content.

    bold?: StyleProps

    Style for bold inline text.

    codeBlock?: StyleProps

    Container style for fenced code blocks (applied to the wrapping VStack).

    codeContent?: StyleProps

    Text style inside fenced code blocks.

    heading1?: StyleProps

    Style for # heading (level 1).

    heading2?: StyleProps

    Style for ## heading (level 2).

    heading3?: StyleProps

    Style for ### heading (level 3).

    hr?: { char?: string; fgColor?: Color }

    Divider color and character for horizontal rules.

    inlineCode?: StyleProps

    Style for inline code text.

    italic?: StyleProps

    Style for italic inline text.

    link?: StyleProps

    Style for [link](url) inline text.

    listMarker?: StyleProps

    Style for list markers (, 1.).