Skip to content

Commit

Permalink
Merge pull request #2 from AshhadDevLab/dev-02
Browse files Browse the repository at this point in the history
Commit: main python file 📄| Added font color for labels
  • Loading branch information
AshhadDevLab authored Dec 27, 2023
2 parents f40d3c9 + fa86eec commit 61e75eb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions enigma_guard.py
Original file line number Diff line number Diff line change
Expand Up @@ -843,21 +843,21 @@ def ashhad_github_callback():
ashhad_github = customtkinter.CTkButton(frame_main_win, width=30, height=30, image=ashhad_github_img,text="", bg_color="#000000", fg_color="#000000",hover=True,hover_color="#42414D",command=ashhad_github_callback)
ashhad_github.place(x=1515,y=27)

total_encryptions_decryptions_label = customtkinter.CTkLabel(analytics_frame_win, width=47,height=44,text="00",font=armin_grotesk_ultra_bold_30,bg_color="#000000",fg_color="#000000")
total_encryptions_decryptions_label = customtkinter.CTkLabel(analytics_frame_win, text_color="#FFFFFF",width=47,height=44,text="00",font=armin_grotesk_ultra_bold_30,bg_color="#000000",fg_color="#000000")
total_encryptions_decryptions_label.place(x=157,y=180)

total_app_time = customtkinter.CTkLabel(analytics_frame_win, text="00 hrs", font=armin_grotesk_ultra_bold_30, width=47,height=44,bg_color="#000000",fg_color="#000000")
total_app_time = customtkinter.CTkLabel(analytics_frame_win, text_color="#FFFFFF",text="00 hrs", font=armin_grotesk_ultra_bold_30, width=47,height=44,bg_color="#000000",fg_color="#000000")
total_app_time.place(x=1350 ,y=190)

active_keys = customtkinter.CTkLabel(analytics_frame_win, text="00", font=armin_grotesk_ultra_bold_30,width=47,height=44,bg_color="#000000",fg_color="#000000")
active_keys = customtkinter.CTkLabel(analytics_frame_win, text_color="#FFFFFF",text="00", font=armin_grotesk_ultra_bold_30,width=47,height=44,bg_color="#000000",fg_color="#000000")
active_keys.place(x=1100,y=190)

#total encryptions keys analytics frame
total_encryptions_analytic_frame_label = customtkinter.CTkLabel(analytics_frame_win, text="00", font=armin_grotesk_ultra_bold_30,width=47,height=44,bg_color="#000000",fg_color="#000000")
total_encryptions_analytic_frame_label = customtkinter.CTkLabel(analytics_frame_win, text_color="#FFFFFF",text="00", font=armin_grotesk_ultra_bold_30,width=47,height=44,bg_color="#000000",fg_color="#000000")
total_encryptions_analytic_frame_label.place(x=524,y=190)

#total decryptions keys analytics frame
total_decryptions_analytic_frame_label = customtkinter.CTkLabel(analytics_frame_win, text="00", font=armin_grotesk_ultra_bold_30,width=47,height=44,bg_color="#000000",fg_color="#000000")
total_decryptions_analytic_frame_label = customtkinter.CTkLabel(analytics_frame_win, text_color="#FFFFFF",text="00", font=armin_grotesk_ultra_bold_30,width=47,height=44,bg_color="#000000",fg_color="#000000")
total_decryptions_analytic_frame_label.place(x=814,y=190)

def save_elapsed_time(elapsed_hours):
Expand Down Expand Up @@ -1121,7 +1121,7 @@ def update_pygal_analytics_graph(pygal_analytics_graph):
settings_deselect_tab.place(x=17,y=707)

#encrypt window
total_encryptions_decryptions_label2 = customtkinter.CTkLabel(encrypt_frame_win, width=47,height=44,text="00",font=armin_grotesk_ultra_bold_30,bg_color="#000000",fg_color="#000000")
total_encryptions_decryptions_label2 = customtkinter.CTkLabel(encrypt_frame_win, text_color="#FFFFFF",width=47,height=44,text="00",font=armin_grotesk_ultra_bold_30,bg_color="#000000",fg_color="#000000")
total_encryptions_decryptions_label2.place(x=157,y=180)

analytics_deselect_tab = customtkinter.CTkButton(encrypt_frame_win, text="",image=analytics_tab_deselect_img,bg_color="#1FFFA9",fg_color="#1FFFA9",hover=False,command=analytics_win)
Expand All @@ -1140,7 +1140,7 @@ def update_pygal_analytics_graph(pygal_analytics_graph):
settings_deselect_tab.place(x=17,y=707)

#decrypt window
total_encryptions_decryptions_label3 = customtkinter.CTkLabel(decrypt_frame_win, width=47,height=44,text="00",font=armin_grotesk_ultra_bold_30,bg_color="#000000",fg_color="#000000")
total_encryptions_decryptions_label3 = customtkinter.CTkLabel(decrypt_frame_win, text_color="#FFFFFF",width=47,height=44,text="00",font=armin_grotesk_ultra_bold_30,bg_color="#000000",fg_color="#000000")
total_encryptions_decryptions_label3.place(x=157,y=180)

analytics_tab_deselect = customtkinter.CTkButton(decrypt_frame_win, text="",image=analytics_tab_deselect_img,bg_color="#1FFFA9",fg_color="#1FFFA9",hover=False,command=analytics_win)
Expand All @@ -1162,7 +1162,7 @@ def update_pygal_analytics_graph(pygal_analytics_graph):
decryption_type_optionmenu_img_frame.place(x=410,y=122)

#keys window
total_encryptions_decryptions_label4 = customtkinter.CTkLabel(keys_frame_win, width=47,height=44,text="00",font=armin_grotesk_ultra_bold_30,bg_color="#000000",fg_color="#000000")
total_encryptions_decryptions_label4 = customtkinter.CTkLabel(keys_frame_win, text_color="#FFFFFF",width=47,height=44,text="00",font=armin_grotesk_ultra_bold_30,bg_color="#000000",fg_color="#000000")
total_encryptions_decryptions_label4.place(x=157,y=180)

analytics_tab_deselect = customtkinter.CTkButton(keys_frame_win, text="",image=analytics_tab_deselect_img,bg_color="#1FFFA9",fg_color="#1FFFA9",hover=False,command=analytics_win)
Expand All @@ -1181,7 +1181,7 @@ def update_pygal_analytics_graph(pygal_analytics_graph):
settings_deselect_tab.place(x=17,y=707)

#settings window
total_encryptions_decryptions_label5 = customtkinter.CTkLabel(settings_frame_win, width=47,height=44,text="00",font=armin_grotesk_ultra_bold_30,bg_color="#000000",fg_color="#000000")
total_encryptions_decryptions_label5 = customtkinter.CTkLabel(settings_frame_win, text_color="#FFFFFF",width=47,height=44,text="00",font=armin_grotesk_ultra_bold_30,bg_color="#000000",fg_color="#000000")
total_encryptions_decryptions_label5.place(x=157,y=180)

analytics_tab_deselect = customtkinter.CTkButton(settings_frame_win, text="",image=analytics_tab_deselect_img,bg_color="#1FFFA9",fg_color="#1FFFA9",hover=False,command=analytics_win)
Expand Down

0 comments on commit 61e75eb

Please sign in to comment.