Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- .claude/settings.local.json +3 -1
- gradio_app.py +14 -0
.claude/settings.local.json
CHANGED
|
@@ -77,7 +77,9 @@
|
|
| 77 |
"Bash(grep -n -A2 -B2 \"model_name\" gradio_app.py)",
|
| 78 |
"Bash(timeout 20 python gradio_app.py)",
|
| 79 |
"Bash(grep -n \"section-header\" /Users/deep-diver/Developers/auto-diffusers/gradio_app.py)",
|
| 80 |
-
"Bash(grep -n \"memory-card\" /Users/deep-diver/Developers/auto-diffusers/gradio_app.py)"
|
|
|
|
|
|
|
| 81 |
],
|
| 82 |
"deny": []
|
| 83 |
},
|
|
|
|
| 77 |
"Bash(grep -n -A2 -B2 \"model_name\" gradio_app.py)",
|
| 78 |
"Bash(timeout 20 python gradio_app.py)",
|
| 79 |
"Bash(grep -n \"section-header\" /Users/deep-diver/Developers/auto-diffusers/gradio_app.py)",
|
| 80 |
+
"Bash(grep -n \"memory-card\" /Users/deep-diver/Developers/auto-diffusers/gradio_app.py)",
|
| 81 |
+
"Bash(grep -n -A 5 \"Configure your system hardware\" /Users/deep-diver/Developers/auto-diffusers/gradio_app.py)",
|
| 82 |
+
"Bash(grep -n -A 5 \"Configure the AI model\" /Users/deep-diver/Developers/auto-diffusers/gradio_app.py)"
|
| 83 |
],
|
| 84 |
"deny": []
|
| 85 |
},
|
gradio_app.py
CHANGED
|
@@ -586,6 +586,20 @@ def create_gradio_interface():
|
|
| 586 |
border: 1px solid #555 !important;
|
| 587 |
}
|
| 588 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 589 |
/* Paper Inputs */
|
| 590 |
input[type="text"],
|
| 591 |
input[type="number"],
|
|
|
|
| 586 |
border: 1px solid #555 !important;
|
| 587 |
}
|
| 588 |
|
| 589 |
+
/* Dark mode section header text */
|
| 590 |
+
@media (prefers-color-scheme: dark) {
|
| 591 |
+
.section-header p {
|
| 592 |
+
color: #f0f0f0 !important;
|
| 593 |
+
}
|
| 594 |
+
}
|
| 595 |
+
|
| 596 |
+
.dark .section-header p,
|
| 597 |
+
.gradio-container.dark .section-header p,
|
| 598 |
+
html.dark .section-header p,
|
| 599 |
+
body.dark .section-header p {
|
| 600 |
+
color: #f0f0f0 !important;
|
| 601 |
+
}
|
| 602 |
+
|
| 603 |
/* Paper Inputs */
|
| 604 |
input[type="text"],
|
| 605 |
input[type="number"],
|