-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.js
90 lines (80 loc) · 1.49 KB
/
constants.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import HomeIcon from '@mui/icons-material/Home';
import CollectionsIcon from '@mui/icons-material/Collections';
import CycloneIcon from '@mui/icons-material/Cyclone';
import AutoStoriesIcon from '@mui/icons-material/AutoStories';
import BurstModeIcon from '@mui/icons-material/BurstMode';
export const THEME_MODES = {
DARK: 'dark',
LIGHT: 'light',
};
export const DARK_COLOR_PALETTE = {
BG: '#1a1a1d',
PRIMARY: '#002828',
SECONDARY: '#4e4e50'
};
export const LIGHT_COLOR_PALETTE = {
BG: '#d1e8e2',
PRIMARY: '#d1e8e2',
SECONDARY: '#FFCB9A'
};
export const DRAWER_WIDTH = 300;
export const SITE_MENU_ITEMS = [
{
id: 'smi-1',
label: 'Home',
icon: HomeIcon,
link: '/'
},
{
id: 'smi-2',
label: 'Gallery',
icon: CollectionsIcon,
link: '/gallery'
},
{
id: 'smi-3',
label: 'Prints',
icon: BurstModeIcon,
link: '/prints'
},
{
id: 'smi-4',
label: 'Blog',
icon: AutoStoriesIcon,
link: '/blog',
},
{
id: 'smi-5',
label: 'About',
icon: CycloneIcon,
link: '/about'
}
]
export const VIEWPORT_SIZES = {
SM: 600,
MD: 1024,
LG: 1920,
XL: 2500,
}
export const IMAGE_BREAKPOINTS = {
sm: 540,
md: 1080,
lg: 1920,
}
export const DEVICE_ORIENTATION = {
PORTRAIT: 'portrait',
LANDSCAPE: 'landscape'
}
export const VORTEX_TAU = Math.PI * 2;
export const VORTEX_COLORS = [
"#f94144",
"#f3722c",
"#f8961e",
"#f9844a",
"#f9c74f",
"#90be6d",
"#43aa8b",
"#4d908e",
"#577590",
"#277da1"
];