Skip to content

Commit

Permalink
Merge pull request #1983 from PySimpleGUI/Dev-latest
Browse files Browse the repository at this point in the history
Addition of Material1 and Material2 "Look and  Feel Settings"
  • Loading branch information
PySimpleGUI committed Sep 17, 2019
2 parents 074b273 + 3db33ab commit 7e38d2f
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion PySimpleGUI.py
@@ -1,5 +1,5 @@
#!/usr/bin/python3
version = __version__ = "4.5.0.13 Unreleased Mac Buttons experimental Justify fix"
version = __version__ = "4.5.0.14 Unreleased Mac Buttons experimental Justify fix"


# 888888ba .d88888b oo dP .88888. dP dP dP
Expand Down Expand Up @@ -9514,6 +9514,32 @@ def SetOptions(icon=None, button_color=None, element_size=(None, None), button_e
'BORDER': 1, 'SLIDER_DEPTH': 1,
'PROGRESS_DEPTH': 0},

'Material1': {'BACKGROUND': '#E3F2FD',
'TEXT': '#000000',
'INPUT': '#86A8FF',
'TEXT_INPUT': '#000000',
'SCROLL': '#86A8FF', #I can't see it change, so I don't know it is good color.
'BUTTON': ('#FFFFFF', '#5079D3'),
'PROGRESS': DEFAULT_PROGRESS_BAR_COLOR,
'BORDER': 0, 'SLIDER_DEPTH': 0,
'PROGRESS_DEPTH': 0,
'ACCENT1': '#FF0266',
'ACCENT2': '#FF5C93',
'ACCENT3': '#C5003C'},

'Material2': {'BACKGROUND': '#FAFAFA',
'TEXT': '#000000',
'INPUT': '#004EA1',
'TEXT_INPUT': '#FFFFFF',
'SCROLL': '#5EA7FF', #I can't see it change, so I don't know it is good color.
'BUTTON': ('#FFFFFF', '#0079D3'), #based on Reddit color
'PROGRESS': DEFAULT_PROGRESS_BAR_COLOR,
'BORDER': 0, 'SLIDER_DEPTH': 0,
'PROGRESS_DEPTH': 0,
'ACCENT1': '#FF0266',
'ACCENT2': '#FF5C93',
'ACCENT3': '#C5003C'},

'Reddit': {'BACKGROUND': '#ffffff',
'TEXT': '#1a1a1b',
'INPUT': '#dae0e6',
Expand Down

0 comments on commit 7e38d2f

Please sign in to comment.