File size: 1,089 Bytes
f904c62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* ── Brand overrides ─────────────────────────────────────────── */
:root {
  --color-brand-primary:   #E7AB12;
  --color-brand-secondary: #0D456C;
}


/* ── Page background ───────────────────────────── */
body, .gradio-container {
  background-color: #F2F6F8 !important;  /* your desired page bg */
}

/* ── All buttons ───────────────────────────────── */
button.gr-button {
  background-color: #0D456C !important;  /* your desired button bg */
  color:            #F2F6F8 !important;  /* button text color */
}

/* optional: hover state */
button.gr-button:hover {
  background-color: #0056b3 !important;
}

/* ── Global button look ──────────────────────────────────────── */
button.gr-button {
  background-color: #0D456C !important;
  color:            #E7AB12 !important;
}