-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathenvironment.ts
46 lines (46 loc) · 1.22 KB
/
environment.ts
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 environment = {
name: 'Michael Solati',
shortName: 'Michael',
description:
"I'm an experienced web developer with 7+ years in front-end development and expertise in leveraging web capabilities to deliver scalable software solutions.",
blog: {
description: 'Stories, guides, and tutorials for developers by me.',
title: 'Blog',
},
code: {
description: "Some of the best code I've written, available for everyone!",
title: 'Code',
githubID: 'MichaelSolati',
},
videos: {
description:
"From major conferences to smaller meetups, I've spoken at a slew of events.",
title: 'Videos',
youtubePlaylistID: 'PLpvTYOL2L1kRkGfvnMk96sQ-iDKkzxrUl',
},
social: {
twitter: 'MichaelSolati',
},
theme: {
light: {
background: '#fafafa',
primary: '#ffffff',
onPrimary: '#212121',
secondary: '#212121',
onSecondary: '#ffffff',
surface: '#ffffff',
onSurface: '#212121',
link: '#6200ee',
},
dark: {
background: '#303030',
primary: '#212121',
onPrimary: '#ffffff',
secondary: '#ffffff',
onSecondary: '#212121',
surface: '#424242',
onSurface: '#ffffff',
link: '#bb86fc',
},
},
};