Sets/Returns the background color currently in use for all elements except containers :return: (str) - color string of the element background color currently in use :rtype: (str)
(color=None)
| 19688 | |
| 19689 | |
| 19690 | def theme_element_background_color(color=None): |
| 19691 | """ |
| 19692 | Sets/Returns the background color currently in use for all elements except containers |
| 19693 | |
| 19694 | :return: (str) - color string of the element background color currently in use |
| 19695 | :rtype: (str) |
| 19696 | """ |
| 19697 | if color is not None: |
| 19698 | set_options(element_background_color=color) |
| 19699 | return DEFAULT_ELEMENT_BACKGROUND_COLOR |
| 19700 | |
| 19701 | |
| 19702 | def theme_text_color(color=None): |
nothing calls this directly
no test coverage detected