md/assets/scripts/util.js
yanglbme 93682dafae feat: add basic function for css custom
添加自定义css基础功能
2019-12-05 17:03:54 +08:00

29 lines
1014 B
JavaScript

// 设置自定义颜色
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}`;
custom_theme.block.h4['color'] = color;
custom_theme.inline.strong['color'] = color;
return custom_theme
};
}
let setColor = setColorWithTemplate(default_theme);
function customCssWithTemplate(template) {
return function(jsonString) {
let custom_theme = JSON.parse(JSON.stringify(template));
custom_theme.block.h1 = jsonString.h1;
custom_theme.block.h2 = jsonString.h2;
custom_theme.block.h3 = jsonString.h3;
custom_theme.block.h4 = jsonString.h4;
custom_theme.block.p = jsonString.p;
return custom_theme;
};
}
let customCss = customCssWithTemplate(default_theme);