gitbrent / PptxGenJS

Create PowerPoint presentations with a powerful, concise JavaScript API.
https://gitbrent.github.io/PptxGenJS/
MIT License
2.62k stars 611 forks source link

allow to define theme colors and modify them #1287

Open rafalBujok opened 11 months ago

rafalBujok commented 11 months ago

It is an extended PR, it also contains #1270

themeColors array is 12 hex code strings in power point order example of use:

    let newPptx = new pptxgen();
    newPptx.theme = {
      headFontFace: 'Helvetica Neue',
      bodyFontFace: 'Helvetica Neue',
      themeColors: ['000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000', '000000'],
    };

fixing an issue #1243 created by @prescience-data but simplier implementation also propobly fix for issue #604