Spaces:
Running
Running
Sebastiankay
commited on
Commit
•
e6f5266
1
Parent(s):
d766082
8. Sept. 2024, 03:26
Browse files
app.py
CHANGED
@@ -25,16 +25,19 @@ RES = os.path.join(os.path.dirname(__file__), "_res")
|
|
25 |
|
26 |
gr.set_static_paths(paths=["_res/assets/"])
|
27 |
|
28 |
-
|
|
|
|
|
29 |
custom_js = RES + "/_custom.js"
|
30 |
|
31 |
-
title = "Bilder Builder"
|
32 |
-
|
33 |
theme = gr.themes.Soft(
|
34 |
primary_hue="cyan",
|
35 |
radius_size="sm",
|
|
|
36 |
)
|
37 |
|
|
|
|
|
38 |
|
39 |
# MARK: READ EXIF
|
40 |
def read_exif(image_path):
|
|
|
25 |
|
26 |
gr.set_static_paths(paths=["_res/assets/"])
|
27 |
|
28 |
+
fontawesome_css = RES + "/fontawesome.5.all.css"
|
29 |
+
catppuccin_css = RES + "/bootstrapp-catppuccin-mocha.css"
|
30 |
+
custom_css = fontawesome_css + ";" + RES + "/_custom.css"
|
31 |
custom_js = RES + "/_custom.js"
|
32 |
|
|
|
|
|
33 |
theme = gr.themes.Soft(
|
34 |
primary_hue="cyan",
|
35 |
radius_size="sm",
|
36 |
+
neutral_hue=gr.themes.Color(c100="#a6adc8", c200="#9399b2", c300="#7f849c", c400="#6c7086", c50="#cdd6f4", c500="#585b70", c600="#45475a", c700="#313244", c800="#1e1e2e", c900="#181825", c950="#11111b"),
|
37 |
)
|
38 |
|
39 |
+
title = "Bilder Builder"
|
40 |
+
|
41 |
|
42 |
# MARK: READ EXIF
|
43 |
def read_exif(image_path):
|