-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppConstants.js
46 lines (42 loc) · 1.1 KB
/
AppConstants.js
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
export const APPCOLORS = {
background: "#040506", // "#1E1E1E",
secondaryBg: "#262626",
card: "#262626",
mainText: "#e0e0e0",
text: "white",
urlAnchor: "#00b3ff",
primaryButton: "#1da87e",
disabledButton: "#303634",
disabledButtonText: "#7a8280",
panel: "rgba(100, 100, 100 , 0.8)",
errorText: "red",
toasrbg: "rgb(60,60,60,0.6)",
gatherar: "#eee",
drawer: "black",
};
export const APPGRADIENTS = {
joinButton: "linear-gradient(to bottom right, #ac00e6 , #0058e6)",
primarybutton: "linear-gradient(to right,#037ADE, #03E5B7)",
AR: "linear-gradient(0deg, rgba(36,0,255,1) 0%, rgba(255,184,0,1) 100%)",
cornerPanel: "linear-gradient(to bottom , black , transparent)",
cornerPanelBottom: "linear-gradient(to top , black , transparent)",
};
export const APPSTYLES = {
joinCreateButton: {
size: "sm",
m: "4",
color: "white",
p: "5",
},
};
export const APPROUTES = {
"home" : "/",
"join" : '/join',
"joinByUrl": '/joinUrl',
"create" : '/create',
"room" : "/room",
"signUp": "/signup",
"login":"/login",
"dashboard" : "/dashboard",
"upload" : "/upload"
}