o
    	Ð'f  ã                   @   s<   d Z ddlmZmZ G dd„ deƒZG dd„ deƒZeZdS )z'Enumerations used by DrawingML objects.é   )ÚBaseEnumÚBaseXmlEnumc                   @   s    e Zd ZdZdZ	 dZ	 dZdS )ÚMSO_COLOR_TYPEa  Specifies the color specification scheme.

    Example::

        from docx.enum.dml import MSO_COLOR_TYPE

        assert font.color.type == MSO_COLOR_TYPE.SCHEME

    MS API name: `MsoColorType`

    http://msdn.microsoft.com/en-us/library/office/ff864912(v=office.15).aspx
    )r   z*Color is specified by an |RGBColor| value.)é   z(Color is one of the preset theme colors.)ée   z5Color is determined automatically by the application.N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__ÚRGBÚTHEMEÚAUTO© r   r   úE/home/ubuntu/flask/venv/lib/python3.10/site-packages/docx/enum/dml.pyr      s    r   c                   @   st   e Zd ZdZdZ	 dZ	 dZ	 dZ	 dZ	 dZ		 dZ
	 d	Z	 d
Z	 dZ	 dZ	 dZ	 dZ	 dZ	 dZ	 dZ	 dZdS )ÚMSO_THEME_COLOR_INDEXa  Indicates the Office theme color, one of those shown in the color gallery on the
    formatting ribbon.

    Alias: ``MSO_THEME_COLOR``

    Example::

        from docx.enum.dml import MSO_THEME_COLOR

        font.color.theme_color = MSO_THEME_COLOR.ACCENT_1

    MS API name: `MsoThemeColorIndex`

    http://msdn.microsoft.com/en-us/library/office/ff860782(v=office.15).aspx
    )é    ÚUNMAPPEDz)Indicates the color is not a theme color.)é   Úaccent1z#Specifies the Accent 1 theme color.)é   Úaccent2z#Specifies the Accent 2 theme color.)é   Úaccent3z#Specifies the Accent 3 theme color.)é   Úaccent4z#Specifies the Accent 4 theme color.)é	   Úaccent5z#Specifies the Accent 5 theme color.)é
   Úaccent6z#Specifies the Accent 6 theme color.)é   Úbackground1z'Specifies the Background 1 theme color.)é   Úbackground2z'Specifies the Background 2 theme color.)r   Údark1z!Specifies the Dark 1 theme color.)é   Údark2z!Specifies the Dark 2 theme color.)é   ÚfollowedHyperlinkz2Specifies the theme color for a clicked hyperlink.)é   Ú	hyperlinkz*Specifies the theme color for a hyperlink.)r   Úlight1z"Specifies the Light 1 theme color.)é   Úlight2z"Specifies the Light 2 theme color.)é   Útext1z!Specifies the Text 1 theme color.)é   Útext2z!Specifies the Text 2 theme color.N)r   r   r	   r
   ÚNOT_THEME_COLORÚACCENT_1ÚACCENT_2ÚACCENT_3ÚACCENT_4ÚACCENT_5ÚACCENT_6ÚBACKGROUND_1ÚBACKGROUND_2ÚDARK_1ÚDARK_2ÚFOLLOWED_HYPERLINKÚ	HYPERLINKÚLIGHT_1ÚLIGHT_2ÚTEXT_1ÚTEXT_2r   r   r   r   r      sH    r   N)r
   Úbaser   r   r   r   ÚMSO_THEME_COLORr   r   r   r   Ú<module>   s
    I