Sets/Returns the slider color (used for sliders) :return: color string of the slider color currently in use :rtype: (str)
(color=None)
| 19805 | |
| 19806 | |
| 19807 | def theme_slider_color(color=None): |
| 19808 | """ |
| 19809 | Sets/Returns the slider color (used for sliders) |
| 19810 | |
| 19811 | :return: color string of the slider color currently in use |
| 19812 | :rtype: (str) |
| 19813 | """ |
| 19814 | if color is not None: |
| 19815 | set_options(scrollbar_color=color) |
| 19816 | return DEFAULT_SCROLLBAR_COLOR |
| 19817 | |
| 19818 | |
| 19819 | def theme_border_width(border_width=None): |
nothing calls this directly
no test coverage detected