Skip to content

Commit 721465f

Browse files
committed
Hotfix, changed default theme to light
1 parent 0006165 commit 721465f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python_password/PyPassword.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ class PyPassword(MDApp):
6767
def __init__(self, **kwargs):
6868
super().__init__(**kwargs)
6969
self.theme_cls.primary_palette = 'Indigo'
70-
self.theme_cls.theme_style = 'Dark'
71-
self.text_color_hex = 'ffffff'
70+
self.theme_cls.theme_style = 'Light'
71+
self.text_color_hex = '111111'
7272
self.passwords = []
7373
self.info = {
7474
'name': 'Python Password',

0 commit comments

Comments
 (0)