o
    P+ i  ã                   @   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__ÚRGBZTHEMEZAUTO© r   r   úY/home/app/PaddleOCR-VL-test/.venv_paddleocr/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
    )é    ZUNMAPPEDz)Indicates the color is not a theme color.)é   Zaccent1z#Specifies the Accent 1 theme color.)é   Zaccent2z#Specifies the Accent 2 theme color.)é   Zaccent3z#Specifies the Accent 3 theme color.)é   Zaccent4z#Specifies the Accent 4 theme color.)é	   Zaccent5z#Specifies the Accent 5 theme color.)é
   Zaccent6z#Specifies the Accent 6 theme color.)é   Zbackground1z'Specifies the Background 1 theme color.)é   Zbackground2z'Specifies the Background 2 theme color.)r   Zdark1z!Specifies the Dark 1 theme color.)é   Zdark2z!Specifies the Dark 2 theme color.)é   ZfollowedHyperlinkz2Specifies the theme color for a clicked hyperlink.)é   Z	hyperlinkz*Specifies the theme color for a hyperlink.)r   Zlight1z"Specifies the Light 1 theme color.)é   Zlight2z"Specifies the Light 2 theme color.)é   Ztext1z!Specifies the Text 1 theme color.)é   Ztext2z!Specifies the Text 2 theme color.N)r   r   r	   r
   ZNOT_THEME_COLORZACCENT_1ZACCENT_2ZACCENT_3ZACCENT_4ZACCENT_5ZACCENT_6ZBACKGROUND_1ZBACKGROUND_2ZDARK_1ZDARK_2ZFOLLOWED_HYPERLINKZ	HYPERLINKZLIGHT_1ZLIGHT_2ZTEXT_1ZTEXT_2r   r   r   r   r      sH    r   N)r
   Úbaser   r   r   r   ZMSO_THEME_COLORr   r   r   r   Ú<module>   s
    I