PringlePeanut commited on
Commit
ec572ac
·
verified ·
1 Parent(s): a9e8e0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -121,6 +121,19 @@ topics = """
121
 
122
  🕹️ Feeling
123
  """
 
 
 
 
 
 
 
 
 
 
 
 
 
124
 
125
  # Setup the Gradio Blocks interface with custom layout components
126
  with gr.Blocks(theme='ysharma/llamas') as demo:
 
121
 
122
  🕹️ Feeling
123
  """
124
+ theme = gr.themes.Base().set(
125
+ background_fill_primary='#FAB9CB', # Light pink background
126
+ background_fill_primary_dark='#AFC9AD', # Dark teal background
127
+ background_fill_secondary='#FFCCBC', # Light orange background
128
+ background_fill_secondary_dark='#D84315', # Dark orange background
129
+ border_color_accent='#FFAB40', # Accent border color
130
+ border_color_accent_dark='#FF6D00', # Dark accent border color
131
+ border_color_accent_subdued='#FF8A65', # Subdued accent border color
132
+ border_color_primary='#2A2A2A', # Primary border color
133
+ block_border_color='#2A2A2A', # Block border color
134
+ button_primary_background_fill='#2A2A2A', # Primary button background color
135
+ button_primary_background_fill_dark='#2A2A2A' # Dark primary button background color
136
+ )
137
 
138
  # Setup the Gradio Blocks interface with custom layout components
139
  with gr.Blocks(theme='ysharma/llamas') as demo: