Demo updates with new theme calls

This commit is contained in:
PySimpleGUI 2019-12-24 18:52:47 -05:00
parent 52700b0780
commit 5484b047c0
96 changed files with 3530 additions and 228 deletions

View file

@ -3,10 +3,12 @@ import sys
import PySimpleGUI as sg
# Usage of Tabs in PSG
#
# sg.set_options(background_color='cornsilk4',
# element_background_color='cornsilk2',
# input_elements_background_color='cornsilk2')
sg.set_options(background_color='cornsilk4',
element_background_color='cornsilk2',
input_elements_background_color='cornsilk2')
sg.theme('Light Green 5')
tab1_layout = [[sg.Text('This is inside tab 1', background_color='darkslateblue', text_color='white')],
[sg.Input(key='-in0-')]]