camparchimedes commited on
Commit
690f278
·
verified ·
1 Parent(s): 9d9b56a

Upload 2 files

Browse files
Files changed (2) hide show
  1. public/stylesheet.css +18 -0
  2. public/theme.json +68 -0
public/stylesheet.css ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ background-color: powderblue;
3
+ }
4
+
5
+ .main {
6
+ text-align: center;
7
+ }
8
+
9
+ .GFG {
10
+ color: #009900;
11
+ font-size: 50px;
12
+ font-weight: bold;
13
+ }
14
+
15
+ #geeks {
16
+ font-style: bold;
17
+ font-size: 20px;
18
+ }
public/theme.json ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "custom_fonts": [],
3
+ "variables": {
4
+ "light": {
5
+ "--font-sans": "'Inter', sans-serif",
6
+ "--font-mono": "source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace",
7
+ "--background": "0 0% 100%",
8
+ "--foreground": "0 0% 5%",
9
+ "--card": "0 0% 100%",
10
+ "--card-foreground": "0 0% 5%",
11
+ "--popover": "0 0% 100%",
12
+ "--popover-foreground": "0 0% 5%",
13
+ "--primary": "340 92% 52%",
14
+ "--primary-foreground": "0 0% 100%",
15
+ "--secondary": "210 40% 96.1%",
16
+ "--secondary-foreground": "222.2 47.4% 11.2%",
17
+ "--muted": "0 0% 90%",
18
+ "--muted-foreground": "0 0% 36%",
19
+ "--accent": "0 0% 95%",
20
+ "--accent-foreground": "222.2 47.4% 11.2%",
21
+ "--destructive": "0 84.2% 60.2%",
22
+ "--destructive-foreground": "210 40% 98%",
23
+ "--border": "0 0% 90%",
24
+ "--input": "0 0% 90%",
25
+ "--ring": "340 92% 52%",
26
+ "--radius": "0.75rem",
27
+ "--sidebar-background": "0 0% 98%",
28
+ "--sidebar-foreground": "240 5.3% 26.1%",
29
+ "--sidebar-primary": "240 5.9% 10%",
30
+ "--sidebar-primary-foreground": "0 0% 98%",
31
+ "--sidebar-accent": "240 4.8% 95.9%",
32
+ "--sidebar-accent-foreground": "240 5.9% 10%",
33
+ "--sidebar-border": "220 13% 91%",
34
+ "--sidebar-ring": "217.2 91.2% 59.8%"
35
+ },
36
+ "dark": {
37
+ "--font-sans": "'Inter', sans-serif",
38
+ "--font-mono": "source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace",
39
+ "--background": "0 0% 13%",
40
+ "--foreground": "0 0% 93%",
41
+ "--card": "0 0% 18%",
42
+ "--card-foreground": "210 40% 98%",
43
+ "--popover": "0 0% 18%",
44
+ "--popover-foreground": "210 40% 98%",
45
+ "--primary": "340 92% 52%",
46
+ "--primary-foreground": "0 0% 100%",
47
+ "--secondary": "0 0% 19%",
48
+ "--secondary-foreground": "210 40% 98%",
49
+ "--muted": "0 1% 26%",
50
+ "--muted-foreground": "0 0% 71%",
51
+ "--accent": "0 0% 26%",
52
+ "--accent-foreground": "210 40% 98%",
53
+ "--destructive": "0 62.8% 30.6%",
54
+ "--destructive-foreground": "210 40% 98%",
55
+ "--border": "0 1% 26%",
56
+ "--input": "0 1% 26%",
57
+ "--ring": "340 92% 52%",
58
+ "--sidebar-background": "0 0% 9%",
59
+ "--sidebar-foreground": "240 4.8% 95.9%",
60
+ "--sidebar-primary": "224.3 76.3% 48%",
61
+ "--sidebar-primary-foreground": "0 0% 100%",
62
+ "--sidebar-accent": "0 0% 13%",
63
+ "--sidebar-accent-foreground": "240 4.8% 95.9%",
64
+ "--sidebar-border": "240 3.7% 15.9%",
65
+ "--sidebar-ring": "217.2 91.2% 59.8%"
66
+ }
67
+ }
68
+ }