如何直观的查看有效主题:

import PySimpleGUI as sg
sg.theme_previewer()
#运行后输出如下图:

如何获取有效主题

print(sg.theme_list())
#运行后输出如下图:

设定主题

sg.theme('主题名字')#用sg.theme_list()中的主题名字
#在设定主题时,不输入主题名称或者输入的名称不存在。系统会自动调用一个随机的主题。并显示提示

修改主题中的某些设置
theme_background_color
theme_border_width
theme_button_color
theme_element_background_color
theme_element_text_color
theme_input_background_color
theme_input_text_color
theme_progress_bar_border_width
theme_progress_bar_color
theme_slider_border_width
theme_slider_color
theme_text_color

sg.theme_background_color('red')
sg.theme_text_color('green')
sg.theme_button_color(('yellow','#6D9F85'))
sg.PopupGetText('弹窗测试'*3,keep_on_top=True)