2019-11-07 14:06:59 +08:00
|
|
|
// 设置自定义颜色
|
2019-11-05 21:32:50 +08:00
|
|
|
function setColorWithTemplate(template) {
|
|
|
|
return function(color) {
|
|
|
|
let custom_theme = JSON.parse(JSON.stringify(template));
|
|
|
|
custom_theme.block.h1['border-bottom'] = `2px solid ${color}`;
|
|
|
|
custom_theme.block.h2['background'] = color;
|
|
|
|
custom_theme.block.h3['border-left'] = `3px solid ${color}`;
|
2019-11-08 10:30:32 +08:00
|
|
|
custom_theme.block.h4['color'] = color;
|
2019-11-05 21:32:50 +08:00
|
|
|
custom_theme.inline.strong['color'] = color;
|
|
|
|
return custom_theme
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
let setColor = setColorWithTemplate(default_theme);
|