youngtsai commited on
Commit
40da85f
·
1 Parent(s): 7018f10

text_size=gr.themes.sizes.text_lg

Browse files
Files changed (1) hide show
  1. app.py +9 -5
app.py CHANGED
@@ -1562,11 +1562,15 @@ english_logs_tab_button_js = """
1562
  return true;
1563
  }
1564
  """
1565
- THEME = gr.themes.Glass(primary_hue=gr.themes.colors.blue, secondary_hue=gr.themes.colors.orange).set(
1566
- button_primary_background_fill="*primary_300",
1567
- button_shadow="*block_shadow",
1568
- button_shadow_hover="*block_shadow"
1569
- )
 
 
 
 
1570
 
1571
  with gr.Blocks(theme=THEME, css=CSS) as demo:
1572
 
 
1562
  return true;
1563
  }
1564
  """
1565
+ THEME = gr.themes.Glass(
1566
+ primary_hue=gr.themes.colors.blue,
1567
+ secondary_hue=gr.themes.colors.orange,
1568
+ text_size=gr.themes.sizes.text_lg
1569
+ ).set(
1570
+ button_primary_background_fill="*primary_300",
1571
+ button_shadow="*block_shadow",
1572
+ button_shadow_hover="*block_shadow"
1573
+ )
1574
 
1575
  with gr.Blocks(theme=THEME, css=CSS) as demo:
1576