Sets/Returns the progress bar colors by the current color theme :return: (str, str) - TUPLE with color strings of the ProgressBar color currently in use(button text color, button background color) :rtype: (str, str)
(color=None)
| 19793 | |
| 19794 | |
| 19795 | def theme_progress_bar_color(color=None): |
| 19796 | """ |
| 19797 | Sets/Returns the progress bar colors by the current color theme |
| 19798 | |
| 19799 | :return: (str, str) - TUPLE with color strings of the ProgressBar color currently in use(button text color, button background color) |
| 19800 | :rtype: (str, str) |
| 19801 | """ |
| 19802 | if color is not None: |
| 19803 | set_options(progress_meter_color=color) |
| 19804 | return DEFAULT_PROGRESS_BAR_COLOR |
| 19805 | |
| 19806 | |
| 19807 | def theme_slider_color(color=None): |
nothing calls this directly
no test coverage detected