Spaces:
Sleeping
Sleeping
Commit
·
8bec0f2
1
Parent(s):
155613f
Update: font styling
Browse files
app.py
CHANGED
@@ -65,7 +65,7 @@ with gr.Blocks() as interface:
|
|
65 |
}
|
66 |
.gr-button {
|
67 |
background-color: #007bff; /* Optional: Change button background color */
|
68 |
-
color: #
|
69 |
}
|
70 |
.gr-button:hover {
|
71 |
background-color: #0056b3; /* Optional: Change button hover color */
|
@@ -116,7 +116,7 @@ with gr.Blocks() as interface:
|
|
116 |
value=default_sample, # Set default selection
|
117 |
)
|
118 |
# Upload image below sample selection
|
119 |
-
gr.Markdown("
|
120 |
upload_image = gr.Image(
|
121 |
label="Upload an Image",
|
122 |
type="pil", # Correct type for file path compatibility
|
|
|
65 |
}
|
66 |
.gr-button {
|
67 |
background-color: #007bff; /* Optional: Change button background color */
|
68 |
+
color: #D3D3D3; /* Ensure button text is light grey */
|
69 |
}
|
70 |
.gr-button:hover {
|
71 |
background-color: #0056b3; /* Optional: Change button hover color */
|
|
|
116 |
value=default_sample, # Set default selection
|
117 |
)
|
118 |
# Upload image below sample selection
|
119 |
+
gr.Markdown("<p style='color: #FFFFFF>**Or upload your own image:**</p>")
|
120 |
upload_image = gr.Image(
|
121 |
label="Upload an Image",
|
122 |
type="pil", # Correct type for file path compatibility
|