BhumikaMak commited on
Commit
b0d2191
·
1 Parent(s): 61f9d17

Update: font styling

Browse files
Files changed (1) hide show
  1. app.py +3 -7
app.py CHANGED
@@ -52,17 +52,13 @@ with gr.Blocks() as interface:
52
  <style>
53
  body {
54
  background-color: black;
55
- color: white;
56
  }
57
  .gradio-container {
58
- color: white;
59
  }
60
  h1, h2, h3, h4, h5, h6, p, label {
61
- color: white;
62
- }
63
- /* Specific rule for Markdown content */
64
- .gr-markdown {
65
- color: white !important;
66
  }
67
  </style>
68
  """)
 
52
  <style>
53
  body {
54
  background-color: black;
55
+ color: white; /* Set the default text color */
56
  }
57
  .gradio-container {
58
+ color: white; /* Ensure Gradio components also have white text */
59
  }
60
  h1, h2, h3, h4, h5, h6, p, label {
61
+ color: white; /* Make all headings and labels white */
 
 
 
 
62
  }
63
  </style>
64
  """)