I want to write letters in docx.I wrote codes,
from docx import Document
document = Document()
document.add_heading("TITLE", 1)
document.save("test.docx")
But when I run the codes, the letter of TITLE is colored blue.I want to add color black to TITLE.I searched the way of it in docx document, but I cannot find it.How should I do it?