Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,6 +7,12 @@ from main import TimeAdvisor
|
|
7 |
|
8 |
# Custom CSS for styling
|
9 |
custom_css = """
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
#tt-header {
|
11 |
text-align: center;
|
12 |
background: linear-gradient(45deg, #2c3e50, #b59b6d); /* Deep navy to gold */
|
@@ -36,7 +42,7 @@ custom_css = """
|
|
36 |
border: 3px solid #8a6c4d !important;
|
37 |
font-family: 'Georgia', serif !important;
|
38 |
min-height: 200px !important;
|
39 |
-
color:
|
40 |
}
|
41 |
.gradio-container {
|
42 |
background: url('https://img.freepik.com/free-photo/wooden-floor-background_53876-88628.jpg?t=st=1741254869~exp=1741258469~hmac=ab6efd526ec76fa0d1fae8ad5c5907e80b93cafbea5da290f64ddf6648b80a46&w=1380') !important;
|
|
|
7 |
|
8 |
# Custom CSS for styling
|
9 |
custom_css = """
|
10 |
+
:root {
|
11 |
+
--background-primary: #fcf5e5 !important; /* Light warm parchment */
|
12 |
+
--background-secondary: #e9dcc5 !important;
|
13 |
+
--text-color-primary: #2c3e50 !important; /* Dark navy for contrast */
|
14 |
+
--text-color-secondary: #543310 !important;
|
15 |
+
}
|
16 |
#tt-header {
|
17 |
text-align: center;
|
18 |
background: linear-gradient(45deg, #2c3e50, #b59b6d); /* Deep navy to gold */
|
|
|
42 |
border: 3px solid #8a6c4d !important;
|
43 |
font-family: 'Georgia', serif !important;
|
44 |
min-height: 200px !important;
|
45 |
+
color: var(--text-color-primary) !important;
|
46 |
}
|
47 |
.gradio-container {
|
48 |
background: url('https://img.freepik.com/free-photo/wooden-floor-background_53876-88628.jpg?t=st=1741254869~exp=1741258469~hmac=ab6efd526ec76fa0d1fae8ad5c5907e80b93cafbea5da290f64ddf6648b80a46&w=1380') !important;
|