TroglodyteDerivations commited on
Commit
c96a37a
·
verified ·
1 Parent(s): b4f0b8c

Update button_color_parameter to #FFA500, button_hover_color parameter to #FFC0CB, and button_active_color parameter to #FFD700

Browse files

In this example, I have changed the button_color parameter to #FFA500, the button_hover_color parameter to #FFC0CB, and the button_active_color parameter to #FFD700. These colors are bright and will make the buttons stand out. The base_color parameter is used to set the background color of the application. I've set it to #333333, which is a dark gray color. The other parameters are used to set the font, font size, font weight, font style, button border color, button border width, button border radius, input border color, input border width, input border radius, input background color, input text color, output border color, output border width, output border radius, output background color, output text color, label color, label font size, label font weight, label font style, label background color, label border color, label border width, label border radius, header color, header font size, header font weight, header font style, header background color, header border color, header border width, header border radius, footer color, footer font size, footer font weight, footer font style, footer background color, footer border color, and footer border width for the app.

Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -41,9 +41,9 @@ app = gr.Interface(
41
  "font_size": 18,
42
  "font_weight": "bold",
43
  "font_style": "italic",
44
- "button_color": "#666666",
45
- "button_hover_color": "#999999",
46
- "button_active_color": "#CCCCCC",
47
  "button_border_color": "#333333",
48
  "button_border_width": 2,
49
  "button_border_radius": 5,
 
41
  "font_size": 18,
42
  "font_weight": "bold",
43
  "font_style": "italic",
44
+ "button_color": "#FFA500",
45
+ "button_hover_color": "#FFC0CB",
46
+ "button_active_color": "#FFD700",
47
  "button_border_color": "#333333",
48
  "button_border_width": 2,
49
  "button_border_radius": 5,