@muxik/md-viewer
Version:
A CLI tool for rendering Markdown files with syntax highlighting and pagination, optimized for AI output content display
45 lines • 1.02 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.lightTheme = void 0;
exports.lightTheme = {
name: 'light',
colors: {
heading: '#0969da',
text: '#24292f',
link: '#0969da',
code: '#cf222e',
codeBlock: '#24292f',
quote: '#656d76',
strong: '#24292f',
em: '#24292f',
del: '#656d76',
hr: '#d0d7de',
listBullet: '#0969da',
background: '#ffffff',
border: '#d0d7de',
accent: '#fd7e14'
},
styles: {
heading: {
prefix: '▍',
suffix: ''
},
quote: {
prefix: '▎ ',
suffix: ''
},
list: {
bullet: '•',
number: '.'
},
code: {
prefix: '`',
suffix: '`'
},
hr: {
char: '─',
length: 80
}
}
};
//# sourceMappingURL=light.js.map