AIRider commited on
Commit
3fdbbb9
·
verified ·
1 Parent(s): 8f277e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -1
app.py CHANGED
@@ -61,6 +61,12 @@ h1 {
61
  text-align: center;
62
  font-family: 'Pretendard', sans-serif;
63
  }
 
 
 
 
 
 
64
  .footer-content {
65
  text-align: center;
66
  margin-top: 2rem;
@@ -89,7 +95,22 @@ h1 {
89
 
90
  # Gradio 인터페이스 생성
91
  with gr.Blocks(
92
- theme=gr.themes.Default(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  font=("Pretendard", "sans-serif")
94
  ),
95
  css=css
 
61
  text-align: center;
62
  font-family: 'Pretendard', sans-serif;
63
  }
64
+ .gr-button-primary {
65
+ background-color: #F97316 !important;
66
+ }
67
+ .gr-button-primary:hover {
68
+ background-color: #EA580C !important;
69
+ }
70
  .footer-content {
71
  text-align: center;
72
  margin-top: 2rem;
 
95
 
96
  # Gradio 인터페이스 생성
97
  with gr.Blocks(
98
+ theme=gr.themes.Soft(
99
+ primary_hue=gr.themes.Color(
100
+ c50="#FFF7ED",
101
+ c100="#FFEDD5",
102
+ c200="#FED7AA",
103
+ c300="#FDBA74",
104
+ c400="#FB923C",
105
+ c500="#F97316",
106
+ c600="#EA580C",
107
+ c700="#C2410C",
108
+ c800="#9A3412",
109
+ c900="#7C2D12",
110
+ c950="#431407",
111
+ ),
112
+ secondary_hue="zinc",
113
+ neutral_hue="zinc",
114
  font=("Pretendard", "sans-serif")
115
  ),
116
  css=css