How to change bullets and numbering font style and color

How to iterate and check all numbering

@Mark030 List items labels uses font specified as paragraph break font. For example the following code change color of all list item labels to red:

doc = aw.Document("C:\\Temp\\in.docx")
paragraphs = doc.get_child_nodes(aw.NodeType.PARAGRAPH, True)
for n in paragraphs :
    p = n.as_paragraph()
    p.paragraph_break_font.color = pydraw.Color.red
doc.save("C:\\Temp\\out.docx")