data.ts 381 B

123456789101112131415161718192021222324
  1. export default {
  2. lineType: [
  3. {
  4. key: 'highlight',
  5. icon: 'highlight',
  6. color: '#FCFF36',
  7. },
  8. {
  9. key: 'underline',
  10. icon: 'underline',
  11. color: '#27BEFD',
  12. },
  13. {
  14. key: 'squiggly',
  15. icon: 'squiggly',
  16. color: '#02FF36',
  17. },
  18. {
  19. key: 'strikeout',
  20. icon: 'strikeout',
  21. color: '#FF1B89',
  22. },
  23. ],
  24. };