Change fonts style of a numbering format

Is there a way to change the font of a specific number format For example.
3.1
3.1.1
3.#.#.#

@Mark030 You can use the following code to change formatting of list item labels:

doc = aw.Document("C:\\Temp\\in.docx")

# loop throug the list in the document and chnage formatting of certain levels.
for lst in doc.lists:
    for lst_lvl in lst.list_levels:
        if lst_lvl.number_format == "\x00." or lst_lvl.number_format == "\x00.\x01." or lst_lvl.number_format == "\x00.\x01.\x02.":
            lst_lvl.font.color = pydraw.Color.red

doc.save("C:\\Temp\\\out.docx")

in.docx (14.4 KB)
out.docx (11.7 KB)