Skip to content

Commit

Permalink
Edit doc string
Browse files Browse the repository at this point in the history
  • Loading branch information
HeaTTheatR committed Oct 12, 2022
1 parent 69d2c4d commit a1b8d7b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions kivymd/uix/tab/tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -1518,31 +1518,31 @@ class MDTabs(

background_color = ColorProperty(None)
"""
Background color of tabs in ``rgba`` format.
Background color of tabs in (r, g, b, a) or string format.
:attr:`background_color` is an :class:`~kivy.properties.ColorProperty`
and defaults to `None`.
"""

underline_color = ColorProperty([0, 0, 0, 0])
"""
Underline color of tabs in ``rgba`` format.
Underline color of tabs in (r, g, b, a) or string format.
:attr:`underline_color` is an :class:`~kivy.properties.ColorProperty`
and defaults to `[0, 0, 0, 0]`.
"""

text_color_normal = ColorProperty(None)
"""
Text color of the label when it is not selected.
Text color in (r, g, b, a) or string format of the label when it is not selected.
:attr:`text_color_normal` is an :class:`~kivy.properties.ColorProperty`
and defaults to `None`.
"""

text_color_active = ColorProperty(None)
"""
Text color of the label when it is selected.
Text color in (r, g, b, a) or string format of the label when it is selected.
:attr:`text_color_active` is an :class:`~kivy.properties.ColorProperty`
and defaults to `None`.
Expand Down Expand Up @@ -1592,7 +1592,7 @@ class MDTabs(

indicator_color = ColorProperty(None)
"""
Color indicator in ``rgba`` format.
Color indicator in (r, g, b, a) or string format.
:attr:`indicator_color` is an :class:`~kivy.properties.ColorProperty`
and defaults to `None`.
Expand Down

0 comments on commit a1b8d7b

Please sign in to comment.