markugen
Version:
Markdown to HTML/PDF static site generation tool
46 lines (45 loc) • 877 B
TypeScript
/**
* Theme options
*/
export default interface Theme {
/**
* Primary text color
*/
color?: string;
/**
* Secondary text color used on backgrounds
*/
colorSecondary?: string;
/**
* Primary background color
*/
bgColor?: string;
/**
* Secondary background color
*/
bgColorSecondary?: string;
/**
* Primary color for borders
*/
borderColor?: string;
/**
* Secondary color for borders
*/
borderColorSecondary?: string;
/**
* Accent color used on links and alike
*/
accentColor?: string;
/**
* Font family used for the sites text
*/
fontFamily?: string;
/**
* Font family used for the title/heading text
*/
fontFamilyHeaders?: string;
/**
* Maximum height of code blocks
*/
codeMaxHeight?: string;
}