@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.04 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.darkTheme = void 0;
exports.darkTheme = {
name: 'dark',
colors: {
heading: '#61dafb',
text: '#abb2bf',
link: '#61afef',
code: '#e06c75',
codeBlock: '#abb2bf',
quote: '#5c6370',
strong: '#abb2bf',
em: '#abb2bf',
del: '#5c6370',
hr: '#3e4451',
listBullet: '#61afef',
background: '#282c34',
border: '#3e4451',
accent: '#e5c07b' // @hue-6-2: orange
},
styles: {
heading: {
prefix: '▍',
suffix: ''
},
quote: {
prefix: '▎ ',
suffix: ''
},
list: {
bullet: '•',
number: '.'
},
code: {
prefix: '`',
suffix: '`'
},
hr: {
char: '─',
length: 80
}
}
};
//# sourceMappingURL=dark.js.map