Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Upload ui_theme.py
Browse files- ui_theme.py +33 -0
ui_theme.py
CHANGED
|
@@ -444,6 +444,39 @@ DARK_THEME_CSS = """
|
|
| 444 |
--rule: rgba(255, 255, 255, 0.08);
|
| 445 |
--rule-soft: rgba(255, 255, 255, 0.05);
|
| 446 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 447 |
</style>
|
| 448 |
"""
|
| 449 |
|
|
|
|
| 444 |
--rule: rgba(255, 255, 255, 0.08);
|
| 445 |
--rule-soft: rgba(255, 255, 255, 0.05);
|
| 446 |
}
|
| 447 |
+
|
| 448 |
+
.stApp [data-baseweb="select"] > div,
|
| 449 |
+
.stApp [data-baseweb="select"] > div *,
|
| 450 |
+
.stApp [data-baseweb="input"] [data-baseweb="base-input"],
|
| 451 |
+
.stApp [data-baseweb="input"] [data-baseweb="base-input"] *,
|
| 452 |
+
.stApp [data-testid="stTextInputRootElement"] [data-baseweb="base-input"],
|
| 453 |
+
.stApp [data-testid="stTextInputRootElement"] input {
|
| 454 |
+
background-color: var(--surface) !important;
|
| 455 |
+
color: var(--text-main) !important;
|
| 456 |
+
}
|
| 457 |
+
|
| 458 |
+
.stDataFrameGlideDataEditor {
|
| 459 |
+
--gdg-bg-cell: #15181b !important;
|
| 460 |
+
--gdg-bg-cell-medium: #1d2126 !important;
|
| 461 |
+
--gdg-bg-header: #24282d !important;
|
| 462 |
+
--gdg-bg-header-hovered: #2c3137 !important;
|
| 463 |
+
--gdg-bg-header-has-focus: #2c3137 !important;
|
| 464 |
+
--gdg-bg-group-header: #1d2126 !important;
|
| 465 |
+
--gdg-bg-group-header-hovered: #24282d !important;
|
| 466 |
+
--gdg-bg-bubble: #24282d !important;
|
| 467 |
+
--gdg-bg-bubble-selected: #2c3137 !important;
|
| 468 |
+
--gdg-text-dark: #f5f7f8 !important;
|
| 469 |
+
--gdg-text-medium: #c1c6cb !important;
|
| 470 |
+
--gdg-text-light: #a2a8ae !important;
|
| 471 |
+
--gdg-text-header: #c1c6cb !important;
|
| 472 |
+
--gdg-text-header-selected: #f5f7f8 !important;
|
| 473 |
+
--gdg-text-group-header: #c1c6cb !important;
|
| 474 |
+
--gdg-text-bubble: #c1c6cb !important;
|
| 475 |
+
--gdg-border-color: rgba(255, 255, 255, 0.08) !important;
|
| 476 |
+
--gdg-horizontal-border-color: rgba(255, 255, 255, 0.05) !important;
|
| 477 |
+
--gdg-bg-icon-header: rgba(255, 255, 255, 0.3) !important;
|
| 478 |
+
--gdg-fg-icon-header: #f5f7f8 !important;
|
| 479 |
+
}
|
| 480 |
</style>
|
| 481 |
"""
|
| 482 |
|