RFTSystems commited on
Commit
b384e66
·
verified ·
1 Parent(s): de8e58c

Update css/theme.css

Browse files
Files changed (1) hide show
  1. css/theme.css +21 -0
css/theme.css CHANGED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* css/theme.css */
2
+ :root {
3
+ --bg: #080f1e;
4
+ --fg: #e8eaf0;
5
+ --accent: #ffd228; /* gold */
6
+ --muted: #b7c0d4;
7
+ }
8
+ .gradio-container {
9
+ background: var(--bg);
10
+ color: var(--fg);
11
+ }
12
+ h1, h2, h3, h4 {
13
+ color: var(--fg);
14
+ }
15
+ footer, .dark .footer {
16
+ background: var(--bg);
17
+ color: var(--muted);
18
+ }
19
+ button {
20
+ border-radius: 8px !important;
21
+ }