@muxik/md-viewer
Version:
A CLI tool for rendering Markdown files with syntax highlighting and pagination, optimized for AI output content display
42 lines • 908 B
TypeScript
export interface Theme {
name: string;
colors: {
heading: string;
text: string;
link: string;
code: string;
codeBlock: string;
quote: string;
strong: string;
em: string;
del: string;
hr: string;
listBullet: string;
background: string;
border: string;
accent: string;
};
styles: {
heading: {
prefix: string;
suffix: string;
};
quote: {
prefix: string;
suffix: string;
};
list: {
bullet: string;
number: string;
};
code: {
prefix: string;
suffix: string;
};
hr: {
char: string;
length: number;
};
};
}
//# sourceMappingURL=types.d.ts.map