File size: 607 Bytes
b384e66
1a3e720
 
 
 
 
b384e66
1a3e720
b384e66
 
 
 
1a3e720
b384e66
 
 
1a3e720
 
 
 
 
 
 
 
 
 
 
 
b384e66
 
 
 
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
30
31
32
33
:root {
  --bg: #080f1e;       /* deep midnight blue */
  --fg: #e8eaf0;       /* light foreground text */
  --gold: #ffd228;     /* gold for awakened cells */
  --blue: #1e3a8a;     /* dim blue for sleeping cells */
  --muted: #b7c0d4;    /* muted text */
}

.gradio-container {
  background: var(--bg);
  color: var(--fg);
}

h1, h2, h3, h4 {
  color: var(--fg);
}

button {
  border-radius: 10px !important;
  background-color: var(--blue);
  color: var(--fg);
}

button:hover {
  background-color: var(--gold);
  color: #000;
}

footer, .dark .footer {
  background: var(--bg);
  color: var(--muted);
}