Returns the button color text currently in use. Note this function simple calls the theme_button_color function and splits apart the tuple :return: color string of the button color text currently in use :rtype: (str)
()
| 19782 | |
| 19783 | |
| 19784 | def theme_button_color_text(): |
| 19785 | """ |
| 19786 | Returns the button color text currently in use. Note this function simple calls the theme_button_color |
| 19787 | function and splits apart the tuple |
| 19788 | |
| 19789 | :return: color string of the button color text currently in use |
| 19790 | :rtype: (str) |
| 19791 | """ |
| 19792 | return theme_button_color()[0] |
| 19793 | |
| 19794 | |
| 19795 | def theme_progress_bar_color(color=None): |
nothing calls this directly
no test coverage detected