Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion html4docx/h4d.py
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ def add_styles_to_table_cell(self, styles, doc_cell, cell_row):
if color:
for paragraph in doc_cell.paragraphs:
for run in paragraph.runs:
run.font.color.rgb = color
run.font.color.rgb = RGBColor(*color)

# Set vertical align (for individual cells)
if 'vertical-align' in styles:
Expand Down
Loading