Jonas Wiesli commited on
Commit
8a96d59
1 Parent(s): 676328b

adjusted colors

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. style.css +7 -0
app.py CHANGED
@@ -5,7 +5,7 @@ theme = gr.themes.Monochrome()
5
 
6
  openai.api_key = "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"
7
 
8
- with gr.Blocks(theme=theme, css=".gradio-container {background-color: #00F}") as iface:
9
  chatbot = []
10
  msg = []
11
  accusationButtons = []
 
5
 
6
  openai.api_key = "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"
7
 
8
+ with gr.Blocks(theme=theme, css=".gradio-container{background-color:#f3e8ff}.tabitem,button{background-color:#002366}") as iface:
9
  chatbot = []
10
  msg = []
11
  accusationButtons = []
style.css ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ .gradio-container {
2
+ background-color: #f3e8ff;
3
+ }
4
+
5
+ .tabitem, button {
6
+ background-color: #002366;
7
+ }