ovi054 commited on
Commit
08edc45
1 Parent(s): f98a5ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -9
app.py CHANGED
@@ -68,21 +68,13 @@ css="""
68
  }
69
  """
70
 
71
- theme = gr.themes.Default().set(
72
- button_secondary_background_fill='*primary_200',
73
- button_secondary_background_fill_hover='*primary_200',
74
- button_secondary_border_color='*primary_100',
75
- button_secondary_text_color='*button_primary_text_color'
76
- )
77
-
78
-
79
  examples = [
80
  "a tiny astronaut hatching from an egg on the moon",
81
  "a cat holding a sign that says hello world",
82
  "an anime illustration of a wiener schnitzel",
83
  ]
84
 
85
- with gr.Blocks(css=css, theme = theme) as demo:
86
  with gr.Column(elem_id="col-container"):
87
  gr.Markdown("# FLUX Dev with Replicate API")
88
 
 
68
  }
69
  """
70
 
 
 
 
 
 
 
 
 
71
  examples = [
72
  "a tiny astronaut hatching from an egg on the moon",
73
  "a cat holding a sign that says hello world",
74
  "an anime illustration of a wiener schnitzel",
75
  ]
76
 
77
+ with gr.Blocks(css=css) as demo:
78
  with gr.Column(elem_id="col-container"):
79
  gr.Markdown("# FLUX Dev with Replicate API")
80