Commit
•
c232cf6
1
Parent(s):
4ebc87a
fix: dark mode issues
Browse files
app.py
CHANGED
@@ -16,6 +16,12 @@ css = """
|
|
16 |
#system_prompt_examples {
|
17 |
color: black;
|
18 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"""
|
20 |
|
21 |
demo = gr.TabbedInterface(
|
|
|
16 |
#system_prompt_examples {
|
17 |
color: black;
|
18 |
}
|
19 |
+
@media (prefers-color-scheme: dark) {
|
20 |
+
#system_prompt_examples {
|
21 |
+
color: white;
|
22 |
+
background-color: black;
|
23 |
+
}
|
24 |
+
}
|
25 |
"""
|
26 |
|
27 |
demo = gr.TabbedInterface(
|