Tanyaaaaaaaaaa commited on
Commit
d56e61c
Β·
verified Β·
1 Parent(s): d5b9002

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -4
app.py CHANGED
@@ -295,10 +295,16 @@ label, .gr-checkbox-label span { /* Target labels and checkbox labels */
295
  .gr-block .gr-box > div > p, .gr-block .gr-box > div > span {
296
  color: #E0E0E0 !important;
297
  }
298
- /* You might need to adjust button font styling with more specific selectors if this doesn't work */
299
- button.gr-button-primary {
300
- font-family: 'Exo 2', sans-serif !important;
301
- /* The theme's primary_hue should handle button background and text color for contrast */
 
 
 
 
 
 
302
  }
303
  """
304
 
 
295
  .gr-block .gr-box > div > p, .gr-block .gr-box > div > span {
296
  color: #E0E0E0 !important;
297
  }
298
+ /* Style for the Reset Button */
299
+ button.gr-button-primary.gr-button-lg { /* Target primary large buttons (default for gr.Button) */
300
+ background-color: #513B8B !important; /* Your desired background color */
301
+ color: #FFFFFF !important; /* White text color */
302
+ border-color: #513B8B !important; /* Match border color to background */
303
+ }
304
+
305
+ button.gr-button-primary.gr-button-lg:hover {
306
+ background-color: #9b87f5 !important; /* Hover background color */
307
+ border-color: #9b87f5 !important; /* Match hover border color */
308
  }
309
  """
310