rafaaa2105 commited on
Commit
0b2e8c3
1 Parent(s): c576f11

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +64 -0
style.css ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Set default font and background colors */
2
+ :root {
3
+ --main-bg-color-dark: #202124;
4
+ --main-color-dark: #e8eaed;
5
+ --main-bg-color-light: #f5f5f5;
6
+ --main-color-light: #202124;
7
+ --accent-color: #2263a4;
8
+ --accent-color-1: #f1f0ab;
9
+ --primary: #044BD9;
10
+ --primary-hover: #366FE1;
11
+ --primary-pressed: #6893E8;
12
+ --secondary: #DFE4F2;
13
+ --bg: #111;
14
+ --grayscale-gs-primary: #232329;
15
+ --primary-2: #43434E;
16
+ --grayscale-gs-secondary-1: #68687B;
17
+ --grayscale-gs-secondary-2: #A1A1AF;
18
+ --grayscale-gs-tetriary-1: #B0B0BC;
19
+ --grayscale-gs-tetriary-2: #D0D0D7;
20
+ --grayscale-gs-quarterly-1: #DFDFE4;
21
+ --grayscale-gs-background-darker: #F3F4F7;
22
+ --grayscale-gs-background: #FAFAFA;
23
+ --grayscale-gs-quarterly-2: #FDFDFD;
24
+ --grayscale-gs-white: #FFF;
25
+ }
26
+
27
+ /* Set colors for Gradio elements */
28
+ .root {
29
+ background-color: var(--main-bg-color-dark);
30
+ color: var(--main-color-dark);
31
+ }
32
+
33
+ .gr-button {
34
+ background-color: var(--primary);
35
+ color: var(--grayscale-gs-white);
36
+ }
37
+
38
+ .gr-button:hover {
39
+ background-color: var(--primary-hover);
40
+ }
41
+
42
+ .gr-button:active {
43
+ background-color: var(--primary-pressed);
44
+ }
45
+
46
+ .gr-input {
47
+ background-color: var(--secondary);
48
+ color: var(--main-color-dark);
49
+ }
50
+
51
+ .gr-output {
52
+ background-color: var(--grayscale-gs-quarterly-1);
53
+ color: var(--main-color-dark);
54
+ }
55
+
56
+ .gr-box {
57
+ background-color: var(--grayscale-gs-background);
58
+ color: var(--main-color-light);
59
+ }
60
+
61
+ .gr-header {
62
+ background-color: var(--accent-color);
63
+ color: var(--grayscale-gs-white);
64
+ }