@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.07 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.onedarkTheme = void 0;
exports.onedarkTheme = {
name: 'onedark',
colors: {
heading: '#61afef',
text: '#abb2bf',
link: '#61afef',
code: '#e06c75',
codeBlock: '#abb2bf',
quote: '#5c6370',
strong: '#e5c07b',
em: '#c678dd',
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=onedark.js.map