#### 編輯器的字體顏色和背景色
```
// 自定義配置顏色(字體顏色、背景色)
editor.customConfig.colors = [
'#000000',
'#eeece0',
'#1c487f',
'#4d80bf',
'#c24f4a',
'#8baa4a',
'#7b5ba1',
'#46acc8',
'#f9963b',
'#ffffff'
]
editor.create()
;
```
#### 配置字體
編輯器的字體,可通過editor.customConfig.fontNames自定義配置
```
// 自定義字體
editor.customConfig.fontNames = [
'PingFang SC', '宋體', '微軟雅黑', 'Arial', 'Tahoma', 'Verdana'
]
editor.create()
```