I want to mimic how PowerPoint automatically chooses a color after the 6 accent colors are used.
In vba you can set the 6 theme colors like this:
.ThemeColorScheme(msoThemeAccent1) = RGB(255, 0, 0)
.ThemeColorScheme(msoThemeAccent2) = RGB(0, 255, 0)
.ThemeColorScheme(msoThemeAccent3) = RGB(0, 255, 255)
.ThemeColorScheme(msoThemeAccent4) = RGB(255, 255, 0)
.ThemeColorScheme(msoThemeAccent5) = RGB(23, 255, 10)
.ThemeColorScheme(msoThemeAccent6) = RGB(23, 255, 100)
The theme colors are manually set here:
Lets say I have a chat with 15 series, powerpoint will use the first 6 account colors but then it automatically picks rgbs which are slightly lighter or darker based on the first 6 accent colors. I want this formula so I can tweak it to my liking. Is this forumla available anywhere?