I activated code folding in AvalonEdit using:
_foldingManager = FoldingManager.Install(this.TextEditor.TextArea);
_foldingStrategy = new CSharpFoldingStrategy();
_foldingStrategy.UpdateFoldings(_foldingManager, this.TextEditor.Document);
Now it shows these buttons to collapse/expand blocks of code, called FoldingMarkers:
There are some members in the ICSharpCode.AvalonEdit.Folding namespace, such as: ICSharpCode.AvalonEdit.Folding.FoldingMargin.FoldingMarkerBrush
But I can't find a way to reach these properties.
How to change FoldingMarkers colors?

Ok, I've got these properties calling FoldingMargin statically: