Sets/Returns the text color currently in use :return: (str) - color string of the text color currently in use :rtype: (str)
(color=None)
| 19700 | |
| 19701 | |
| 19702 | def theme_text_color(color=None): |
| 19703 | """ |
| 19704 | Sets/Returns the text color currently in use |
| 19705 | |
| 19706 | :return: (str) - color string of the text color currently in use |
| 19707 | :rtype: (str) |
| 19708 | """ |
| 19709 | if color is not None: |
| 19710 | set_options(text_color=color) |
| 19711 | return DEFAULT_TEXT_COLOR |
| 19712 | |
| 19713 | |
| 19714 | def theme_text_element_background_color(color=None): |
no test coverage detected