1.. _MsoColorType:
2
3``MSO_COLOR_TYPE``
4==================
5
6Specifies the color specification scheme
7
8Example::
9
10    from docx.enum.dml import MSO_COLOR_TYPE
11
12    assert font.color.type == MSO_COLOR_TYPE.THEME
13
14----
15
16RGB
17    Color is specified by an |RGBColor| value.
18
19THEME
20    Color is one of the preset theme colors.
21
22AUTO
23    Color is determined automatically be the application.
24