配置颜色

编辑器的字体颜色和背景色,可以通过 editor.config.colors 自定义配置

  1. const E = window.wangEditor
  2. const editor = new E('#div1')
  3. // 配置颜色(文字颜色、背景色)
  4. editor.config.colors = [
  5. '#000000',
  6. '#eeece0',
  7. '#1c487f',
  8. '#4d80bf'
  9. ]
  10. editor.create()