Spaces:
Running
Running
update title
Browse files
app.css
CHANGED
@@ -21,7 +21,13 @@
|
|
21 |
|
22 |
.left_header h1 {
|
23 |
margin-top: 10px;
|
24 |
-
color:
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
26 |
|
27 |
.right_panel {
|
|
|
21 |
|
22 |
.left_header h1 {
|
23 |
margin-top: 10px;
|
24 |
+
color: #333;
|
25 |
+
}
|
26 |
+
|
27 |
+
@media (prefers-color-scheme: dark) {
|
28 |
+
.left_header h1 {
|
29 |
+
color: white;
|
30 |
+
}
|
31 |
}
|
32 |
|
33 |
.right_panel {
|
app.py
CHANGED
@@ -280,7 +280,7 @@ with gr.Blocks(css_paths="app.css") as demo:
|
|
280 |
header = gr.HTML("""
|
281 |
<div class="left_header">
|
282 |
<img src="https://huggingface.co/spaces/akhaliq/anycoder/resolve/main/Animated_Logo_Video_Ready.gif" width="200px" />
|
283 |
-
<h1>
|
284 |
</div>
|
285 |
""")
|
286 |
current_model_display = gr.Markdown("**Current Model:** DeepSeek V3", visible=False)
|
|
|
280 |
header = gr.HTML("""
|
281 |
<div class="left_header">
|
282 |
<img src="https://huggingface.co/spaces/akhaliq/anycoder/resolve/main/Animated_Logo_Video_Ready.gif" width="200px" />
|
283 |
+
<h1>AnyCoder</h1>
|
284 |
</div>
|
285 |
""")
|
286 |
current_model_display = gr.Markdown("**Current Model:** DeepSeek V3", visible=False)
|