Skip to content

Commit a1b8d7b

Browse files
committed
Edit doc string
1 parent 69d2c4d commit a1b8d7b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

kivymd/uix/tab/tab.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1518,31 +1518,31 @@ class MDTabs(
15181518

15191519
background_color = ColorProperty(None)
15201520
"""
1521-
Background color of tabs in ``rgba`` format.
1521+
Background color of tabs in (r, g, b, a) or string format.
15221522
15231523
:attr:`background_color` is an :class:`~kivy.properties.ColorProperty`
15241524
and defaults to `None`.
15251525
"""
15261526

15271527
underline_color = ColorProperty([0, 0, 0, 0])
15281528
"""
1529-
Underline color of tabs in ``rgba`` format.
1529+
Underline color of tabs in (r, g, b, a) or string format.
15301530
15311531
:attr:`underline_color` is an :class:`~kivy.properties.ColorProperty`
15321532
and defaults to `[0, 0, 0, 0]`.
15331533
"""
15341534

15351535
text_color_normal = ColorProperty(None)
15361536
"""
1537-
Text color of the label when it is not selected.
1537+
Text color in (r, g, b, a) or string format of the label when it is not selected.
15381538
15391539
:attr:`text_color_normal` is an :class:`~kivy.properties.ColorProperty`
15401540
and defaults to `None`.
15411541
"""
15421542

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

15931593
indicator_color = ColorProperty(None)
15941594
"""
1595-
Color indicator in ``rgba`` format.
1595+
Color indicator in (r, g, b, a) or string format.
15961596
15971597
:attr:`indicator_color` is an :class:`~kivy.properties.ColorProperty`
15981598
and defaults to `None`.

0 commit comments

Comments
 (0)