File size: 676 Bytes
cf815ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* style.css */
/* Overwrite the background color */
.gradio-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: hsl(39deg 57.28% 92.99%);
}

/* Define your light mode default text color */
:root {
    --custom-text-color-light: #0b0f19; /* Dark color for text in light mode */
}

/* Apply the light mode text color */
.gradio-container .string.svelte-1kspdo {
    color: var(--custom-text-color-light) !important;
}

/* Dark mode specific styles */
.dark .gradio-container .string.svelte-1kspdo {
    color: #f9fafb !important; /* Light color for text in dark mode */
}

/* Hide the footer */
footer {
    display: none !important;
}