^_^ ^_^ ^_^ ^_^ ^_^

This commit is contained in:
henryruhs 2023-06-23 22:01:31 +02:00
parent 6169955deb
commit f72216a0fb
2 changed files with 2 additions and 2 deletions

View File

@ -153,6 +153,6 @@
}
},
"RoopDonate": {
"text_color": ["#fd79a8", "#fd79a8"]
"text_color": ["#3a7ebf", "gray60"]
}
}

View File

@ -94,7 +94,7 @@ def create_root(start: Callable[[], None], destroy: Callable[[], None]) -> ctk.C
status_label = ctk.CTkLabel(root, text=None, justify='center')
status_label.place(relx=0.1, rely=0.9, relwidth=0.8)
donate_label = ctk.CTkLabel(root, text='Donate to project ^_^', justify='center', cursor='hand2')
donate_label = ctk.CTkLabel(root, text='^_^ Donate to project ^_^', justify='center', cursor='hand2')
donate_label.place(relx=0.1, rely=0.95, relwidth=0.8)
donate_label.configure(text_color=ctk.ThemeManager.theme.get('RoopDonate').get('text_color'))
donate_label.bind('<Button>', lambda event: webbrowser.open('https://github.com/sponsors/s0md3v'))