自定义颜色、字体、字号
最后更新于:2022-04-01 23:41:31
可通过`editor.config.colors` `editor.config.familys` `editor.config.fontsizes` 三个配置项来配置编辑器的颜色(字体颜色、背景色),字体,字号。**该操作必须再`editor.create()`方法之前执行**
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/2016-01-29_56ab6d05af824.png)
代码示例:
```html
```
注意:字号的配置中,对象的`value`值必须是`1 2 3 4 5 6 7`这几个数字(全部或者选择其中几个),`title`可以自己修改。如:
```
// 字号
editor.config.fontsizes = {
// 格式:'value': 'title'
2: '小',
3: '中',
5: '大',
7: '特大'
};
```
';
请输入内容...