Spaces:
Sleeping
Sleeping
Shankar
commited on
Commit
·
27b25d9
1
Parent(s):
418816e
feat: change default theme to light
Browse files
app.py
CHANGED
@@ -2,6 +2,7 @@ import gradio as gr
|
|
2 |
import pandas as pd
|
3 |
import plotly.express as px
|
4 |
import requests
|
|
|
5 |
|
6 |
|
7 |
def get_financial_summary():
|
@@ -74,7 +75,7 @@ def restore_chat():
|
|
74 |
# Frontend
|
75 |
|
76 |
with gr.Blocks(
|
77 |
-
theme="
|
78 |
css="""
|
79 |
#profile-pic-wrapper {
|
80 |
width: 100px;
|
|
|
2 |
import pandas as pd
|
3 |
import plotly.express as px
|
4 |
import requests
|
5 |
+
from gradio.themes.base import Default
|
6 |
|
7 |
|
8 |
def get_financial_summary():
|
|
|
75 |
# Frontend
|
76 |
|
77 |
with gr.Blocks(
|
78 |
+
theme=Default(mode="light"),
|
79 |
css="""
|
80 |
#profile-pic-wrapper {
|
81 |
width: 100px;
|