MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / theme_input_background_color

Function theme_input_background_color

PySimpleGUI/PySimpleGUI.py:19726–19735  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

19724
19725
19726def 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
19738def theme_input_text_color(color=None):

Callers 5

__init__Method · 0.85
__init__Method · 0.85
__init__Method · 0.85
__init__Method · 0.85

Calls 1

set_optionsFunction · 0.85

Tested by

no test coverage detected