Sets/Returns the input element background color currently in use :return: (str) - color string of the input element background color currently in use :rtype: (str)
(color=None)
| 19724 | |
| 19725 | |
| 19726 | def theme_input_background_color(color=None): |
| 19727 | """ |
| 19728 | Sets/Returns the input element background color currently in use |
| 19729 | |
| 19730 | :return: (str) - color string of the input element background color currently in use |
| 19731 | :rtype: (str) |
| 19732 | """ |
| 19733 | if color is not None: |
| 19734 | set_options(input_elements_background_color=color) |
| 19735 | return DEFAULT_INPUT_ELEMENTS_COLOR |
| 19736 | |
| 19737 | |
| 19738 | def theme_input_text_color(color=None): |
no test coverage detected