SlideRange.ColorScheme property (PowerPoint)
Returns or sets the ColorScheme object that represents the scheme colors for the specified slide, slide range, or slide master. Read/write.
expression. ColorScheme
expression A variable that represents a SlideRange object.
ColorScheme
This example sets the title color to green for slides one and three in the active presentation.
Set mySlides = ActivePresentation.Slides.Range(Array(1, 3))
mySlides.ColorScheme.Colors(ppTitle).RGB = RGB(0, 255, 0)
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.