Spaces:
Runtime error
Runtime error
ui changes
Browse files
app.py
CHANGED
|
@@ -19,13 +19,15 @@ from bs4 import BeautifulSoup
|
|
| 19 |
import numpy as np
|
| 20 |
import tempfile
|
| 21 |
|
|
|
|
|
|
|
| 22 |
|
| 23 |
def add_bg_from_url():
|
| 24 |
st.markdown(
|
| 25 |
f"""
|
| 26 |
<style>
|
| 27 |
.stApp {{
|
| 28 |
-
background-image: linear-gradient(#
|
| 29 |
background-attachment: fixed;
|
| 30 |
background-size: cover
|
| 31 |
|
|
|
|
| 19 |
import numpy as np
|
| 20 |
import tempfile
|
| 21 |
|
| 22 |
+
CURRENT_THEME = "blue"
|
| 23 |
+
IS_DARK_THEME = True
|
| 24 |
|
| 25 |
def add_bg_from_url():
|
| 26 |
st.markdown(
|
| 27 |
f"""
|
| 28 |
<style>
|
| 29 |
.stApp {{
|
| 30 |
+
background-image: linear-gradient(135deg,#061c2c,#084e69 35%,#3e7e89);
|
| 31 |
background-attachment: fixed;
|
| 32 |
background-size: cover
|
| 33 |
|