Returns the button color background 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 background currently in use :rtype: (str)
()
| 19771 | |
| 19772 | |
| 19773 | def theme_button_color_background(): |
| 19774 | """ |
| 19775 | Returns the button color background currently in use. Note this function simple calls the theme_button_color |
| 19776 | function and splits apart the tuple |
| 19777 | |
| 19778 | :return: color string of the button color background currently in use |
| 19779 | :rtype: (str) |
| 19780 | """ |
| 19781 | return theme_button_color()[1] |
| 19782 | |
| 19783 | |
| 19784 | def theme_button_color_text(): |
nothing calls this directly
no test coverage detected