File size: 1,015 Bytes
b35f615
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a2e;
    color: #ffffff;
}
.gradio-container {
    background-color: #1a1a2e;
    color: #ffffff;
}
.gr-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
}
.gr-button:hover {
    background-color: #45a049;
}
.gr-input, .gr-output {
    background-color: #2a2a3e;
    color: #ffffff;
    border: 1px solid #4a4a5e;
    display: block;
    margin: 0 auto;
}
.gr-input:focus, .gr-output:focus {
    outline: none;
    border-color: #6a6a7e;
}
.gr-file-upload {
    background-color: #2a2a3e;
    color: #ffffff;
}
.gr-slider {
    background-color: #2a2a3e;
    color: #ffffff;
}
.gr-dropdown {
    background-color: #2a2a3e;
    color: #ffffff;
}
.gr-image-preview {
    border: 2px solid #4a4a5e;
    background-color: #2a2a3e;
}
.gr-textbox {
    background-color: #2a2a3e;
    color: #ffffff;
    border: 1px solid #4a4a5e;
}
.gr-textbox:focus {
    outline: none;
    border-color: #6a6a7e;
}