The |ColorFormat| instance that provides access to the color settings for this font.
(self)
| 304 | |
| 305 | @lazyproperty |
| 306 | def color(self) -> ColorFormat: |
| 307 | """The |ColorFormat| instance that provides access to the color settings for this font.""" |
| 308 | if self.fill.type != MSO_FILL.SOLID: |
| 309 | self.fill.solid() |
| 310 | return self.fill.fore_color |
| 311 | |
| 312 | @lazyproperty |
| 313 | def fill(self) -> FillFormat: |