
    ,h                     H    d Z ddlmZmZ  G d de      Z G d de      ZeZy)z'Enumerations used by DrawingML objects.   )BaseEnumBaseXmlEnumc                        e Zd ZdZdZ	 dZ	 dZy)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     O/var/www/html/Resume-Scraper/venv/lib/python3.12/site-packages/docx/enum/dml.pyr   r      s!     <C4;E2ID?r   r   c                   t    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y)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      s      SO3DH-DH-DH-DH-DH-EH-QL1QL1>F+>F+
 =OI4AG,AG,?F+?F+r   r   N)r   baser   r   r   r   MSO_THEME_COLORr   r   r   <module>rH      s/    - '@X @0F,K F,R (r   