config.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. export const defaultMenus = [
  2. 'head',
  3. 'bold',
  4. 'fontSize',
  5. 'fontName',
  6. 'italic',
  7. 'underline',
  8. 'strikeThrough',
  9. 'indent',
  10. 'lineHeight',
  11. 'foreColor',
  12. 'backColor',
  13. 'link',
  14. 'list',
  15. 'todo',
  16. 'justify',
  17. // 'quote', 引用造成输入汉字时,首字母会多输出一位,出现概率很高
  18. // 'emoticon', 表情图标
  19. 'image',
  20. // 'video',
  21. 'table',
  22. // 'code',
  23. 'splitLine',
  24. 'undo',
  25. 'redo'
  26. ]
  27. export const colors = ['#000000', '#ffffff', '#eeece0', '#1c487f', '#4d80bf', '#c24f4a', '#8baa4a', '#7b5ba1', '#46acc8', '#f9963b']
  28. export const fontNames = ['黑体', '仿宋', '楷体', '标楷体', '华文仿宋', '华文楷体', '宋体', '微软雅黑', 'Arial', 'Tahoma', 'Verdana', 'Times New Roman', 'Courier New']
  29. export const fontSizes = {
  30. 'x-small': { name: '10px', value: '1' },
  31. small: { name: '13px', value: '2' },
  32. normal: { name: '16px', value: '3' },
  33. large: { name: '18px', value: '4' },
  34. 'x-large': { name: '24px', value: '5' },
  35. 'xx-large': { name: '32px', value: '6' },
  36. 'xxx-large': { name: '48px', value: '7' }
  37. }
  38. export const lineHeights = ['1', '1.15', '1.6', '2', '2.5', '3']