aditibera commited on
Commit
8c9e62c
·
verified ·
1 Parent(s): 38f3d26

updated theme

Browse files
Files changed (1) hide show
  1. app.py +14 -13
app.py CHANGED
@@ -114,20 +114,21 @@ class MyCustomTheme(gr.themes.Base):
114
  def __init__(self):
115
  super().__init__(
116
  primary_hue=colors.green, # You can still use named hues for accents
117
- neutral_hue=colors.Color(
118
  name="custom_offwhite",
119
- c50="#fcf1db", # lightest
120
- c100="#fcf1db", # you can repeat or darken progressively
121
- c200="#f5e5c6",
122
- c300="#e8d6af",
123
- c400="#d9c298",
124
- c500="#caae83", # base
125
- c600="#b89c70",
126
- c700="#a28a5f",
127
- c800="#8e794f",
128
- c900="#7b6841",
129
- c950="#695936"
130
- ),
 
131
  font=fonts.GoogleFont("Poppins")
132
  )
133
 
 
114
  def __init__(self):
115
  super().__init__(
116
  primary_hue=colors.green, # You can still use named hues for accents
117
+ neutral_hue = colors.Color(
118
  name="custom_offwhite",
119
+ c50="#fcf1db",
120
+ c100="#fcf1db",
121
+ c200="#fcf1db",
122
+ c300="#fcf1db",
123
+ c400="#fcf1db",
124
+ c500="#fcf1db",
125
+ c600="#fcf1db",
126
+ c700="#fcf1db",
127
+ c800="#fcf1db",
128
+ c900="#fcf1db",
129
+ c950="#fcf1db",
130
+ text="#0c265b", # Set navy blue text color
131
+ ),
132
  font=fonts.GoogleFont("Poppins")
133
  )
134