-
Notifications
You must be signed in to change notification settings - Fork 3
/
resources.py
46 lines (36 loc) · 1.67 KB
/
resources.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from tkinter import Image
import tkinter as tk
from PIL import ImageTk, Image
minsizew = 560
minsizeh = 755
resources_path = "./resources/" # Global location of resource files
# -------------------------------------------------------------
# Fonts
# -------------------------------------------------------------
font_name = "Work Sans Regular"
font_weight = "normal"
font_path = resources_path + "WorkSans-Regular.ttf"
label_font_name = "Work Sans Medium"
label_font_weight = "normal"
label_font_path = resources_path + "WorkSans-Medium.ttf"
# -------------------------------------------------------------
# Loading Images/Resources (all loading should be done here in the future) and Colors
# -------------------------------------------------------------
bg_image_path = resources_path + "StarBackground.png"
browse_button_img_path = resources_path + "Button1.png"
stems_bg_path = resources_path + "StemOptions.png"
black_pixel_path = resources_path + "blackPixel.png"
check_on_img_path = resources_path + "checkOn.png"
check_off_img_path = resources_path + "checkOff.png"
freq_bg_path = resources_path + "FreqLine2.png"
save_button_img_path = resources_path + "Button1.png"
split_button_img_path = resources_path + "SplitButton.png"
download_pg_browse_button_img_path = resources_path + "Button2.png"
download_button_img_path = resources_path + "DownloadButton.png"
# Colors
mid_block_color = "#AAFF65" # radio button fill-in color: bright green
button_color = "#7D50FF" # purple box color
prog_bar_color = "#EABEFF" # orchid purple progress bar
yt_prog_bar_color = "#FEAA80"
download_pg_frame_color = "#DA5578" # light pink frames.
# -------------------------------------------------------------