nithinraok commited on
Commit
bfe85c3
·
1 Parent(s): 75c1233

push color update

Browse files

Signed-off-by: nithinraok <[email protected]>

Files changed (1) hide show
  1. app.py +13 -13
app.py CHANGED
@@ -340,22 +340,22 @@ examples = [
340
  ["data/example-yt_saTD1u8PorI.mp3"],
341
  ]
342
 
343
- # Define an NVIDIA-inspired theme
344
  nvidia_theme = gr_themes.Default(
345
  primary_hue=gr_themes.Color(
346
- c50="#E6F1D9", # Lightest green
347
- c100="#CEE3B3",
348
- c200="#B5D58C",
349
- c300="#9CC766",
350
- c400="#84B940",
351
- c500="#76B900", # NVIDIA Green
352
- c600="#68A600",
353
- c700="#5A9200",
354
- c800="#4C7E00",
355
- c900="#3E6A00", # Darkest green
356
- c950="#2F5600"
357
  ),
358
- neutral_hue="gray", # Use gray for neutral elements
359
  font=[gr_themes.GoogleFont("Inter"), "ui-sans-serif", "system-ui", "sans-serif"],
360
  ).set()
361
 
 
340
  ["data/example-yt_saTD1u8PorI.mp3"],
341
  ]
342
 
343
+ # Define an EU-inspired theme
344
  nvidia_theme = gr_themes.Default(
345
  primary_hue=gr_themes.Color(
346
+ c50="#E6ECF7",
347
+ c100="#CCD9EF",
348
+ c200="#99B3DF",
349
+ c300="#668DCC",
350
+ c400="#3366B3",
351
+ c500="#003399", # EU Blue
352
+ c600="#002E8A",
353
+ c700="#00246D",
354
+ c800="#001A51",
355
+ c900="#001238",
356
+ c950="#000B24"
357
  ),
358
+ neutral_hue="gray",
359
  font=[gr_themes.GoogleFont("Inter"), "ui-sans-serif", "system-ui", "sans-serif"],
360
  ).set()
361