I was wondering if it was possible to color only some lines of text/characters with openpyxl and output them on the same excel sheet?
Example:
The dog is red. The man is blue. My favorite color is black.
To:
The dog is [blue] red [/blue]. The man is [blue] blue [/blue] . My favorite color is [blue] yellow [/blue].
I have the strings and position of the strings that need to be in color, and even if it's the same color (blue or green) it would be fine.
Thanks!
Note: [blue] [/blue]
means the color within the brackets are blue.