Skip to content

Commit 50cc6c7

Browse files
committed
contact
1 parent ee6e425 commit 50cc6c7

File tree

15 files changed

+180
-187
lines changed

15 files changed

+180
-187
lines changed

public/aiart.png

17.3 MB
Loading

public/phonograph.png

1.3 MB
Loading

src/App.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -297,29 +297,29 @@ export default function ToggleColorMode() {
297297
theme = createTheme(theme, {
298298
palette: {
299299
primary: {
300-
main: theme.palette.mode === 'dark' ? '#14213d' : '#14213d',
300+
main: theme.palette.mode === 'dark' ? '#101935' : '#101935',
301301
},
302302
secondary: {
303-
main: theme.palette.mode === 'dark' ? '#000' : '#e5e5e5',
303+
main: theme.palette.mode === 'dark' ? '#222' : '#e5e5e5',
304304
},
305305
success: {
306-
main: '#fca311',
306+
main: '#a92ca2',
307307
},
308308
action: {
309-
active: '#fca311',
310-
focus: '#fca311',
311-
hover: '#fca311',
312-
selected: '#fca311',
313-
disabledBackground: '#fca311',
314-
disabled: '#fca311'
309+
active: theme.palette.mode === 'dark' ? '#a92ca2' : '#272822',
310+
background: theme.palette.mode === 'dark' ? '#272822' : '#a92ca2',
311+
hover: '#a92ca2',
312+
selected: '#a92ca2',
313+
disabledBackground: '#a92ca2',
314+
disabled: '#a92ca2'
315315
},
316316
text: {
317-
main: theme.palette.mode === 'dark' ? '#fff' : '#000',
317+
main: theme.palette.mode === 'dark' ? '#e5e5e5' : '#101935',
318318
light: '#fff',
319319
},
320320
background: {
321-
default: theme.palette.mode === 'dark' ? '#222' : '#fff',
322-
paper: theme.palette.mode === 'dark' ? '#111' : '#e5e5e5',
321+
default: theme.palette.mode === 'dark' ? '#222' : '#e5e5e5',
322+
paper: theme.palette.mode === 'dark' ? '#222' : '#e5e5e5',
323323
},
324324
}
325325
});

src/components/BackToTop/BackToTop.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
}
99

1010
.backToTop:hover {
11-
color: #fca311;
11+
color: #a92ca2;
1212
}
1313

1414
.backToTop button {

src/components/ButtonComponent/ButtonComponent.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
}
44

55
.formBtn:hover{
6-
background-color: #fca311;
6+
background-color: #a92ca2;
77
}

src/components/Landing/Landing.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
.landing--social:hover {
6565
transform: scale(1.2);
66-
color: #fca311;
66+
color: #a92ca2;
6767
}
6868

6969
.landing--social2 {
@@ -77,7 +77,7 @@
7777

7878
.landing--social2:hover {
7979
transform: scale(1.2);
80-
color: #fca311;
80+
color: #a92ca2;
8181

8282
}
8383

@@ -130,7 +130,7 @@
130130
}
131131

132132
.lcr-buttonContainer:hover {
133-
color: #fca311;
133+
color: #a92ca2;
134134
}
135135

136136
.lcl--content2{

src/components/PreContact/PreContact.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ a:-webkit-any-link
132132
a:-webkit-any-link:hover
133133
{
134134
text-shadow:#fff 2px solid;
135-
color: #fca311;
135+
color: #a92ca2;
136136

137137
}
138138

src/components/Projects/SingleProject/SingleProject.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.singleProject {
2-
box-shadow: 4px 4px 8px rgba(36, 3, 3, 0.2);
2+
box-shadow: 4px 4px 8px rgba(255, 255, 255, 0.73);
33
width: 304px;
44
height: 360px;
55
border-radius: 10px;

src/components/Testimonials/Testimonials.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,5 +279,5 @@
279279
}
280280

281281
.formBtn:hover{
282-
background-color: #fca311;
282+
background-color: #a92ca2;
283283
}

src/data/projectsData.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const projectsData = [
4343
projectDesc: '\n\n\nWorking the wonders of Vanilla JS here, providing users with a mobile-first, desktop-ready scientific-calculator with the ability to solve high-level Algebraic and Geeomtric problems in 1, 2, or 3 dimensions.\n',
4444
tags: ['HTML', 'CSS', 'Javascript', 'Ganja.JS' ],
4545
code: 'https://github.com/mathcodes/scientific-calculator',
46-
demo: 'https://scientific-calulator.vercel.app/',
46+
demo: 'https://scientific-calulator-qov8zx63p-mathcodes.vercel.app/',
4747
image: scical,
4848
alt: 'html, css, javascript, ganja.js, scientific calculator, mobile-first, desktop-ready, algebraic, geometric, 1, 2, 3 dimensions'
4949
},

0 commit comments

Comments
 (0)