Custom element class for `a:fgClr`, `a:bgClr` and perhaps others.
| 48 | |
| 49 | |
| 50 | class CT_Color(BaseOxmlElement): |
| 51 | """Custom element class for `a:fgClr`, `a:bgClr` and perhaps others.""" |
| 52 | |
| 53 | eg_colorChoice = ZeroOrOneChoice( |
| 54 | ( |
| 55 | Choice("a:scrgbClr"), |
| 56 | Choice("a:srgbClr"), |
| 57 | Choice("a:hslClr"), |
| 58 | Choice("a:sysClr"), |
| 59 | Choice("a:schemeClr"), |
| 60 | Choice("a:prstClr"), |
| 61 | ), |
| 62 | successors=(), |
| 63 | ) |
| 64 | |
| 65 | |
| 66 | class CT_HslColor(_BaseColorElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…