drawio-config.ts 520 B

123456789101112131415
  1. const headerColor = '#334455';
  2. const fontFamily = "Lato, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif";
  3. export const dwawioConfig = {
  4. css: `
  5. .geMenubarContainer { background-color: ${headerColor} !important; }
  6. .geMenubar { background-color: ${headerColor} !important; }
  7. .geEditor { font-family: ${fontFamily} !important; }
  8. html td.mxPopupMenuItem {
  9. font-family: ${fontFamily} !important;
  10. font-size: 8pt !important;
  11. }
  12. `,
  13. customFonts: ['Lato', 'Charter'],
  14. };