gitbrent / PptxGenJS

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

allow modified color theme #1270

Open rafalBujok opened 1 year ago

rafalBujok commented 1 year ago

PR introduces the possibility of using Color or ThemeColor and allowing it to modify. Here's an example:

const colors = [
  { baseColor: 'accent1', sat: 10, red: 10, blue: 90 },
  { baseColor: 'accent1', sat: 20, red: 20, blue: 80 },
  'accent3',
  'BC71FB',
];

It is an updated code for #954 created by @dimfeld