figenc

[RADIOACTIVE] rsa and symmetric key encryption scripts and executables
git clone git://git.figbert.com/figenc.git
Log | Files | Refs | README

commit 925ff8dff8a103725247236bb6ab1b618d656dc2
parent 094f75274d119b868e84d117877182e1e5529234
Author: FIGBERT <figbertwelner@gmail.com>
Date:   Sun, 14 Jul 2019 11:52:55 -0700

Adding a .gitignore file and editing the color scheme slightly

Diffstat:
A.gitignore | 5+++++
MScripts/figENC.py | 17+++++++++--------
2 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -0,0 +1,4 @@ +#Ignoring the .vscode folder and all its contents, which contains personal settings +.vscode +#Ignoring the __pycache__ folder and all its contents, because it is compiled compiled +Scripts/__pycache__ +\ No newline at end of file diff --git a/Scripts/figENC.py b/Scripts/figENC.py @@ -342,7 +342,8 @@ header = tk.Label( justify=tk.CENTER, font=("Arial", "22"), bg="#643181", - fg="#B494C7" + fg="#F2DAFF", + pady="2" ) subheader = tk.Label( frame, @@ -350,8 +351,8 @@ subheader = tk.Label( justify=tk.CENTER, font=("Arial", "16"), bg="#643181", - fg="#B494C7", - pady="5" + fg="#F2DAFF", + pady="2" ) header.pack(fill="x", side="top") subheader.pack(fill="x", side="top") @@ -364,7 +365,7 @@ action_label = tk.Label( justify=tk.LEFT, font=("Arial", "16"), bg="#1A181C", - fg="#ACA0B2", + fg="#F2DAFF", ) action_label.pack() action_list = tk.Listbox( @@ -372,7 +373,7 @@ action_list = tk.Listbox( justify=tk.CENTER, font=("Arial", "14"), bg="#1A181C", - fg="#B494C7", + fg="#ACA0B2", selectbackground="#643181", selectmode=tk.SINGLE, relief=tk.SUNKEN, @@ -416,7 +417,7 @@ file_label = tk.Label( text="If you see this, the app broke", font=("Arial", "16"), bg="#1A181C", - fg="#ACA0B2" + fg="#F2DAFF" ) file_instructions = tk.Label( file_frame, @@ -441,7 +442,7 @@ passcode_label = tk.Label( text="If you see this, the app broke", font=("Arial", "16"), bg="#1A181C", - fg="#ACA0B2" + fg="#F2DAFF" ) passcode_instructions = tk.Label( passcode_frame, @@ -467,7 +468,7 @@ save_label = tk.Label( text="Save location for keys", font=("Arial", "16"), bg="#1A181C", - fg="#ACA0B2" + fg="#F2DAFF" ) save_instructions = tk.Label( save,